blob: 789adf2c3f9d71460dd0b9f7d1256f4f82586554 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass0e724032012-12-13 20:49:12 +00002/*
3 * Copyright (c) 2012 The Chromium OS Authors.
4 * (C) Copyright 2002-2010
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass0e724032012-12-13 20:49:12 +00006 */
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 Glass7f67b372024-08-21 10:19:09 -060023#include <board_f.h>
Simon Glassaa4bce92022-03-04 08:43:00 -070024#include <event_internal.h>
Stefan Roese85bddff2019-04-12 16:42:28 +020025#include <fdtdec.h>
Simon Glass1bb49232015-11-08 23:47:48 -070026#include <membuff.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070027#include <linux/list.h>
Rasmus Villemoesb8cfd9e2021-05-18 11:19:47 +020028#include <linux/build_bug.h>
29#include <asm-offsets.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070030
Simon Glassde0115a2020-11-04 09:57:19 -070031struct acpi_ctx;
Simon Glasscfd6a002020-10-03 11:31:33 -060032struct driver_rt;
Simon Glass3a028c22024-08-07 16:47:30 -060033struct upl;
Simon Glasscfd6a002020-10-03 11:31:33 -060034
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020035typedef struct global_data gd_t;
36
37/**
38 * struct global_data - global data structure
39 */
40struct global_data {
41 /**
42 * @bd: board information
43 */
Masahiro Yamadad788bba2020-02-25 02:22:27 +090044 struct bd_info *bd;
Simon Glass68524672024-08-21 10:19:23 -060045 /**
46 * @new_gd: pointer to relocated global data
47 */
48 struct global_data *new_gd;
49 /**
50 * @fdt_blob: U-Boot's own device tree, NULL if none
51 */
52 const void *fdt_blob;
53 /**
Simon Glass8a0417f2024-08-21 10:19:24 -060054 * @cur_serial_dev: current serial device
55 */
56 struct udevice *cur_serial_dev;
Simon Glass209ae762024-09-29 19:49:49 -060057#ifndef CONFIG_XPL_BUILD
Simon Glass8a0417f2024-08-21 10:19:24 -060058 /**
Simon Glass68524672024-08-21 10:19:23 -060059 * @jt: jump table
60 *
61 * The jump table contains pointers to exported functions. A pointer to
62 * the jump table is passed to standalone applications.
63 */
64 struct jt_funcs *jt;
65 /**
Simon Glass7f67b372024-08-21 10:19:09 -060066 * @boardf: information only used before relocation
67 */
68 struct board_f *boardf;
69#endif
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020070 /**
Simon Glass04b480a2024-08-21 10:19:21 -060071 * @ram_size: RAM size in bytes
72 */
73 phys_size_t ram_size;
74 /**
75 * @ram_top: top address of RAM used by U-Boot
76 */
77 phys_addr_t ram_top;
78 /**
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020079 * @flags: global data flags
80 *
81 * See &enum gd_flags
82 */
Simon Glass0e724032012-12-13 20:49:12 +000083 unsigned long flags;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020084 /**
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020085 * @cpu_clk: CPU clock rate in Hz
86 */
87 unsigned long cpu_clk;
Simon Glassee8e6a62024-08-21 10:19:25 -060088#if CONFIG_IS_ENABLED(ENV_SUPPORT)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +020089 /**
Simon Glassfe616842024-08-21 10:19:20 -060090 * @env_addr: address of environment structure
91 *
92 * @env_addr contains the address of the structure holding the
93 * environment variables.
94 */
95 unsigned long env_addr;
Simon Glassee8e6a62024-08-21 10:19:25 -060096#endif /* ENV_SUPPORT */
Simon Glassfe616842024-08-21 10:19:20 -060097 /**
Simon Glassdbd8eb22024-08-21 10:19:22 -060098 * @ram_base: base address of RAM used by U-Boot
99 */
100 unsigned long ram_base;
101 /**
102 * @relocaddr: start address of U-Boot in RAM
103 *
104 * After relocation this field indicates the address to which U-Boot
105 * has been relocated. It can be displayed using the bdinfo command.
106 * Its value is needed to display the source code when debugging with
107 * GDB using the 'add-symbol-file u-boot <relocaddr>' command.
108 */
109 unsigned long relocaddr;
110 /**
111 * @irq_sp: IRQ stack pointer
112 */
113 unsigned long irq_sp;
114 /**
115 * @start_addr_sp: initial stack pointer address
116 */
117 unsigned long start_addr_sp;
118 /**
119 * @reloc_off: relocation offset
120 */
121 unsigned long reloc_off;
122 /**
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200123 * @bus_clk: platform clock rate in Hz
124 */
Simon Glassf782d542024-08-21 10:19:15 -0600125 unsigned int bus_clk;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200126 /**
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200127 * @mem_clk: memory clock rate in Hz
128 */
Simon Glassf782d542024-08-21 10:19:15 -0600129 unsigned int mem_clk;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200130 /**
Simon Glass0b6675d2024-08-21 10:19:16 -0600131 * @mon_len: monitor length in bytes
132 */
133 unsigned int mon_len;
134 /**
Simon Glassdf71aab2024-08-21 10:19:19 -0600135 * @baudrate: baud rate of the serial interface
136 */
137 unsigned int baudrate;
Simon Glassee8e6a62024-08-21 10:19:25 -0600138#if CONFIG_IS_ENABLED(ENV_SUPPORT)
Simon Glassdf71aab2024-08-21 10:19:19 -0600139 /**
Simon Glassc726f282024-08-21 10:19:08 -0600140 * @env_has_init: bit mask indicating environment locations
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200141 *
Simon Glassc726f282024-08-21 10:19:08 -0600142 * &enum env_location defines which bit relates to which location
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200143 */
Simon Glassc726f282024-08-21 10:19:08 -0600144 unsigned short env_has_init;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200145 /**
Simon Glassc726f282024-08-21 10:19:08 -0600146 * @env_valid: environment is valid
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200147 *
Simon Glassc726f282024-08-21 10:19:08 -0600148 * See &enum env_valid
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200149 */
Simon Glassc726f282024-08-21 10:19:08 -0600150 unsigned char env_valid;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200151 /**
152 * @env_load_prio: priority of the loaded environment
153 */
Simon Glassc726f282024-08-21 10:19:08 -0600154 char env_load_prio;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200155 /**
Simon Glassa9ffc542024-08-21 10:19:14 -0600156 * @env_buf: buffer for env_get() before reloc
157 */
158 char env_buf[32];
Simon Glassee8e6a62024-08-21 10:19:25 -0600159#endif /* ENV_SUPPORT */
160 /**
161 * @fdt_src: Source of FDT
162 */
163 enum fdt_source_t fdt_src;
Simon Glassa9ffc542024-08-21 10:19:14 -0600164 /**
Simon Glassa9ffc542024-08-21 10:19:14 -0600165 * @arch: architecture-specific data
166 */
167 struct arch_global_data arch;
168 /**
169 * @dmtag_list: List of DM tags
170 */
171 struct list_head dmtag_list;
172 /**
173 * @timebase_h: high 32 bits of timer
174 */
175 unsigned int timebase_h;
176 /**
177 * @timebase_l: low 32 bits of timer
178 */
179 unsigned int timebase_l;
180#if defined(CONFIG_POST)
181 /**
182 * @post_log_word: active POST tests
183 *
184 * @post_log_word is a bit mask defining which POST tests are recorded
185 * (see constants POST_*).
186 */
187 unsigned long post_log_word;
188 /**
189 * @post_log_res: POST results
190 *
191 * @post_log_res is a bit mask with the POST results. A bit with value 1
192 * indicates successful execution.
193 */
194 unsigned long post_log_res;
195 /**
196 * @post_init_f_time: time in ms when post_init_f() started
197 */
198 unsigned long post_init_f_time;
199#endif
200#ifdef CONFIG_BOARD_TYPES
201 /**
202 * @board_type: board type
203 *
204 * If a U-Boot configuration supports multiple board types, the actual
205 * board type may be stored in this field.
206 */
207 unsigned long board_type;
208#endif
209#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
210 /**
211 * @precon_buf_idx: pre-console buffer index
212 *
213 * @precon_buf_idx indicates the current position of the
214 * buffer used to collect output before the console becomes
215 * available. When negative, the pre-console buffer is
216 * temporarily disabled (used when the pre-console buffer is
217 * being written out, to prevent adding its contents to
218 * itself).
219 */
220 long precon_buf_idx;
221#endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700222#ifdef CONFIG_DM
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200223 /**
224 * @dm_root: root instance for Driver Model
225 */
226 struct udevice *dm_root;
227 /**
Heinrich Schuchardt18000fe2021-01-24 21:48:00 +0100228 * @uclass_root_s:
229 * head of core tree when uclasses are not in read-only memory.
230 *
231 * When uclasses are in read-only memory, @uclass_root_s is not used and
232 * @uclass_root points to the root node generated by dtoc.
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200233 */
Simon Glass784cd9e2020-12-19 10:40:17 -0700234 struct list_head uclass_root_s;
235 /**
Heinrich Schuchardt18000fe2021-01-24 21:48:00 +0100236 * @uclass_root:
237 * pointer to head of core tree, if uclasses are in read-only memory and
238 * cannot be adjusted to use @uclass_root as a list head.
239 *
240 * When not in read-only memory, @uclass_root_s is used to hold the
241 * uclass root, and @uclass_root points to the address of
242 * @uclass_root_s.
Simon Glass784cd9e2020-12-19 10:40:17 -0700243 */
244 struct list_head *uclass_root;
Simon Glass8beeb282021-03-15 17:25:36 +1300245# if CONFIG_IS_ENABLED(OF_PLATDATA_DRIVER_RT)
Simon Glass9286eb92020-11-29 17:07:05 -0700246 /** @dm_driver_rt: Dynamic info about the driver */
Simon Glasscfd6a002020-10-03 11:31:33 -0600247 struct driver_rt *dm_driver_rt;
248# endif
Simon Glass8beeb282021-03-15 17:25:36 +1300249#if CONFIG_IS_ENABLED(OF_PLATDATA_RT)
250 /** @dm_udevice_rt: Dynamic info about the udevice */
251 struct udevice_rt *dm_udevice_rt;
Simon Glass8dee67a2021-03-15 17:25:38 +1300252 /**
253 * @dm_priv_base: Base address of the priv/plat region used when
254 * udevices and uclasses are in read-only memory. This is NULL if not
255 * used
256 */
257 void *dm_priv_base;
Simon Glass8beeb282021-03-15 17:25:36 +1300258# endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700259#endif
Thomas Choufb798b12015-10-09 13:46:34 +0800260#ifdef CONFIG_TIMER
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200261 /**
262 * @timer: timer instance for Driver Model
263 */
264 struct udevice *timer;
Thomas Choufb798b12015-10-09 13:46:34 +0800265#endif
Simon Glass40916e62020-10-03 09:25:22 -0600266#if CONFIG_IS_ENABLED(OF_LIVE)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200267 /**
268 * @of_root: root node of the live tree
269 */
Simon Glassa6eedb82017-05-18 20:08:53 -0600270 struct device_node *of_root;
271#endif
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +0100272#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200273 /**
274 * @multi_dtb_fit: pointer to uncompressed multi-dtb FIT image
275 */
276 const void *multi_dtb_fit;
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +0100277#endif
Simon Glass209a1a62013-06-11 11:14:42 -0700278#ifdef CONFIG_TRACE
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200279 /**
280 * @trace_buff: trace buffer
281 *
282 * When tracing function in U-Boot this field points to the buffer
283 * recording the function calls.
284 */
285 void *trace_buff;
Simon Glass209a1a62013-06-11 11:14:42 -0700286#endif
Tom Rini52b2e262021-08-18 23:12:24 -0400287#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200288 /**
289 * @cur_i2c_bus: currently used I2C bus
290 */
291 int cur_i2c_bus;
Heiko Schochere7d9c4f2012-01-16 21:12:23 +0000292#endif
Simon Glassa9ffc542024-08-21 10:19:14 -0600293#if CONFIG_IS_ENABLED(CMD_BDINFO_EXTRA)
Simon Glass345c9742023-07-15 21:38:53 -0600294 /**
295 * @malloc_start: start of malloc() region
296 */
Simon Glass345c9742023-07-15 21:38:53 -0600297 unsigned long malloc_start;
298#endif
Simon Glassadad2d02023-09-26 08:14:27 -0600299#if CONFIG_IS_ENABLED(SYS_MALLOC_F)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200300 /**
301 * @malloc_base: base address of early malloc()
302 */
303 unsigned long malloc_base;
304 /**
Simon Glass91bbb3b2024-08-23 14:27:04 -0600305 * @malloc_limit: maximum size of early malloc()
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200306 */
Simon Glass91bbb3b2024-08-23 14:27:04 -0600307 unsigned int malloc_limit;
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200308 /**
Simon Glass91bbb3b2024-08-23 14:27:04 -0600309 * @malloc_ptr: currently used bytes of early malloc()
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200310 */
Simon Glass91bbb3b2024-08-23 14:27:04 -0600311 unsigned int malloc_ptr;
Simon Glass863e4042014-07-10 22:23:28 -0600312#endif
Simon Glass1bb49232015-11-08 23:47:48 -0700313#ifdef CONFIG_CONSOLE_RECORD
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200314 /**
315 * @console_out: output buffer for console recording
316 *
317 * This buffer is used to collect output during console recording.
318 */
319 struct membuff console_out;
320 /**
321 * @console_in: input buffer for console recording
322 *
323 * If console recording is activated, this buffer can be used to
324 * emulate input.
325 */
326 struct membuff console_in;
Simon Glass1bb49232015-11-08 23:47:48 -0700327#endif
Nikhil M Jain7f561e12023-04-20 17:41:10 +0530328#if CONFIG_IS_ENABLED(VIDEO)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200329 /**
330 * @video_top: top of video frame buffer area
331 */
332 ulong video_top;
333 /**
334 * @video_bottom: bottom of video frame buffer area
335 */
336 ulong video_bottom;
Simon Glassfce58f52016-01-18 19:52:21 -0700337#endif
Simon Glass88200332017-05-22 05:05:25 -0600338#ifdef CONFIG_BOOTSTAGE
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200339 /**
340 * @bootstage: boot stage information
341 */
342 struct bootstage_data *bootstage;
Simon Glass88200332017-05-22 05:05:25 -0600343#endif
Simon Glassd95645d2017-12-04 13:48:24 -0700344#ifdef CONFIG_LOG
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200345 /**
Simon Glass9113dd32024-08-21 10:19:17 -0600346 * @log_head: list of logging devices
347 */
348 struct list_head log_head;
349 /**
350 * @log_fmt: bit mask for logging format
351 *
352 * The @log_fmt bit mask selects the fields to be shown in log messages.
353 * &enum log_fmt defines the bits of the bit mask.
354 */
355 /**
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200356 * @log_drop_count: number of dropped log messages
357 *
358 * This counter is incremented for each log message which can not
359 * be processed because logging is not yet available as signaled by
360 * flag %GD_FLG_LOG_READY in @flags.
361 */
362 int log_drop_count;
363 /**
364 * @default_log_level: default logging level
365 *
366 * For logging devices without filters @default_log_level defines the
367 * logging level, cf. &enum log_level_t.
368 */
Simon Glass9113dd32024-08-21 10:19:17 -0600369 char default_log_level;
370 char log_fmt;
Heinrich Schuchardt0fc9f4f2020-10-17 14:31:58 +0200371 /**
372 * @logc_prev: logging category of previous message
373 *
374 * This value is used as logging category for continuation messages.
375 */
Simon Glass9113dd32024-08-21 10:19:17 -0600376 unsigned char logc_prev;
Heinrich Schuchardt0fc9f4f2020-10-17 14:31:58 +0200377 /**
Heinrich Schuchardt14e77222020-10-30 18:50:31 +0100378 * @logl_prev: logging level of the previous message
Heinrich Schuchardt0fc9f4f2020-10-17 14:31:58 +0200379 *
380 * This value is used as logging level for continuation messages.
381 */
Simon Glass9113dd32024-08-21 10:19:17 -0600382 unsigned char logl_prev;
Simon Glass5fc47e32021-01-20 20:10:53 -0700383 /**
384 * @log_cont: Previous log line did not finished wtih \n
385 *
386 * This allows for chained log messages on the same line
387 */
388 bool log_cont;
Simon Glass9113dd32024-08-21 10:19:17 -0600389 /**
390 * @processing_msg: a log message is being processed
391 *
392 * This flag is used to suppress the creation of additional messages
393 * while another message is being processed.
394 */
395 bool processing_msg;
Simon Glassd95645d2017-12-04 13:48:24 -0700396#endif
Simon Glassa815dab2018-11-15 18:43:52 -0700397#if CONFIG_IS_ENABLED(BLOBLIST)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200398 /**
399 * @bloblist: blob list information
400 */
401 struct bloblist_hdr *bloblist;
Ovidiu Panaitc1b30d52020-11-28 10:43:20 +0200402#endif
Simon Glass1577b132024-12-01 07:42:35 -0700403#if CONFIG_IS_ENABLED(HANDOFF)
404 /**
405 * @spl_handoff: SPL hand-off information
406 */
407 struct spl_handoff *spl_handoff;
408#endif
Stefan Roese85bddff2019-04-12 16:42:28 +0200409#if defined(CONFIG_TRANSLATION_OFFSET)
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200410 /**
411 * @translation_offset: optional translation offset
412 *
413 * See CONFIG_TRANSLATION_OFFSET.
414 */
415 fdt_addr_t translation_offset;
Stefan Roese85bddff2019-04-12 16:42:28 +0200416#endif
Simon Glasscf1f4bb2023-05-04 16:54:59 -0600417#ifdef CONFIG_ACPI
Simon Glassde0115a2020-11-04 09:57:19 -0700418 /**
419 * @acpi_ctx: ACPI context pointer
420 */
421 struct acpi_ctx *acpi_ctx;
Simon Glassb33f2f92021-12-01 09:02:37 -0700422 /**
423 * @acpi_start: Start address of ACPI tables
424 */
425 ulong acpi_start;
Simon Glassde0115a2020-11-04 09:57:19 -0700426#endif
Simon Glassa05eb042021-02-04 21:17:20 -0700427#if CONFIG_IS_ENABLED(GENERATE_SMBIOS_TABLE)
428 /**
429 * @smbios_version: Points to SMBIOS type 0 version
430 */
431 char *smbios_version;
432#endif
Simon Glassaa4bce92022-03-04 08:43:00 -0700433#if CONFIG_IS_ENABLED(EVENT)
434 /**
435 * @event_state: Points to the current state of events
436 */
437 struct event_state event_state;
438#endif
Simon Glass0b385222024-07-31 08:44:08 -0600439#if CONFIG_IS_ENABLED(CYCLIC)
Stefan Roese036f89a2022-09-02 13:57:48 +0200440 /**
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200441 * @cyclic_list: list of registered cyclic functions
Stefan Roese036f89a2022-09-02 13:57:48 +0200442 */
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200443 struct hlist_head cyclic_list;
Stefan Roese036f89a2022-09-02 13:57:48 +0200444#endif
Simon Glass3a028c22024-08-07 16:47:30 -0600445#if CONFIG_IS_ENABLED(UPL)
446 /**
447 * @upl: Universal Payload-handoff information
448 */
449 struct upl *upl;
450#endif
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200451};
Rasmus Villemoesb8cfd9e2021-05-18 11:19:47 +0200452#ifndef DO_DEPS_ONLY
453static_assert(sizeof(struct global_data) == GD_SIZE);
454#endif
Simon Glass0e724032012-12-13 20:49:12 +0000455
Heinrich Schuchardt50d92862020-10-05 08:30:09 +0200456/**
457 * gd_board_type() - retrieve board type
458 *
459 * Return: global board type
460 */
Simon Glassb4de3f32017-03-31 08:40:24 -0600461#ifdef CONFIG_BOARD_TYPES
462#define gd_board_type() gd->board_type
463#else
464#define gd_board_type() 0
465#endif
466
Simon Glass40916e62020-10-03 09:25:22 -0600467/* These macros help avoid #ifdefs in the code */
468#if CONFIG_IS_ENABLED(OF_LIVE)
469#define gd_of_root() gd->of_root
470#define gd_of_root_ptr() &gd->of_root
471#define gd_set_of_root(_root) gd->of_root = (_root)
472#else
473#define gd_of_root() NULL
474#define gd_of_root_ptr() NULL
475#define gd_set_of_root(_root)
476#endif
477
Simon Glass8beeb282021-03-15 17:25:36 +1300478#if CONFIG_IS_ENABLED(OF_PLATDATA_DRIVER_RT)
Simon Glasscfd6a002020-10-03 11:31:33 -0600479#define gd_set_dm_driver_rt(dyn) gd->dm_driver_rt = dyn
480#define gd_dm_driver_rt() gd->dm_driver_rt
481#else
482#define gd_set_dm_driver_rt(dyn)
483#define gd_dm_driver_rt() NULL
484#endif
485
Simon Glass8beeb282021-03-15 17:25:36 +1300486#if CONFIG_IS_ENABLED(OF_PLATDATA_RT)
487#define gd_set_dm_udevice_rt(dyn) gd->dm_udevice_rt = dyn
488#define gd_dm_udevice_rt() gd->dm_udevice_rt
Simon Glass8dee67a2021-03-15 17:25:38 +1300489#define gd_set_dm_priv_base(dyn) gd->dm_priv_base = dyn
490#define gd_dm_priv_base() gd->dm_priv_base
Simon Glass8beeb282021-03-15 17:25:36 +1300491#else
492#define gd_set_dm_udevice_rt(dyn)
493#define gd_dm_udevice_rt() NULL
Simon Glass8dee67a2021-03-15 17:25:38 +1300494#define gd_set_dm_priv_base(dyn)
495#define gd_dm_priv_base() NULL
Simon Glass8beeb282021-03-15 17:25:36 +1300496#endif
497
Simon Glasscf1f4bb2023-05-04 16:54:59 -0600498#ifdef CONFIG_ACPI
Simon Glassde0115a2020-11-04 09:57:19 -0700499#define gd_acpi_ctx() gd->acpi_ctx
Simon Glassb33f2f92021-12-01 09:02:37 -0700500#define gd_acpi_start() gd->acpi_start
501#define gd_set_acpi_start(addr) gd->acpi_start = addr
Simon Glassde0115a2020-11-04 09:57:19 -0700502#else
503#define gd_acpi_ctx() NULL
Simon Glassb33f2f92021-12-01 09:02:37 -0700504#define gd_acpi_start() 0UL
505#define gd_set_acpi_start(addr)
Simon Glassde0115a2020-11-04 09:57:19 -0700506#endif
507
Simon Glass9b388102023-09-19 21:00:15 -0600508#ifdef CONFIG_SMBIOS
Simon Glass42b7da52023-12-31 08:25:48 -0700509#define gd_smbios_start() gd->arch.smbios_start
Simon Glass9b388102023-09-19 21:00:15 -0600510#define gd_set_smbios_start(addr) gd->arch.smbios_start = addr
511#else
512#define gd_smbios_start() 0UL
513#define gd_set_smbios_start(addr)
514#endif
515
Simon Glass69daf5a2021-12-16 20:59:25 -0700516#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
517#define gd_multi_dtb_fit() gd->multi_dtb_fit
518#define gd_set_multi_dtb_fit(_dtb) gd->multi_dtb_fit = _dtb
519#else
520#define gd_multi_dtb_fit() NULL
521#define gd_set_multi_dtb_fit(_dtb)
522#endif
523
Simon Glassaa4bce92022-03-04 08:43:00 -0700524#if CONFIG_IS_ENABLED(EVENT_DYNAMIC)
525#define gd_event_state() ((struct event_state *)&gd->event_state)
526#else
527#define gd_event_state() NULL
528#endif
529
Simon Glass345c9742023-07-15 21:38:53 -0600530#if CONFIG_IS_ENABLED(CMD_BDINFO_EXTRA)
531#define gd_malloc_start() gd->malloc_start
532#define gd_set_malloc_start(_val) gd->malloc_start = (_val)
533#else
534#define gd_malloc_start() 0
535#define gd_set_malloc_start(val)
536#endif
Troy Kiskye143c272023-03-13 14:31:43 -0700537
Simon Glasse8804d72023-09-26 08:14:31 -0600538#if CONFIG_VAL(SYS_MALLOC_F_LEN)
539#define gd_malloc_ptr() gd->malloc_ptr
540#else
541#define gd_malloc_ptr() 0L
542#endif
543
Simon Glass3a028c22024-08-07 16:47:30 -0600544#if CONFIG_IS_ENABLED(UPL)
545#define gd_upl() gd->upl
546#define gd_set_upl(_val) gd->upl = (_val)
547#else
548#define gd_upl() NULL
549#define gd_set_upl(val)
550#endif
551
Simon Glass78be6402024-10-21 10:19:27 +0200552#if CONFIG_IS_ENABLED(BLOBLIST)
553#define gd_bloblist() gd->bloblist
Simon Glassbe277ee2024-10-28 13:47:53 +0100554#define gd_set_bloblist(_val) gd->bloblist = (_val)
Simon Glass78be6402024-10-21 10:19:27 +0200555#else
556#define gd_bloblist() NULL
Simon Glassbe277ee2024-10-28 13:47:53 +0100557#define gd_set_bloblist(_val)
Simon Glass78be6402024-10-21 10:19:27 +0200558#endif
559
560#if CONFIG_IS_ENABLED(BOOTSTAGE)
561#define gd_bootstage() gd->bootstage
562#else
563#define gd_bootstage() NULL
564#endif
565
566#if CONFIG_IS_ENABLED(TRACE)
567#define gd_trace_buff() gd->trace_buff
568#define gd_trace_size() CONFIG_TRACE_BUFFER_SIZE
569#else
570#define gd_trace_buff() NULL
571#define gd_trace_size() 0
572#endif
573
574#if CONFIG_IS_ENABLED(VIDEO)
575#define gd_video_top() gd->video_top
576#define gd_video_bottom() gd->video_bottom
577#define gd_video_size() (gd->video_top - gd->video_bottom)
578#else
579#define gd_video_top() 0
580#define gd_video_bottom() 0
581#define gd_video_size() 0
582#endif
583
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200584/**
585 * enum gd_flags - global data flags
586 *
587 * See field flags of &struct global_data.
Simon Glass0e724032012-12-13 20:49:12 +0000588 */
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200589enum gd_flags {
590 /**
591 * @GD_FLG_RELOC: code was relocated to RAM
592 */
593 GD_FLG_RELOC = 0x00001,
594 /**
595 * @GD_FLG_DEVINIT: devices have been initialized
596 */
597 GD_FLG_DEVINIT = 0x00002,
598 /**
599 * @GD_FLG_SILENT: silent mode
600 */
601 GD_FLG_SILENT = 0x00004,
602 /**
603 * @GD_FLG_POSTFAIL: critical POST test failed
604 */
605 GD_FLG_POSTFAIL = 0x00008,
606 /**
607 * @GD_FLG_POSTSTOP: POST sequence aborted
608 */
609 GD_FLG_POSTSTOP = 0x00010,
610 /**
611 * @GD_FLG_LOGINIT: log Buffer has been initialized
612 */
613 GD_FLG_LOGINIT = 0x00020,
614 /**
615 * @GD_FLG_DISABLE_CONSOLE: disable console (in & out)
616 */
617 GD_FLG_DISABLE_CONSOLE = 0x00040,
618 /**
619 * @GD_FLG_ENV_READY: environment imported into hash table
620 */
621 GD_FLG_ENV_READY = 0x00080,
622 /**
623 * @GD_FLG_SERIAL_READY: pre-relocation serial console ready
624 */
625 GD_FLG_SERIAL_READY = 0x00100,
626 /**
627 * @GD_FLG_FULL_MALLOC_INIT: full malloc() is ready
628 */
629 GD_FLG_FULL_MALLOC_INIT = 0x00200,
630 /**
631 * @GD_FLG_SPL_INIT: spl_init() has been called
632 */
633 GD_FLG_SPL_INIT = 0x00400,
634 /**
635 * @GD_FLG_SKIP_RELOC: don't relocate
636 */
637 GD_FLG_SKIP_RELOC = 0x00800,
638 /**
639 * @GD_FLG_RECORD: record console
640 */
641 GD_FLG_RECORD = 0x01000,
642 /**
Simon Glassd6ed4af2021-05-08 06:59:56 -0600643 * @GD_FLG_RECORD_OVF: record console overflow
644 */
645 GD_FLG_RECORD_OVF = 0x02000,
646 /**
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200647 * @GD_FLG_ENV_DEFAULT: default variable flag
648 */
Simon Glassd6ed4af2021-05-08 06:59:56 -0600649 GD_FLG_ENV_DEFAULT = 0x04000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200650 /**
651 * @GD_FLG_SPL_EARLY_INIT: early SPL initialization is done
652 */
Simon Glassd6ed4af2021-05-08 06:59:56 -0600653 GD_FLG_SPL_EARLY_INIT = 0x08000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200654 /**
655 * @GD_FLG_LOG_READY: log system is ready for use
656 */
Simon Glassd6ed4af2021-05-08 06:59:56 -0600657 GD_FLG_LOG_READY = 0x10000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200658 /**
Stefan Roese5128a872022-11-17 09:20:34 +0100659 * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200660 */
Stefan Roese5128a872022-11-17 09:20:34 +0100661 GD_FLG_CYCLIC_RUNNING = 0x20000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200662 /**
663 * @GD_FLG_SKIP_LL_INIT: don't perform low-level initialization
664 */
Simon Glassd6ed4af2021-05-08 06:59:56 -0600665 GD_FLG_SKIP_LL_INIT = 0x40000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200666 /**
667 * @GD_FLG_SMP_READY: SMP initialization is complete
668 */
Simon Glassd6ed4af2021-05-08 06:59:56 -0600669 GD_FLG_SMP_READY = 0x80000,
Simon Glass60f08992022-09-06 20:27:06 -0600670 /**
671 * @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests
672 */
673 GD_FLG_FDT_CHANGED = 0x100000,
Simon Glassc2727e52023-02-13 08:56:32 -0700674 /**
675 * @GD_FLG_OF_TAG_MIGRATE: Device tree has old u-boot,dm- tags
676 */
677 GD_FLG_OF_TAG_MIGRATE = 0x200000,
Simon Glass31ef8342023-09-07 09:58:13 -0600678 /**
679 * @GD_FLG_DM_DEAD: Driver model is not accessible. This can be set when
680 * the memory used to holds its tables has been mapped out.
681 */
682 GD_FLG_DM_DEAD = 0x400000,
Simon Glassa28f39c2023-09-26 08:14:51 -0600683 /**
684 * @GD_FLG_BLOBLIST_READY: bloblist is ready for use
685 */
686 GD_FLG_BLOBLIST_READY = 0x800000,
Francis Laniel1239d232023-12-22 22:02:30 +0100687 /**
688 * @GD_FLG_HUSH_OLD_PARSER: Use hush old parser.
689 */
690 GD_FLG_HUSH_OLD_PARSER = 0x1000000,
Francis Laniel3b66e572023-12-22 22:02:32 +0100691 /**
692 * @GD_FLG_HUSH_MODERN_PARSER: Use hush 2021 parser.
693 */
694 GD_FLG_HUSH_MODERN_PARSER = 0x2000000,
Simon Glass9b5bfba2024-08-07 16:47:33 -0600695 /**
696 * @GD_FLG_UPL: Read/write a Universal Payload (UPL) handoff
697 */
698 GD_FLG_UPL = 0x4000000,
Simon Glassd4b0fdb2024-08-21 10:19:04 -0600699 /**
700 * @GD_FLG_HAVE_CONSOLE: serial_init() was called and a console
701 * is available. When not set, indicates that console input and output
702 * drivers shall not be called.
703 */
704 GD_FLG_HAVE_CONSOLE = 0x8000000,
Heinrich Schuchardt1e5c4fe2020-10-05 08:30:08 +0200705};
706
707#endif /* __ASSEMBLY__ */
Simon Glass0e724032012-12-13 20:49:12 +0000708
709#endif /* __ASM_GENERIC_GBL_DATA_H */