blob: e02863dc0312ab6435d547cf138c9a59e83ef95c [file] [log] [blame]
Simon Glass50b1fa32012-12-13 20:49:12 +00001/*
2 * Copyright (c) 2012 The Chromium OS Authors.
3 * (C) Copyright 2002-2010
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Simon Glass50b1fa32012-12-13 20:49:12 +00007 */
8
9#ifndef __ASM_GENERIC_GBL_DATA_H
10#define __ASM_GENERIC_GBL_DATA_H
11/*
12 * The following data structure is placed in some memory which is
13 * available very early after boot (like DPRAM on MPC8xx/MPC82xx, or
14 * some locked parts of the data cache) to allow for a minimum set of
15 * global variables during system initialization (until we have set
16 * up the memory controller so that we can use RAM).
17 *
18 * Keep it *SMALL* and remember to set GENERATED_GBL_DATA_SIZE > sizeof(gd_t)
19 *
20 * Each architecture has its own private fields. For now all are private
21 */
22
23#ifndef __ASSEMBLY__
Simon Glass9854a872015-11-08 23:47:48 -070024#include <membuff.h>
Simon Glass6494d702014-02-26 15:59:18 -070025#include <linux/list.h>
26
Simon Glass50b1fa32012-12-13 20:49:12 +000027typedef struct global_data {
28 bd_t *bd;
29 unsigned long flags;
Simon Glassb5bec882013-03-05 14:40:05 +000030 unsigned int baudrate;
Robert P. J. Day2adbc172016-09-01 12:54:32 -040031 unsigned long cpu_clk; /* CPU clock in Hz! */
Simon Glass50b1fa32012-12-13 20:49:12 +000032 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;
36#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Robert P. J. Day2adbc172016-09-01 12:54:32 -040037 unsigned long fb_base; /* Base address of framebuffer mem */
Simon Glass50b1fa32012-12-13 20:49:12 +000038#endif
39#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
Robert P. J. Day2adbc172016-09-01 12:54:32 -040040 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 Glass50b1fa32012-12-13 20:49:12 +000043#endif
44#ifdef CONFIG_BOARD_TYPES
45 unsigned long board_type;
46#endif
47 unsigned long have_console; /* serial_init() was called */
Simon Glass8f925582016-10-17 20:12:36 -060048#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Simon Glass50b1fa32012-12-13 20:49:12 +000049 unsigned long precon_buf_idx; /* Pre-Console buffer index */
50#endif
Robert P. J. Day2adbc172016-09-01 12:54:32 -040051 unsigned long env_addr; /* Address of Environment struct */
Simon Glass50b1fa32012-12-13 20:49:12 +000052 unsigned long env_valid; /* Checksum of Environment valid? */
53
Robert P. J. Day2adbc172016-09-01 12:54:32 -040054 unsigned long ram_top; /* Top address of RAM used by U-Boot */
Simon Glass50b1fa32012-12-13 20:49:12 +000055 unsigned long relocaddr; /* Start address of U-Boot in RAM */
Robert P. J. Day2adbc172016-09-01 12:54:32 -040056 phys_size_t ram_size; /* RAM size */
57 unsigned long mon_len; /* monitor len */
Simon Glass50b1fa32012-12-13 20:49:12 +000058 unsigned long irq_sp; /* irq stack pointer */
59 unsigned long start_addr_sp; /* start_addr_stackpointer */
60 unsigned long reloc_off;
61 struct global_data *new_gd; /* relocated global data */
Simon Glass6494d702014-02-26 15:59:18 -070062
63#ifdef CONFIG_DM
Simon Glassab7cd622014-07-23 06:55:04 -060064 struct udevice *dm_root; /* Root instance for Driver Model */
65 struct udevice *dm_root_f; /* Pre-relocation root instance */
Simon Glass6494d702014-02-26 15:59:18 -070066 struct list_head uclass_root; /* Head of core tree */
67#endif
Thomas Chouc8a7ba92015-10-09 13:46:34 +080068#ifdef CONFIG_TIMER
Robert P. J. Day2adbc172016-09-01 12:54:32 -040069 struct udevice *timer; /* Timer instance for Driver Model */
Thomas Chouc8a7ba92015-10-09 13:46:34 +080070#endif
Simon Glass6494d702014-02-26 15:59:18 -070071
Robert P. J. Day2adbc172016-09-01 12:54:32 -040072 const void *fdt_blob; /* Our device tree, NULL if none */
73 void *new_fdt; /* Relocated FDT */
74 unsigned long fdt_size; /* Space reserved for relocated FDT */
Martin Dorwig49cad542015-01-26 15:22:54 -070075 struct jt_funcs *jt; /* jump table */
Robert P. J. Day2adbc172016-09-01 12:54:32 -040076 char env_buf[32]; /* buffer for getenv() before reloc. */
Simon Glass71c52db2013-06-11 11:14:42 -070077#ifdef CONFIG_TRACE
78 void *trace_buff; /* The trace buffer */
79#endif
Heiko Schocher385c9ef2012-01-16 21:12:23 +000080#if defined(CONFIG_SYS_I2C)
81 int cur_i2c_bus; /* current used i2c bus */
82#endif
York Sundec18612014-02-10 14:02:52 -080083#ifdef CONFIG_SYS_I2C_MXC
84 void *srdata[10];
85#endif
Rob Herring8dfafdd2013-10-04 10:22:41 -050086 unsigned long timebase_h;
87 unsigned long timebase_l;
Simon Glassd59476b2014-07-10 22:23:28 -060088#ifdef CONFIG_SYS_MALLOC_F_LEN
89 unsigned long malloc_base; /* base address of early malloc() */
90 unsigned long malloc_limit; /* limit address */
91 unsigned long malloc_ptr; /* current address */
92#endif
Bin Meng8f9052f2014-12-30 22:53:21 +080093#ifdef CONFIG_PCI
94 struct pci_controller *hose; /* PCI hose for early use */
Simon Glassb9da5082015-07-03 18:28:27 -060095 phys_addr_t pci_ram_top; /* top of region accessible to PCI */
Bin Meng8f9052f2014-12-30 22:53:21 +080096#endif
97#ifdef CONFIG_PCI_BOOTDELAY
98 int pcidelay_done;
99#endif
Simon Glass469a5792014-11-10 18:00:20 -0700100 struct udevice *cur_serial_dev; /* current serial device */
Simon Glass2212e692015-08-17 09:28:44 -0600101 struct arch_global_data arch; /* architecture-specific data */
Simon Glass9854a872015-11-08 23:47:48 -0700102#ifdef CONFIG_CONSOLE_RECORD
103 struct membuff console_out; /* console output */
104 struct membuff console_in; /* console input */
105#endif
Simon Glass5a541942016-01-18 19:52:21 -0700106#ifdef CONFIG_DM_VIDEO
107 ulong video_top; /* Top of video frame buffer area */
108 ulong video_bottom; /* Bottom of video frame buffer area */
109#endif
Simon Glass50b1fa32012-12-13 20:49:12 +0000110} gd_t;
111#endif
112
113/*
Simon Glassb0b403d2015-07-31 09:31:27 -0600114 * Global Data Flags - the top 16 bits are reserved for arch-specific flags
Simon Glass50b1fa32012-12-13 20:49:12 +0000115 */
116#define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */
117#define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */
118#define GD_FLG_SILENT 0x00004 /* Silent mode */
119#define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */
120#define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */
121#define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */
122#define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */
123#define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */
Simon Glass093f79a2014-07-23 06:55:07 -0600124#define GD_FLG_SERIAL_READY 0x00100 /* Pre-reloc serial console ready */
Simon Glassc9356be2014-11-10 17:16:43 -0700125#define GD_FLG_FULL_MALLOC_INIT 0x00200 /* Full malloc() is ready */
Simon Glass070d00b2015-06-23 15:39:10 -0600126#define GD_FLG_SPL_INIT 0x00400 /* spl_init() has been called */
Robert P. J. Day2adbc172016-09-01 12:54:32 -0400127#define GD_FLG_SKIP_RELOC 0x00800 /* Don't relocate */
128#define GD_FLG_RECORD 0x01000 /* Record console */
129#define GD_FLG_ENV_DEFAULT 0x02000 /* Default variable flag */
Simon Glass50b1fa32012-12-13 20:49:12 +0000130
131#endif /* __ASM_GENERIC_GBL_DATA_H */