Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 2 | /* |
Simon Glass | ec1fa18 | 2019-08-02 09:44:27 -0600 | [diff] [blame] | 3 | * Common header file for U-Boot |
| 4 | * |
| 5 | * This file still includes quite a bit of stuff that should be in separate |
| 6 | * headers like command.h, cpu.h and timer.h. Please think before adding more |
| 7 | * things. Patches to remove things are welcome. |
| 8 | * |
Wolfgang Denk | 3b74e7e | 2009-05-16 10:47:45 +0200 | [diff] [blame] | 9 | * (C) Copyright 2000-2009 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 10 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef __COMMON_H_ |
Wolfgang Denk | d0b8fee | 2012-01-06 07:36:44 +0100 | [diff] [blame] | 14 | #define __COMMON_H_ 1 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 15 | |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 16 | #ifndef __ASSEMBLY__ /* put C only stuff in this section */ |
| 17 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 18 | typedef unsigned char uchar; |
| 19 | typedef volatile unsigned long vu_long; |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 20 | typedef volatile unsigned short vu_short; |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 21 | typedef volatile unsigned char vu_char; |
| 22 | |
| 23 | #include <config.h> |
Joe Hershberger | 2307ea4 | 2016-04-04 04:07:33 -0500 | [diff] [blame] | 24 | #include <errno.h> |
Masahiro Yamada | a7b8176 | 2016-12-28 00:36:00 +0900 | [diff] [blame] | 25 | #include <time.h> |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 26 | #include <asm-offsets.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 27 | #include <linux/bitops.h> |
Masahiro Yamada | 0a70fb4 | 2017-09-16 14:10:45 +0900 | [diff] [blame] | 28 | #include <linux/bug.h> |
Masahiro Yamada | 5bc516e | 2016-12-28 00:35:59 +0900 | [diff] [blame] | 29 | #include <linux/delay.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 30 | #include <linux/types.h> |
Masahiro Yamada | b44b302 | 2017-09-16 14:10:40 +0900 | [diff] [blame] | 31 | #include <linux/printk.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 32 | #include <linux/string.h> |
Marek Vasut | 9aed508 | 2012-09-27 17:08:15 +0200 | [diff] [blame] | 33 | #include <linux/stringify.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 34 | #include <asm/ptrace.h> |
| 35 | #include <stdarg.h> |
Masahiro Yamada | 7fea7b1 | 2017-09-16 14:10:39 +0900 | [diff] [blame] | 36 | #include <stdio.h> |
Masahiro Yamada | cba1da4 | 2014-11-07 03:03:28 +0900 | [diff] [blame] | 37 | #include <linux/kernel.h> |
Simon Glass | 8504315 | 2017-05-17 08:23:05 -0600 | [diff] [blame] | 38 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 39 | #include <part.h> |
| 40 | #include <flash.h> |
| 41 | #include <image.h> |
| 42 | |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 43 | #ifdef __LP64__ |
| 44 | #define CONFIG_SYS_SUPPORT_64BIT_DATA |
| 45 | #endif |
| 46 | |
Simon Glass | 0e98b0a | 2017-12-04 13:48:20 -0700 | [diff] [blame] | 47 | #include <log.h> |
Simon Glass | 21726a7 | 2011-06-29 09:49:34 +0000 | [diff] [blame] | 48 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 49 | typedef void (interrupt_handler_t)(void *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 50 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 51 | #include <asm/u-boot.h> /* boot information for Linux kernel */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 52 | #include <asm/global_data.h> /* global data used for startup functions */ |
| 53 | |
Patrick Delaunay | d6f8771 | 2018-03-13 13:57:00 +0100 | [diff] [blame] | 54 | /* startup functions, used in: |
| 55 | * common/board_f.c |
Patrick Delaunay | 11f86cb | 2018-03-13 13:57:01 +0100 | [diff] [blame] | 56 | * common/init/board_init.c |
Patrick Delaunay | e2c219c | 2018-03-13 13:57:02 +0100 | [diff] [blame] | 57 | * common/board_r.c |
Patrick Delaunay | fc22ee2 | 2018-03-13 13:57:03 +0100 | [diff] [blame] | 58 | * common/board_info.c |
Patrick Delaunay | d6f8771 | 2018-03-13 13:57:00 +0100 | [diff] [blame] | 59 | */ |
Patrick Delaunay | dafa84d | 2018-03-09 18:28:12 +0100 | [diff] [blame] | 60 | #include <init.h> |
| 61 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 62 | /* |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 63 | * Function Prototypes |
| 64 | */ |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 65 | void hang (void) __attribute__ ((noreturn)); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 66 | |
Wolfgang Denk | f6c019c | 2011-07-30 12:32:45 +0000 | [diff] [blame] | 67 | int cpu_init(void); |
| 68 | |
Simon Glass | 2ea09c8 | 2015-04-28 20:25:07 -0600 | [diff] [blame] | 69 | #include <display_options.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 70 | |
| 71 | /* common/main.c */ |
| 72 | void main_loop (void); |
Simon Glass | 009dde1 | 2012-02-14 19:59:20 +0000 | [diff] [blame] | 73 | int run_command(const char *cmd, int flag); |
Thomas Betker | 1d43bfd | 2014-06-05 20:07:57 +0200 | [diff] [blame] | 74 | int run_command_repeatable(const char *cmd, int flag); |
Simon Glass | d51004a | 2012-03-30 21:30:55 +0000 | [diff] [blame] | 75 | |
| 76 | /** |
| 77 | * Run a list of commands separated by ; or even \0 |
| 78 | * |
| 79 | * Note that if 'len' is not -1, then the command does not need to be nul |
| 80 | * terminated, Memory will be allocated for the command in that case. |
| 81 | * |
| 82 | * @param cmd List of commands to run, each separated bu semicolon |
| 83 | * @param len Length of commands excluding terminator if known (-1 if not) |
| 84 | * @param flag Execution flags (CMD_FLAG_...) |
| 85 | * @return 0 on success, or != 0 on error. |
| 86 | */ |
| 87 | int run_command_list(const char *cmd, int len, int flag); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 88 | |
Patrick Delaunay | e2c219c | 2018-03-13 13:57:02 +0100 | [diff] [blame] | 89 | int checkflash(void); |
| 90 | int checkdram(void); |
Masahiro Yamada | 6ab6b2a | 2014-02-05 11:28:25 +0900 | [diff] [blame] | 91 | extern u8 __dtb_dt_begin[]; /* embedded device tree blob */ |
Goldschmidt Simon | 9bd76b8 | 2017-11-21 12:29:56 +0000 | [diff] [blame] | 92 | extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */ |
Patrick Delaunay | d6f8771 | 2018-03-13 13:57:00 +0100 | [diff] [blame] | 93 | int mdm_init(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 94 | |
Simon Glass | 15a33e4 | 2012-11-30 13:01:20 +0000 | [diff] [blame] | 95 | /** |
| 96 | * Show the DRAM size in a board-specific way |
| 97 | * |
| 98 | * This is used by boards to display DRAM information in their own way. |
| 99 | * |
| 100 | * @param size Size of DRAM (which should be displayed along with other info) |
| 101 | */ |
Andrew Bradford | ea11b40 | 2015-05-22 08:30:14 -0400 | [diff] [blame] | 102 | void board_show_dram(phys_size_t size); |
Simon Glass | 15a33e4 | 2012-11-30 13:01:20 +0000 | [diff] [blame] | 103 | |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 104 | /** |
Alexander Graf | 7b78d64 | 2018-11-30 21:24:56 +0100 | [diff] [blame] | 105 | * Get the uppermost pointer that is valid to access |
| 106 | * |
| 107 | * Some systems may not map all of their address space. This function allows |
| 108 | * boards to indicate what their highest support pointer value is for DRAM |
| 109 | * access. |
| 110 | * |
| 111 | * @param total_size Size of U-Boot (unused?) |
| 112 | */ |
| 113 | ulong board_get_usable_ram_top(ulong total_size); |
| 114 | |
| 115 | /** |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 116 | * arch_fixup_fdt() - Write arch-specific information to fdt |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 117 | * |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 118 | * Defined in arch/$(ARCH)/lib/bootm-fdt.c |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 119 | * |
| 120 | * @blob: FDT blob to write to |
| 121 | * @return 0 if ok, or -ve FDT_ERR_... on failure |
| 122 | */ |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 123 | int arch_fixup_fdt(void *blob); |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 124 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 125 | /* common/flash.c */ |
| 126 | void flash_perror (int); |
| 127 | |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 128 | /* common/cmd_source.c */ |
| 129 | int source (ulong addr, const char *fit_uname); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 130 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 131 | extern ulong load_addr; /* Default Load Address */ |
Simon Glass | 1aec244 | 2011-10-21 18:51:38 +0000 | [diff] [blame] | 132 | extern ulong save_addr; /* Default Save Address */ |
| 133 | extern ulong save_size; /* Default Save Size */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 134 | |
Jason Hobbs | 06283a6 | 2011-08-31 10:37:30 -0500 | [diff] [blame] | 135 | /* common/cmd_net.c */ |
| 136 | int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
| 137 | |
Rob Herring | 669df7e | 2012-05-25 10:47:39 +0000 | [diff] [blame] | 138 | /* common/cmd_fat.c */ |
| 139 | int do_fat_fsload(cmd_tbl_t *, int, int, char * const []); |
| 140 | |
| 141 | /* common/cmd_ext2.c */ |
| 142 | int do_ext2load(cmd_tbl_t *, int, int, char * const []); |
| 143 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 144 | void pci_init_board(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 145 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 146 | /* common/exports.c */ |
| 147 | void jumptable_init(void); |
| 148 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 149 | /* common/kallsysm.c */ |
| 150 | const char *symbol_lookup(unsigned long addr, unsigned long *caddr); |
| 151 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 152 | /* common/memsize.c */ |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 153 | long get_ram_size (long *, long); |
York Sun | e386616 | 2014-02-11 11:57:26 -0800 | [diff] [blame] | 154 | phys_size_t get_effective_memsize(void); |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 155 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 156 | /* $(BOARD)/$(BOARD).c */ |
| 157 | void reset_phy (void); |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 158 | void fdc_hw_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 159 | |
| 160 | /* $(BOARD)/eeprom.c */ |
Simon Glass | eb5ba3a | 2017-05-12 21:09:49 -0600 | [diff] [blame] | 161 | #ifdef CONFIG_CMD_EEPROM |
Marek Vasut | 354e3ed | 2015-11-10 20:53:31 +0100 | [diff] [blame] | 162 | void eeprom_init (int bus); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 163 | int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |
| 164 | int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |
Simon Glass | eb5ba3a | 2017-05-12 21:09:49 -0600 | [diff] [blame] | 165 | #else |
| 166 | /* |
| 167 | * Some EEPROM code is depecated because it used the legacy I2C interface. Add |
| 168 | * some macros here so we don't have to touch every one of those uses |
| 169 | */ |
| 170 | #define eeprom_init(bus) |
| 171 | #define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) |
| 172 | #define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) |
| 173 | #endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 174 | |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 175 | #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 176 | # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 177 | #endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 178 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 179 | /* $(BOARD)/$(BOARD).c */ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 180 | int board_early_init_f (void); |
mario.six@gdsys.cc | 2a79275 | 2017-02-22 16:07:22 +0100 | [diff] [blame] | 181 | 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] | 182 | int board_late_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 183 | int board_postclk_init (void); /* after clocks/timebase, before env/serial */ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 184 | int board_early_init_r (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 185 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 186 | #if defined(CONFIG_SYS_DRAM_TEST) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 187 | int testdram(void); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 188 | #endif /* CONFIG_SYS_DRAM_TEST */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 189 | |
| 190 | /* $(CPU)/start.S */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 191 | int icache_status (void); |
| 192 | void icache_enable (void); |
| 193 | void icache_disable(void); |
| 194 | int dcache_status (void); |
| 195 | void dcache_enable (void); |
| 196 | void dcache_disable(void); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 197 | void mmu_disable(void); |
Benoît Thébaudeau | 5c6db12 | 2013-04-11 09:35:53 +0000 | [diff] [blame] | 198 | #if defined(CONFIG_ARM) |
| 199 | void relocate_code(ulong); |
| 200 | #else |
| 201 | void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn)); |
Benoît Thébaudeau | 959eaa7 | 2013-04-11 09:35:43 +0000 | [diff] [blame] | 202 | #endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 203 | ulong get_endaddr (void); |
| 204 | void trap_init (ulong); |
Simon Glass | 6e2941d | 2017-05-17 08:23:06 -0600 | [diff] [blame] | 205 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 206 | /* $(CPU)/cpu.c */ |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 207 | static inline int cpumask_next(int cpu, unsigned int mask) |
| 208 | { |
| 209 | for (cpu++; !((1 << cpu) & mask); cpu++) |
| 210 | ; |
| 211 | |
| 212 | return cpu; |
| 213 | } |
| 214 | |
| 215 | #define for_each_cpu(iter, cpu, num_cpus, mask) \ |
| 216 | for (iter = 0, cpu = cpumask_next(-1, mask); \ |
| 217 | iter < num_cpus; \ |
| 218 | iter++, cpu = cpumask_next(cpu, mask)) \ |
| 219 | |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 220 | int cpu_numcores (void); |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 221 | int cpu_num_dspcores(void); |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 222 | u32 cpu_mask (void); |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 223 | u32 cpu_dsp_mask(void); |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 224 | int is_core_valid (unsigned int); |
Simon Glass | cbcbf71 | 2017-01-23 13:31:22 -0700 | [diff] [blame] | 225 | |
Diego Dorta | 026d795 | 2017-10-05 09:13:38 -0300 | [diff] [blame] | 226 | void s_init(void); |
| 227 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 228 | int checkcpu (void); |
| 229 | int checkicache (void); |
| 230 | int checkdcache (void); |
| 231 | void upmconfig (unsigned int, unsigned int *, unsigned int); |
| 232 | ulong get_tbclk (void); |
Przemyslaw Marczak | 1fb4dab | 2014-09-01 13:50:48 +0200 | [diff] [blame] | 233 | void reset_misc (void); |
wdenk | 3ec924a | 2005-04-03 17:23:39 +0000 | [diff] [blame] | 234 | void reset_cpu (ulong addr); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 235 | void ft_cpu_setup(void *blob, bd_t *bd); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 236 | void ft_pci_setup(void *blob, bd_t *bd); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 237 | |
Andre Przywara | ba6a169 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 238 | void smp_set_core_boot_addr(unsigned long addr, int corenr); |
| 239 | void smp_kick_all_cpus(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 240 | |
| 241 | /* $(CPU)/serial.c */ |
| 242 | int serial_init (void); |
| 243 | void serial_setbrg (void); |
| 244 | void serial_putc (const char); |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 245 | void serial_putc_raw(const char); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 246 | void serial_puts (const char *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 247 | int serial_getc (void); |
| 248 | int serial_tstc (void); |
| 249 | |
| 250 | /* $(CPU)/speed.c */ |
| 251 | int get_clocks (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 252 | ulong get_bus_freq (ulong); |
Stefan Roese | 550650d | 2010-09-20 16:05:31 +0200 | [diff] [blame] | 253 | int get_serial_clock(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 254 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 255 | /* $(CPU)/interrupts.c */ |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 256 | int interrupt_init (void); |
| 257 | void timer_interrupt (struct pt_regs *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 258 | void external_interrupt (struct pt_regs *); |
| 259 | void irq_install_handler(int, interrupt_handler_t *, void *); |
| 260 | void irq_free_handler (int); |
| 261 | void reset_timer (void); |
Simon Glass | b2e16a8 | 2013-06-11 11:14:39 -0700 | [diff] [blame] | 262 | |
| 263 | /* Return value of monotonic microsecond timer */ |
| 264 | unsigned long timer_get_us(void); |
| 265 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 266 | void enable_interrupts (void); |
| 267 | int disable_interrupts (void); |
| 268 | |
| 269 | /* $(CPU)/.../commproc.c */ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 270 | void bootcount_store (ulong); |
| 271 | ulong bootcount_load (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 272 | |
| 273 | /* $(CPU)/.../<eth> */ |
Wolfgang Denk | c5bded3 | 2007-08-29 14:05:30 +0200 | [diff] [blame] | 274 | void mii_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 275 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 276 | /* arch/$(ARCH)/lib/cache.c */ |
Aneesh V | cba4b18 | 2011-08-16 04:33:05 +0000 | [diff] [blame] | 277 | void enable_caches(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 278 | void flush_cache (unsigned long, unsigned long); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 279 | void flush_dcache_all(void); |
Stefan Roese | 03d3bfb | 2009-01-21 17:20:20 +0100 | [diff] [blame] | 280 | void flush_dcache_range(unsigned long start, unsigned long stop); |
| 281 | void invalidate_dcache_range(unsigned long start, unsigned long stop); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 282 | void invalidate_dcache_all(void); |
| 283 | void invalidate_icache_all(void); |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 284 | |
Simon Glass | 4d24a11 | 2015-05-13 07:02:25 -0600 | [diff] [blame] | 285 | enum { |
| 286 | /* Disable caches (else flush caches but leave them active) */ |
| 287 | CBL_DISABLE_CACHES = 1 << 0, |
| 288 | CBL_SHOW_BOOTSTAGE_REPORT = 1 << 1, |
| 289 | |
| 290 | CBL_ALL = 3, |
| 291 | }; |
| 292 | |
| 293 | /** |
| 294 | * Clean up ready for linux |
| 295 | * |
| 296 | * @param flags Flags to control what is done |
| 297 | */ |
| 298 | int cleanup_before_linux_select(int flags); |
| 299 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 300 | /* arch/$(ARCH)/lib/ticks.S */ |
Simon Glass | 19ea467 | 2014-10-15 04:38:33 -0600 | [diff] [blame] | 301 | uint64_t get_ticks(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 302 | void wait_ticks (unsigned long); |
| 303 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 304 | /* arch/$(ARCH)/lib/time.c */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 305 | ulong usec2ticks (unsigned long usec); |
| 306 | ulong ticks2usec (unsigned long ticks); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 307 | |
Julius Werner | 027b728 | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 308 | /* lib/lz4_wrapper.c */ |
| 309 | int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn); |
| 310 | |
Wolfgang Denk | 54c6977 | 2010-06-13 01:45:10 +0200 | [diff] [blame] | 311 | /* lib/qsort.c */ |
| 312 | void qsort(void *base, size_t nmemb, size_t size, |
| 313 | int(*compar)(const void *, const void *)); |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 314 | int strcmp_compar(const void *, const void *); |
Wolfgang Denk | 54c6977 | 2010-06-13 01:45:10 +0200 | [diff] [blame] | 315 | |
Jason Hobbs | e11938e | 2011-08-23 11:06:56 +0000 | [diff] [blame] | 316 | /* lib/uuid.c */ |
Przemyslaw Marczak | d718ded | 2014-04-02 10:20:03 +0200 | [diff] [blame] | 317 | #include <uuid.h> |
Jason Hobbs | e11938e | 2011-08-23 11:06:56 +0000 | [diff] [blame] | 318 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 319 | /* lib/vsprintf.c */ |
Simon Glass | 9785c90 | 2011-11-02 09:52:07 +0000 | [diff] [blame] | 320 | #include <vsprintf.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 321 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 322 | /* lib/strmhz.c */ |
Ed Swarthout | 55f7934 | 2011-03-05 10:28:17 -0600 | [diff] [blame] | 323 | char * strmhz(char *buf, unsigned long hz); |
Haavard Skinnemoen | 0768b7a | 2008-08-18 13:41:27 +0200 | [diff] [blame] | 324 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 325 | /* lib/crc32.c */ |
Prafulla Wadaskar | 449609f | 2009-08-16 05:28:19 +0530 | [diff] [blame] | 326 | #include <u-boot/crc.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 327 | |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 328 | /* lib/rand.c */ |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 329 | #define RAND_MAX -1U |
| 330 | void srand(unsigned int seed); |
| 331 | unsigned int rand(void); |
| 332 | unsigned int rand_r(unsigned int *seedp); |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 333 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 334 | /* |
| 335 | * STDIO based functions (can always be used) |
| 336 | */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 337 | /* serial stuff */ |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 338 | int serial_printf (const char *fmt, ...) |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 339 | __attribute__ ((format (__printf__, 1, 2))); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 340 | |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 341 | /* lib/net_utils.c */ |
| 342 | #include <net.h> |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 343 | static inline struct in_addr env_get_ip(char *var) |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 344 | { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 345 | return string_to_ip(env_get(var)); |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 348 | #ifdef CONFIG_LED_STATUS |
Wolfgang Denk | fb364be | 2009-07-27 09:58:14 +0200 | [diff] [blame] | 349 | # include <status_led.h> |
| 350 | #endif |
Simon Glass | 097e178 | 2012-01-14 15:24:44 +0000 | [diff] [blame] | 351 | |
| 352 | #include <bootstage.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 353 | |
Joe Hershberger | 48522bb | 2012-05-15 08:59:08 +0000 | [diff] [blame] | 354 | #ifdef CONFIG_SHOW_ACTIVITY |
| 355 | void show_activity(int arg); |
| 356 | #endif |
| 357 | |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 358 | /* Multicore arch functions */ |
| 359 | #ifdef CONFIG_MP |
Michal Simek | 20b016a | 2018-06-13 08:56:31 +0200 | [diff] [blame] | 360 | int cpu_status(u32 nr); |
| 361 | int cpu_reset(u32 nr); |
| 362 | int cpu_disable(u32 nr); |
| 363 | int cpu_release(u32 nr, int argc, char * const argv[]); |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 364 | #endif |
| 365 | |
Andre Przywara | 2a6713b | 2017-01-02 11:48:30 +0000 | [diff] [blame] | 366 | #else /* __ASSEMBLY__ */ |
| 367 | |
Andre Przywara | 2a6713b | 2017-01-02 11:48:30 +0000 | [diff] [blame] | 368 | #endif /* __ASSEMBLY__ */ |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 369 | |
| 370 | /* Put only stuff here that the assembler can digest */ |
| 371 | |
| 372 | #ifdef CONFIG_POST |
| 373 | #define CONFIG_HAS_POST |
Michael Zaidman | 800eb09 | 2010-09-20 08:51:53 +0200 | [diff] [blame] | 374 | #ifndef CONFIG_POST_ALT_LIST |
| 375 | #define CONFIG_POST_STD_LIST |
| 376 | #endif |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 377 | #endif |
| 378 | |
Anton Staaf | 155cfb5 | 2011-09-02 13:45:28 +0000 | [diff] [blame] | 379 | #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1)) |
Andy Fleming | 4b03ac8 | 2008-06-16 13:58:53 -0500 | [diff] [blame] | 380 | |
Anton Staaf | 1e41f5a | 2011-10-17 16:46:13 -0700 | [diff] [blame] | 381 | /* |
Simon Glass | c9689ca | 2015-06-23 15:38:31 -0600 | [diff] [blame] | 382 | * check_member() - Check the offset of a structure member |
| 383 | * |
| 384 | * @structure: Name of structure (e.g. global_data) |
| 385 | * @member: Name of member (e.g. baudrate) |
| 386 | * @offset: Expected offset in bytes |
| 387 | */ |
| 388 | #define check_member(structure, member, offset) _Static_assert( \ |
| 389 | offsetof(struct structure, member) == offset, \ |
| 390 | "`struct " #structure "` offset for `" #member "` is not " #offset) |
| 391 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 392 | /* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */ |
| 393 | #ifdef CONFIG_EFI_STUB |
| 394 | #define ll_boot_init() false |
| 395 | #else |
| 396 | #define ll_boot_init() true |
| 397 | #endif |
| 398 | |
Mike Frysinger | c3eb3fe | 2011-07-08 10:44:25 +0000 | [diff] [blame] | 399 | /* Pull in stuff for the build system */ |
| 400 | #ifdef DO_DEPS_ONLY |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 401 | # include <env_internal.h> |
Mike Frysinger | c3eb3fe | 2011-07-08 10:44:25 +0000 | [diff] [blame] | 402 | #endif |
| 403 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 404 | #endif /* __COMMON_H_ */ |