Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 50b1fa3 | 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 | 50b1fa3 | 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__ |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 23 | #include <membuff.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 24 | #include <linux/list.h> |
| 25 | |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 26 | typedef struct global_data { |
| 27 | bd_t *bd; |
| 28 | unsigned long flags; |
Simon Glass | b5bec88 | 2013-03-05 14:40:05 +0000 | [diff] [blame] | 29 | unsigned int baudrate; |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 30 | unsigned long cpu_clk; /* CPU clock in Hz! */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 31 | unsigned long bus_clk; |
| 32 | /* We cannot bracket this with CONFIG_PCI due to mpc5xxx */ |
| 33 | unsigned long pci_clk; |
| 34 | unsigned long mem_clk; |
| 35 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 36 | unsigned long fb_base; /* Base address of framebuffer mem */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 37 | #endif |
Simon Glass | c5404b6 | 2017-12-04 13:48:23 -0700 | [diff] [blame] | 38 | #if defined(CONFIG_POST) |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 39 | unsigned long post_log_word; /* Record POST activities */ |
| 40 | unsigned long post_log_res; /* success of POST test */ |
| 41 | unsigned long post_init_f_time; /* When post_init_f started */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 42 | #endif |
| 43 | #ifdef CONFIG_BOARD_TYPES |
| 44 | unsigned long board_type; |
| 45 | #endif |
| 46 | unsigned long have_console; /* serial_init() was called */ |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 47 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 48 | unsigned long precon_buf_idx; /* Pre-Console buffer index */ |
| 49 | #endif |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 50 | unsigned long env_addr; /* Address of Environment struct */ |
Simon Glass | 203e94f | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 51 | unsigned long env_valid; /* Environment valid? enum env_valid */ |
Maxime Ripard | 1d44608 | 2018-01-23 21:16:59 +0100 | [diff] [blame] | 52 | unsigned long env_has_init; /* Bitmask of boolean of struct env_location offsets */ |
Nicholas Faustini | d30ba23 | 2018-07-23 10:01:07 +0200 | [diff] [blame] | 53 | int env_load_prio; /* Priority of the loaded environment */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 54 | |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 55 | unsigned long ram_base; /* Base address of RAM used by U-Boot */ |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 56 | unsigned long ram_top; /* Top address of RAM used by U-Boot */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 57 | unsigned long relocaddr; /* Start address of U-Boot in RAM */ |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 58 | phys_size_t ram_size; /* RAM size */ |
| 59 | unsigned long mon_len; /* monitor len */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 60 | unsigned long irq_sp; /* irq stack pointer */ |
| 61 | unsigned long start_addr_sp; /* start_addr_stackpointer */ |
| 62 | unsigned long reloc_off; |
| 63 | struct global_data *new_gd; /* relocated global data */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 64 | |
| 65 | #ifdef CONFIG_DM |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 66 | struct udevice *dm_root; /* Root instance for Driver Model */ |
| 67 | struct udevice *dm_root_f; /* Pre-relocation root instance */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 68 | struct list_head uclass_root; /* Head of core tree */ |
| 69 | #endif |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 70 | #ifdef CONFIG_TIMER |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 71 | struct udevice *timer; /* Timer instance for Driver Model */ |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 72 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 73 | |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 74 | const void *fdt_blob; /* Our device tree, NULL if none */ |
| 75 | void *new_fdt; /* Relocated FDT */ |
| 76 | unsigned long fdt_size; /* Space reserved for relocated FDT */ |
Simon Glass | 5e060d8 | 2017-05-18 20:08:53 -0600 | [diff] [blame] | 77 | #ifdef CONFIG_OF_LIVE |
| 78 | struct device_node *of_root; |
| 79 | #endif |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 80 | struct jt_funcs *jt; /* jump table */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 81 | char env_buf[32]; /* buffer for env_get() before reloc. */ |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 82 | #ifdef CONFIG_TRACE |
| 83 | void *trace_buff; /* The trace buffer */ |
| 84 | #endif |
Heiko Schocher | 385c9ef | 2012-01-16 21:12:23 +0000 | [diff] [blame] | 85 | #if defined(CONFIG_SYS_I2C) |
| 86 | int cur_i2c_bus; /* current used i2c bus */ |
| 87 | #endif |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 88 | #ifdef CONFIG_SYS_I2C_MXC |
| 89 | void *srdata[10]; |
| 90 | #endif |
Peng Fan | 2511210 | 2017-05-09 10:32:03 +0800 | [diff] [blame] | 91 | unsigned int timebase_h; |
| 92 | unsigned int timebase_l; |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 93 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
Simon Glass | d59476b | 2014-07-10 22:23:28 -0600 | [diff] [blame] | 94 | unsigned long malloc_base; /* base address of early malloc() */ |
| 95 | unsigned long malloc_limit; /* limit address */ |
| 96 | unsigned long malloc_ptr; /* current address */ |
| 97 | #endif |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 98 | #ifdef CONFIG_PCI |
| 99 | struct pci_controller *hose; /* PCI hose for early use */ |
Simon Glass | b9da508 | 2015-07-03 18:28:27 -0600 | [diff] [blame] | 100 | phys_addr_t pci_ram_top; /* top of region accessible to PCI */ |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 101 | #endif |
| 102 | #ifdef CONFIG_PCI_BOOTDELAY |
| 103 | int pcidelay_done; |
| 104 | #endif |
Simon Glass | 469a579 | 2014-11-10 18:00:20 -0700 | [diff] [blame] | 105 | struct udevice *cur_serial_dev; /* current serial device */ |
Simon Glass | 2212e69 | 2015-08-17 09:28:44 -0600 | [diff] [blame] | 106 | struct arch_global_data arch; /* architecture-specific data */ |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 107 | #ifdef CONFIG_CONSOLE_RECORD |
| 108 | struct membuff console_out; /* console output */ |
| 109 | struct membuff console_in; /* console input */ |
| 110 | #endif |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 111 | #ifdef CONFIG_DM_VIDEO |
| 112 | ulong video_top; /* Top of video frame buffer area */ |
| 113 | ulong video_bottom; /* Bottom of video frame buffer area */ |
| 114 | #endif |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 115 | #ifdef CONFIG_BOOTSTAGE |
| 116 | struct bootstage_data *bootstage; /* Bootstage information */ |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 117 | struct bootstage_data *new_bootstage; /* Relocated bootstage info */ |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 118 | #endif |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 119 | #ifdef CONFIG_LOG |
| 120 | int log_drop_count; /* Number of dropped log messages */ |
| 121 | int default_log_level; /* For devices with no filters */ |
| 122 | struct list_head log_head; /* List of struct log_device */ |
Simon Glass | 3b73e8d | 2017-12-28 13:14:17 -0700 | [diff] [blame] | 123 | int log_fmt; /* Mask containing log format info */ |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 124 | #endif |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 125 | #if CONFIG_IS_ENABLED(BLOBLIST) |
| 126 | struct bloblist_hdr *bloblist; /* Bloblist information */ |
| 127 | struct bloblist_hdr *new_bloblist; /* Relocated blolist info */ |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 128 | # ifdef CONFIG_SPL |
| 129 | struct spl_handoff *spl_handoff; |
| 130 | # endif |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 131 | #endif |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 132 | } gd_t; |
| 133 | #endif |
| 134 | |
Simon Glass | 52c4118 | 2017-03-31 08:40:24 -0600 | [diff] [blame] | 135 | #ifdef CONFIG_BOARD_TYPES |
| 136 | #define gd_board_type() gd->board_type |
| 137 | #else |
| 138 | #define gd_board_type() 0 |
| 139 | #endif |
| 140 | |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 141 | /* |
Simon Glass | b0b403d | 2015-07-31 09:31:27 -0600 | [diff] [blame] | 142 | * Global Data Flags - the top 16 bits are reserved for arch-specific flags |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 143 | */ |
| 144 | #define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */ |
| 145 | #define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */ |
| 146 | #define GD_FLG_SILENT 0x00004 /* Silent mode */ |
| 147 | #define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */ |
| 148 | #define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */ |
| 149 | #define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */ |
| 150 | #define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */ |
| 151 | #define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */ |
Simon Glass | 093f79a | 2014-07-23 06:55:07 -0600 | [diff] [blame] | 152 | #define GD_FLG_SERIAL_READY 0x00100 /* Pre-reloc serial console ready */ |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 153 | #define GD_FLG_FULL_MALLOC_INIT 0x00200 /* Full malloc() is ready */ |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 154 | #define GD_FLG_SPL_INIT 0x00400 /* spl_init() has been called */ |
Robert P. J. Day | 2adbc17 | 2016-09-01 12:54:32 -0400 | [diff] [blame] | 155 | #define GD_FLG_SKIP_RELOC 0x00800 /* Don't relocate */ |
| 156 | #define GD_FLG_RECORD 0x01000 /* Record console */ |
| 157 | #define GD_FLG_ENV_DEFAULT 0x02000 /* Default variable flag */ |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 158 | #define GD_FLG_SPL_EARLY_INIT 0x04000 /* Early SPL init is done */ |
Simon Glass | af1bc0c | 2017-12-04 13:48:28 -0700 | [diff] [blame] | 159 | #define GD_FLG_LOG_READY 0x08000 /* Log system is ready for use */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 160 | |
| 161 | #endif /* __ASM_GENERIC_GBL_DATA_H */ |