blob: 78dcf40bff486841d7c34a2f49b4979806940f0c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass50b1fa32012-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 Glass50b1fa32012-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 Glass9854a872015-11-08 23:47:48 -070023#include <membuff.h>
Simon Glass6494d702014-02-26 15:59:18 -070024#include <linux/list.h>
25
Simon Glass50b1fa32012-12-13 20:49:12 +000026typedef struct global_data {
27 bd_t *bd;
28 unsigned long flags;
Simon Glassb5bec882013-03-05 14:40:05 +000029 unsigned int baudrate;
Robert P. J. Day2adbc172016-09-01 12:54:32 -040030 unsigned long cpu_clk; /* CPU clock in Hz! */
Simon Glass50b1fa32012-12-13 20:49:12 +000031 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. Day2adbc172016-09-01 12:54:32 -040036 unsigned long fb_base; /* Base address of framebuffer mem */
Simon Glass50b1fa32012-12-13 20:49:12 +000037#endif
Simon Glassc5404b62017-12-04 13:48:23 -070038#if defined(CONFIG_POST)
Robert P. J. Day2adbc172016-09-01 12:54:32 -040039 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 Glass50b1fa32012-12-13 20:49:12 +000042#endif
43#ifdef CONFIG_BOARD_TYPES
44 unsigned long board_type;
45#endif
46 unsigned long have_console; /* serial_init() was called */
Simon Glass8f925582016-10-17 20:12:36 -060047#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Simon Glass50b1fa32012-12-13 20:49:12 +000048 unsigned long precon_buf_idx; /* Pre-Console buffer index */
49#endif
Robert P. J. Day2adbc172016-09-01 12:54:32 -040050 unsigned long env_addr; /* Address of Environment struct */
Simon Glass203e94f2017-08-03 12:21:56 -060051 unsigned long env_valid; /* Environment valid? enum env_valid */
Maxime Ripard1d446082018-01-23 21:16:59 +010052 unsigned long env_has_init; /* Bitmask of boolean of struct env_location offsets */
Nicholas Faustinid30ba232018-07-23 10:01:07 +020053 int env_load_prio; /* Priority of the loaded environment */
Simon Glass50b1fa32012-12-13 20:49:12 +000054
Michael Pratt90c08fa2018-06-11 13:07:09 -060055 unsigned long ram_base; /* Base address of RAM used by U-Boot */
Robert P. J. Day2adbc172016-09-01 12:54:32 -040056 unsigned long ram_top; /* Top address of RAM used by U-Boot */
Simon Glass50b1fa32012-12-13 20:49:12 +000057 unsigned long relocaddr; /* Start address of U-Boot in RAM */
Robert P. J. Day2adbc172016-09-01 12:54:32 -040058 phys_size_t ram_size; /* RAM size */
59 unsigned long mon_len; /* monitor len */
Simon Glass50b1fa32012-12-13 20:49:12 +000060 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 Glass6494d702014-02-26 15:59:18 -070064
65#ifdef CONFIG_DM
Simon Glassab7cd622014-07-23 06:55:04 -060066 struct udevice *dm_root; /* Root instance for Driver Model */
67 struct udevice *dm_root_f; /* Pre-relocation root instance */
Simon Glass6494d702014-02-26 15:59:18 -070068 struct list_head uclass_root; /* Head of core tree */
69#endif
Thomas Chouc8a7ba92015-10-09 13:46:34 +080070#ifdef CONFIG_TIMER
Robert P. J. Day2adbc172016-09-01 12:54:32 -040071 struct udevice *timer; /* Timer instance for Driver Model */
Thomas Chouc8a7ba92015-10-09 13:46:34 +080072#endif
Simon Glass6494d702014-02-26 15:59:18 -070073
Robert P. J. Day2adbc172016-09-01 12:54:32 -040074 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 Glass5e060d82017-05-18 20:08:53 -060077#ifdef CONFIG_OF_LIVE
78 struct device_node *of_root;
79#endif
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +010080
81#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
82 const void *multi_dtb_fit; /* uncompressed multi-dtb FIT image */
83#endif
Martin Dorwig49cad542015-01-26 15:22:54 -070084 struct jt_funcs *jt; /* jump table */
Simon Glass00caae62017-08-03 12:22:12 -060085 char env_buf[32]; /* buffer for env_get() before reloc. */
Simon Glass71c52db2013-06-11 11:14:42 -070086#ifdef CONFIG_TRACE
87 void *trace_buff; /* The trace buffer */
88#endif
Heiko Schocher385c9ef2012-01-16 21:12:23 +000089#if defined(CONFIG_SYS_I2C)
90 int cur_i2c_bus; /* current used i2c bus */
91#endif
York Sundec18612014-02-10 14:02:52 -080092#ifdef CONFIG_SYS_I2C_MXC
93 void *srdata[10];
94#endif
Peng Fan25112102017-05-09 10:32:03 +080095 unsigned int timebase_h;
96 unsigned int timebase_l;
Andy Yanf1896c42017-07-24 17:43:34 +080097#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassd59476b2014-07-10 22:23:28 -060098 unsigned long malloc_base; /* base address of early malloc() */
99 unsigned long malloc_limit; /* limit address */
100 unsigned long malloc_ptr; /* current address */
101#endif
Bin Meng8f9052f2014-12-30 22:53:21 +0800102#ifdef CONFIG_PCI
103 struct pci_controller *hose; /* PCI hose for early use */
Simon Glassb9da5082015-07-03 18:28:27 -0600104 phys_addr_t pci_ram_top; /* top of region accessible to PCI */
Bin Meng8f9052f2014-12-30 22:53:21 +0800105#endif
106#ifdef CONFIG_PCI_BOOTDELAY
107 int pcidelay_done;
108#endif
Simon Glass469a5792014-11-10 18:00:20 -0700109 struct udevice *cur_serial_dev; /* current serial device */
Simon Glass2212e692015-08-17 09:28:44 -0600110 struct arch_global_data arch; /* architecture-specific data */
Simon Glass9854a872015-11-08 23:47:48 -0700111#ifdef CONFIG_CONSOLE_RECORD
112 struct membuff console_out; /* console output */
113 struct membuff console_in; /* console input */
114#endif
Simon Glass5a541942016-01-18 19:52:21 -0700115#ifdef CONFIG_DM_VIDEO
116 ulong video_top; /* Top of video frame buffer area */
117 ulong video_bottom; /* Bottom of video frame buffer area */
118#endif
Simon Glassb383d6c2017-05-22 05:05:25 -0600119#ifdef CONFIG_BOOTSTAGE
120 struct bootstage_data *bootstage; /* Bootstage information */
Simon Glass25e7dc62017-05-22 05:05:30 -0600121 struct bootstage_data *new_bootstage; /* Relocated bootstage info */
Simon Glassb383d6c2017-05-22 05:05:25 -0600122#endif
Simon Glasse9c8d492017-12-04 13:48:24 -0700123#ifdef CONFIG_LOG
124 int log_drop_count; /* Number of dropped log messages */
125 int default_log_level; /* For devices with no filters */
126 struct list_head log_head; /* List of struct log_device */
Simon Glass3b73e8d2017-12-28 13:14:17 -0700127 int log_fmt; /* Mask containing log format info */
Simon Glasse9c8d492017-12-04 13:48:24 -0700128#endif
Simon Glassf0293d32018-11-15 18:43:52 -0700129#if CONFIG_IS_ENABLED(BLOBLIST)
130 struct bloblist_hdr *bloblist; /* Bloblist information */
131 struct bloblist_hdr *new_bloblist; /* Relocated blolist info */
Simon Glassb0edea32018-11-15 18:44:09 -0700132# ifdef CONFIG_SPL
133 struct spl_handoff *spl_handoff;
134# endif
Simon Glassf0293d32018-11-15 18:43:52 -0700135#endif
Simon Glass50b1fa32012-12-13 20:49:12 +0000136} gd_t;
137#endif
138
Simon Glass52c41182017-03-31 08:40:24 -0600139#ifdef CONFIG_BOARD_TYPES
140#define gd_board_type() gd->board_type
141#else
142#define gd_board_type() 0
143#endif
144
Simon Glass50b1fa32012-12-13 20:49:12 +0000145/*
Simon Glassb0b403d2015-07-31 09:31:27 -0600146 * Global Data Flags - the top 16 bits are reserved for arch-specific flags
Simon Glass50b1fa32012-12-13 20:49:12 +0000147 */
148#define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */
149#define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */
150#define GD_FLG_SILENT 0x00004 /* Silent mode */
151#define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */
152#define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */
153#define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */
154#define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */
155#define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */
Simon Glass093f79a2014-07-23 06:55:07 -0600156#define GD_FLG_SERIAL_READY 0x00100 /* Pre-reloc serial console ready */
Simon Glassc9356be2014-11-10 17:16:43 -0700157#define GD_FLG_FULL_MALLOC_INIT 0x00200 /* Full malloc() is ready */
Simon Glass070d00b2015-06-23 15:39:10 -0600158#define GD_FLG_SPL_INIT 0x00400 /* spl_init() has been called */
Robert P. J. Day2adbc172016-09-01 12:54:32 -0400159#define GD_FLG_SKIP_RELOC 0x00800 /* Don't relocate */
160#define GD_FLG_RECORD 0x01000 /* Record console */
161#define GD_FLG_ENV_DEFAULT 0x02000 /* Default variable flag */
Eddie Cai340f4182017-03-15 08:43:28 -0600162#define GD_FLG_SPL_EARLY_INIT 0x04000 /* Early SPL init is done */
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700163#define GD_FLG_LOG_READY 0x08000 /* Log system is ready for use */
Simon Glass50b1fa32012-12-13 20:49:12 +0000164
165#endif /* __ASM_GENERIC_GBL_DATA_H */