1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2012 The Chromium OS Authors.
4  * (C) Copyright 2002-2010
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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__
23 #include <membuff.h>
24 #include <linux/list.h>
25 
26 typedef struct global_data {
27 	bd_t *bd;
28 	unsigned long flags;
29 	unsigned int baudrate;
30 	unsigned long cpu_clk;		/* CPU clock in Hz!		*/
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)
36 	unsigned long fb_base;		/* Base address of framebuffer mem */
37 #endif
38 #if defined(CONFIG_POST)
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 */
42 #endif
43 #ifdef CONFIG_BOARD_TYPES
44 	unsigned long board_type;
45 #endif
46 	unsigned long have_console;	/* serial_init() was called */
47 #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
48 	unsigned long precon_buf_idx;	/* Pre-Console buffer index */
49 #endif
50 	unsigned long env_addr;		/* Address  of Environment struct */
51 	unsigned long env_valid;	/* Environment valid? enum env_valid */
52 	unsigned long env_has_init;	/* Bitmask of boolean of struct env_location offsets */
53 	int env_load_prio;		/* Priority of the loaded environment */
54 
55 	unsigned long ram_base;		/* Base address of RAM used by U-Boot */
56 	unsigned long ram_top;		/* Top address of RAM used by U-Boot */
57 	unsigned long relocaddr;	/* Start address of U-Boot in RAM */
58 	phys_size_t ram_size;		/* RAM size */
59 	unsigned long mon_len;		/* monitor len */
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 */
64 
65 #ifdef CONFIG_DM
66 	struct udevice	*dm_root;	/* Root instance for Driver Model */
67 	struct udevice	*dm_root_f;	/* Pre-relocation root instance */
68 	struct list_head uclass_root;	/* Head of core tree */
69 #endif
70 #ifdef CONFIG_TIMER
71 	struct udevice	*timer;		/* Timer instance for Driver Model */
72 #endif
73 
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 */
77 #ifdef CONFIG_OF_LIVE
78 	struct device_node *of_root;
79 #endif
80 
81 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
82 	const void *multi_dtb_fit;	/* uncompressed multi-dtb FIT image */
83 #endif
84 	struct jt_funcs *jt;		/* jump table */
85 	char env_buf[32];		/* buffer for env_get() before reloc. */
86 #ifdef CONFIG_TRACE
87 	void		*trace_buff;	/* The trace buffer */
88 #endif
89 #if defined(CONFIG_SYS_I2C)
90 	int		cur_i2c_bus;	/* current used i2c bus */
91 #endif
92 #ifdef CONFIG_SYS_I2C_MXC
93 	void *srdata[10];
94 #endif
95 	unsigned int timebase_h;
96 	unsigned int timebase_l;
97 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
98 	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
102 #ifdef CONFIG_PCI
103 	struct pci_controller *hose;	/* PCI hose for early use */
104 	phys_addr_t pci_ram_top;	/* top of region accessible to PCI */
105 #endif
106 #ifdef CONFIG_PCI_BOOTDELAY
107 	int pcidelay_done;
108 #endif
109 	struct udevice *cur_serial_dev;	/* current serial device */
110 	struct arch_global_data arch;	/* architecture-specific data */
111 #ifdef CONFIG_CONSOLE_RECORD
112 	struct membuff console_out;	/* console output */
113 	struct membuff console_in;	/* console input */
114 #endif
115 #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
119 #ifdef CONFIG_BOOTSTAGE
120 	struct bootstage_data *bootstage;	/* Bootstage information */
121 	struct bootstage_data *new_bootstage;	/* Relocated bootstage info */
122 #endif
123 #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 */
127 	int log_fmt;			/* Mask containing log format info */
128 #endif
129 #if CONFIG_IS_ENABLED(BLOBLIST)
130 	struct bloblist_hdr *bloblist;	/* Bloblist information */
131 	struct bloblist_hdr *new_bloblist;	/* Relocated blolist info */
132 # ifdef CONFIG_SPL
133 	struct spl_handoff *spl_handoff;
134 # endif
135 #endif
136 } gd_t;
137 #endif
138 
139 #ifdef CONFIG_BOARD_TYPES
140 #define gd_board_type()		gd->board_type
141 #else
142 #define gd_board_type()		0
143 #endif
144 
145 /*
146  * Global Data Flags - the top 16 bits are reserved for arch-specific flags
147  */
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   */
156 #define GD_FLG_SERIAL_READY	0x00100	/* Pre-reloc serial console ready  */
157 #define GD_FLG_FULL_MALLOC_INIT	0x00200	/* Full malloc() is ready	   */
158 #define GD_FLG_SPL_INIT		0x00400	/* spl_init() has been called	   */
159 #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	   */
162 #define GD_FLG_SPL_EARLY_INIT	0x04000 /* Early SPL init is done	   */
163 #define GD_FLG_LOG_READY	0x08000 /* Log system is ready for use	   */
164 
165 #endif /* __ASM_GENERIC_GBL_DATA_H */
166