Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2012 The Chromium OS Authors. |
| 4 | * (C) Copyright 2002-2010 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_GENERIC_GBL_DATA_H |
| 9 | #define __ASM_GENERIC_GBL_DATA_H |
| 10 | /* |
| 11 | * The following data structure is placed in some memory which is |
| 12 | * available very early after boot (like DPRAM on MPC8xx/MPC82xx, or |
| 13 | * some locked parts of the data cache) to allow for a minimum set of |
| 14 | * global variables during system initialization (until we have set |
| 15 | * up the memory controller so that we can use RAM). |
| 16 | * |
| 17 | * Keep it *SMALL* and remember to set GENERATED_GBL_DATA_SIZE > sizeof(gd_t) |
| 18 | * |
| 19 | * Each architecture has its own private fields. For now all are private |
| 20 | */ |
| 21 | |
| 22 | #ifndef __ASSEMBLY__ |
Stefan Roese | 85bddff | 2019-04-12 16:42:28 +0200 | [diff] [blame] | 23 | #include <fdtdec.h> |
Simon Glass | 1bb4923 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 24 | #include <membuff.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 25 | #include <linux/list.h> |
| 26 | |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 27 | typedef struct global_data { |
Masahiro Yamada | d788bba | 2020-02-25 02:22:27 +0900 | [diff] [blame] | 28 | struct bd_info *bd; |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 29 | unsigned long flags; |
Simon Glass | 059c54f | 2013-03-05 14:40:05 +0000 | [diff] [blame] | 30 | unsigned int baudrate; |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 31 | unsigned long cpu_clk; /* CPU clock in Hz! */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 32 | unsigned long bus_clk; |
| 33 | /* We cannot bracket this with CONFIG_PCI due to mpc5xxx */ |
| 34 | unsigned long pci_clk; |
| 35 | unsigned long mem_clk; |
Heiko Schocher | 70bd818 | 2019-07-22 06:49:04 +0200 | [diff] [blame] | 36 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 37 | unsigned long fb_base; /* Base address of framebuffer mem */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 38 | #endif |
Simon Glass | 49badb9 | 2017-12-04 13:48:23 -0700 | [diff] [blame] | 39 | #if defined(CONFIG_POST) |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 40 | unsigned long post_log_word; /* Record POST activities */ |
| 41 | unsigned long post_log_res; /* success of POST test */ |
| 42 | unsigned long post_init_f_time; /* When post_init_f started */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 43 | #endif |
| 44 | #ifdef CONFIG_BOARD_TYPES |
| 45 | unsigned long board_type; |
| 46 | #endif |
| 47 | unsigned long have_console; /* serial_init() was called */ |
Simon Glass | e304a5e | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 48 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 49 | unsigned long precon_buf_idx; /* Pre-Console buffer index */ |
| 50 | #endif |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 51 | unsigned long env_addr; /* Address of Environment struct */ |
Simon Glass | 4bc2ad2 | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 52 | unsigned long env_valid; /* Environment valid? enum env_valid */ |
Maxime Ripard | 2131c5e | 2018-01-23 21:16:59 +0100 | [diff] [blame] | 53 | unsigned long env_has_init; /* Bitmask of boolean of struct env_location offsets */ |
Nicholas Faustini | a8a17f8 | 2018-07-23 10:01:07 +0200 | [diff] [blame] | 54 | int env_load_prio; /* Priority of the loaded environment */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 55 | |
Michael Pratt | fa28d14 | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 56 | unsigned long ram_base; /* Base address of RAM used by U-Boot */ |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 57 | unsigned long ram_top; /* Top address of RAM used by U-Boot */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 58 | unsigned long relocaddr; /* Start address of U-Boot in RAM */ |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 59 | phys_size_t ram_size; /* RAM size */ |
| 60 | unsigned long mon_len; /* monitor len */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 61 | unsigned long irq_sp; /* irq stack pointer */ |
| 62 | unsigned long start_addr_sp; /* start_addr_stackpointer */ |
| 63 | unsigned long reloc_off; |
| 64 | struct global_data *new_gd; /* relocated global data */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 65 | |
| 66 | #ifdef CONFIG_DM |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 67 | struct udevice *dm_root; /* Root instance for Driver Model */ |
| 68 | struct udevice *dm_root_f; /* Pre-relocation root instance */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 69 | struct list_head uclass_root; /* Head of core tree */ |
| 70 | #endif |
Thomas Chou | fb798b1 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 71 | #ifdef CONFIG_TIMER |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 72 | struct udevice *timer; /* Timer instance for Driver Model */ |
Thomas Chou | fb798b1 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 73 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 74 | |
Robert P. J. Day | 3261d06 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 75 | const void *fdt_blob; /* Our device tree, NULL if none */ |
| 76 | void *new_fdt; /* Relocated FDT */ |
| 77 | unsigned long fdt_size; /* Space reserved for relocated FDT */ |
Simon Glass | a6eedb8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 78 | #ifdef CONFIG_OF_LIVE |
| 79 | struct device_node *of_root; |
| 80 | #endif |
Jean-Jacques Hiblot | 7c530e3 | 2018-12-07 14:50:52 +0100 | [diff] [blame] | 81 | |
| 82 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 83 | const void *multi_dtb_fit; /* uncompressed multi-dtb FIT image */ |
| 84 | #endif |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 85 | struct jt_funcs *jt; /* jump table */ |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 86 | char env_buf[32]; /* buffer for env_get() before reloc. */ |
Simon Glass | 209a1a6 | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 87 | #ifdef CONFIG_TRACE |
| 88 | void *trace_buff; /* The trace buffer */ |
| 89 | #endif |
Heiko Schocher | e7d9c4f | 2012-01-16 21:12:23 +0000 | [diff] [blame] | 90 | #if defined(CONFIG_SYS_I2C) |
| 91 | int cur_i2c_bus; /* current used i2c bus */ |
| 92 | #endif |
Peng Fan | 9a60a9e | 2017-05-09 10:32:03 +0800 | [diff] [blame] | 93 | unsigned int timebase_h; |
| 94 | unsigned int timebase_l; |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 95 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
Simon Glass | 863e404 | 2014-07-10 22:23:28 -0600 | [diff] [blame] | 96 | unsigned long malloc_base; /* base address of early malloc() */ |
| 97 | unsigned long malloc_limit; /* limit address */ |
| 98 | unsigned long malloc_ptr; /* current address */ |
| 99 | #endif |
Bin Meng | f1b81fc | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 100 | #ifdef CONFIG_PCI |
| 101 | struct pci_controller *hose; /* PCI hose for early use */ |
Simon Glass | 5888bd2 | 2015-07-03 18:28:27 -0600 | [diff] [blame] | 102 | phys_addr_t pci_ram_top; /* top of region accessible to PCI */ |
Bin Meng | f1b81fc | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 103 | #endif |
| 104 | #ifdef CONFIG_PCI_BOOTDELAY |
| 105 | int pcidelay_done; |
| 106 | #endif |
Simon Glass | a4c2e13 | 2014-11-10 18:00:20 -0700 | [diff] [blame] | 107 | struct udevice *cur_serial_dev; /* current serial device */ |
Simon Glass | 04ae3d0 | 2015-08-17 09:28:44 -0600 | [diff] [blame] | 108 | struct arch_global_data arch; /* architecture-specific data */ |
Simon Glass | 1bb4923 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 109 | #ifdef CONFIG_CONSOLE_RECORD |
| 110 | struct membuff console_out; /* console output */ |
| 111 | struct membuff console_in; /* console input */ |
| 112 | #endif |
Simon Glass | fce58f5 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 113 | #ifdef CONFIG_DM_VIDEO |
| 114 | ulong video_top; /* Top of video frame buffer area */ |
| 115 | ulong video_bottom; /* Bottom of video frame buffer area */ |
| 116 | #endif |
Simon Glass | 8820033 | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 117 | #ifdef CONFIG_BOOTSTAGE |
| 118 | struct bootstage_data *bootstage; /* Bootstage information */ |
Simon Glass | b9aff92 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 119 | struct bootstage_data *new_bootstage; /* Relocated bootstage info */ |
Simon Glass | 8820033 | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 120 | #endif |
Simon Glass | d95645d | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 121 | #ifdef CONFIG_LOG |
| 122 | int log_drop_count; /* Number of dropped log messages */ |
| 123 | int default_log_level; /* For devices with no filters */ |
| 124 | struct list_head log_head; /* List of struct log_device */ |
Simon Glass | 1fe9301 | 2017-12-28 13:14:17 -0700 | [diff] [blame] | 125 | int log_fmt; /* Mask containing log format info */ |
Simon Glass | d95645d | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 126 | #endif |
Simon Glass | a815dab | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 127 | #if CONFIG_IS_ENABLED(BLOBLIST) |
| 128 | struct bloblist_hdr *bloblist; /* Bloblist information */ |
| 129 | struct bloblist_hdr *new_bloblist; /* Relocated blolist info */ |
Simon Glass | e14f1a2 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 130 | # ifdef CONFIG_SPL |
| 131 | struct spl_handoff *spl_handoff; |
| 132 | # endif |
Simon Glass | a815dab | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 133 | #endif |
Stefan Roese | 85bddff | 2019-04-12 16:42:28 +0200 | [diff] [blame] | 134 | #if defined(CONFIG_TRANSLATION_OFFSET) |
| 135 | fdt_addr_t translation_offset; /* optional translation offset */ |
| 136 | #endif |
Marek Vasut | 55ec91b | 2019-06-09 03:46:21 +0200 | [diff] [blame] | 137 | #if CONFIG_IS_ENABLED(WDT) |
Stefan Roese | 502acb0 | 2019-04-11 15:58:44 +0200 | [diff] [blame] | 138 | struct udevice *watchdog_dev; |
| 139 | #endif |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 140 | } gd_t; |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 141 | |
Simon Glass | b4de3f3 | 2017-03-31 08:40:24 -0600 | [diff] [blame] | 142 | #ifdef CONFIG_BOARD_TYPES |
| 143 | #define gd_board_type() gd->board_type |
| 144 | #else |
| 145 | #define gd_board_type() 0 |
| 146 | #endif |
| 147 | |
Heinrich Schuchardt | 1e5c4fe | 2020-10-05 08:30:08 +0200 | [diff] [blame^] | 148 | /** |
| 149 | * enum gd_flags - global data flags |
| 150 | * |
| 151 | * See field flags of &struct global_data. |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 152 | */ |
Heinrich Schuchardt | 1e5c4fe | 2020-10-05 08:30:08 +0200 | [diff] [blame^] | 153 | enum gd_flags { |
| 154 | /** |
| 155 | * @GD_FLG_RELOC: code was relocated to RAM |
| 156 | */ |
| 157 | GD_FLG_RELOC = 0x00001, |
| 158 | /** |
| 159 | * @GD_FLG_DEVINIT: devices have been initialized |
| 160 | */ |
| 161 | GD_FLG_DEVINIT = 0x00002, |
| 162 | /** |
| 163 | * @GD_FLG_SILENT: silent mode |
| 164 | */ |
| 165 | GD_FLG_SILENT = 0x00004, |
| 166 | /** |
| 167 | * @GD_FLG_POSTFAIL: critical POST test failed |
| 168 | */ |
| 169 | GD_FLG_POSTFAIL = 0x00008, |
| 170 | /** |
| 171 | * @GD_FLG_POSTSTOP: POST sequence aborted |
| 172 | */ |
| 173 | GD_FLG_POSTSTOP = 0x00010, |
| 174 | /** |
| 175 | * @GD_FLG_LOGINIT: log Buffer has been initialized |
| 176 | */ |
| 177 | GD_FLG_LOGINIT = 0x00020, |
| 178 | /** |
| 179 | * @GD_FLG_DISABLE_CONSOLE: disable console (in & out) |
| 180 | */ |
| 181 | GD_FLG_DISABLE_CONSOLE = 0x00040, |
| 182 | /** |
| 183 | * @GD_FLG_ENV_READY: environment imported into hash table |
| 184 | */ |
| 185 | GD_FLG_ENV_READY = 0x00080, |
| 186 | /** |
| 187 | * @GD_FLG_SERIAL_READY: pre-relocation serial console ready |
| 188 | */ |
| 189 | GD_FLG_SERIAL_READY = 0x00100, |
| 190 | /** |
| 191 | * @GD_FLG_FULL_MALLOC_INIT: full malloc() is ready |
| 192 | */ |
| 193 | GD_FLG_FULL_MALLOC_INIT = 0x00200, |
| 194 | /** |
| 195 | * @GD_FLG_SPL_INIT: spl_init() has been called |
| 196 | */ |
| 197 | GD_FLG_SPL_INIT = 0x00400, |
| 198 | /** |
| 199 | * @GD_FLG_SKIP_RELOC: don't relocate |
| 200 | */ |
| 201 | GD_FLG_SKIP_RELOC = 0x00800, |
| 202 | /** |
| 203 | * @GD_FLG_RECORD: record console |
| 204 | */ |
| 205 | GD_FLG_RECORD = 0x01000, |
| 206 | /** |
| 207 | * @GD_FLG_ENV_DEFAULT: default variable flag |
| 208 | */ |
| 209 | GD_FLG_ENV_DEFAULT = 0x02000, |
| 210 | /** |
| 211 | * @GD_FLG_SPL_EARLY_INIT: early SPL initialization is done |
| 212 | */ |
| 213 | GD_FLG_SPL_EARLY_INIT = 0x04000, |
| 214 | /** |
| 215 | * @GD_FLG_LOG_READY: log system is ready for use |
| 216 | */ |
| 217 | GD_FLG_LOG_READY = 0x08000, |
| 218 | /** |
| 219 | * @GD_FLG_WDT_READY: watchdog is ready for use |
| 220 | */ |
| 221 | GD_FLG_WDT_READY = 0x10000, |
| 222 | /** |
| 223 | * @GD_FLG_SKIP_LL_INIT: don't perform low-level initialization |
| 224 | */ |
| 225 | GD_FLG_SKIP_LL_INIT = 0x20000, |
| 226 | /** |
| 227 | * @GD_FLG_SMP_READY: SMP initialization is complete |
| 228 | */ |
| 229 | GD_FLG_SMP_READY = 0x40000, |
| 230 | }; |
| 231 | |
| 232 | #endif /* __ASSEMBLY__ */ |
Simon Glass | 0e72403 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 233 | |
| 234 | #endif /* __ASM_GENERIC_GBL_DATA_H */ |