Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The Chromium OS Authors. |
| 3 | * (C) Copyright 2002-2010 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 7 | */ |
| 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 Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 24 | #include <membuff.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 25 | #include <linux/list.h> |
| 26 | |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 27 | typedef struct global_data { |
| 28 | bd_t *bd; |
| 29 | unsigned long flags; |
Simon Glass | b5bec88 | 2013-03-05 14:40:05 +0000 | [diff] [blame] | 30 | unsigned int baudrate; |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 31 | unsigned long cpu_clk; /* CPU clock in Hz! */ |
| 32 | 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) |
| 37 | unsigned long fb_base; /* Base address of framebuffer mem */ |
| 38 | #endif |
| 39 | #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER) |
| 40 | 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 */ |
| 43 | #endif |
| 44 | #ifdef CONFIG_BOARD_TYPES |
| 45 | unsigned long board_type; |
| 46 | #endif |
| 47 | unsigned long have_console; /* serial_init() was called */ |
| 48 | #ifdef CONFIG_PRE_CONSOLE_BUFFER |
| 49 | unsigned long precon_buf_idx; /* Pre-Console buffer index */ |
| 50 | #endif |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 51 | unsigned long env_addr; /* Address of Environment struct */ |
| 52 | unsigned long env_valid; /* Checksum of Environment valid? */ |
| 53 | |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 54 | unsigned long ram_top; /* Top address of RAM used by U-Boot */ |
| 55 | |
| 56 | unsigned long relocaddr; /* Start address of U-Boot in RAM */ |
| 57 | phys_size_t ram_size; /* RAM size */ |
York Sun | e814952 | 2015-12-04 11:57:07 -0800 | [diff] [blame] | 58 | #ifdef CONFIG_SYS_MEM_RESERVE_SECURE |
| 59 | #define MEM_RESERVE_SECURE_SECURED 0x1 |
| 60 | #define MEM_RESERVE_SECURE_MAINTAINED 0x2 |
| 61 | #define MEM_RESERVE_SECURE_ADDR_MASK (~0x3) |
| 62 | /* |
| 63 | * Secure memory addr |
| 64 | * This variable needs maintenance if the RAM base is not zero, |
| 65 | * or if RAM splits into non-consecutive banks. It also has a |
| 66 | * flag indicating the secure memory is marked as secure by MMU. |
| 67 | * Flags used: 0x1 secured |
| 68 | * 0x2 maintained |
| 69 | */ |
| 70 | phys_addr_t secure_ram; |
| 71 | #endif |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 72 | unsigned long mon_len; /* monitor len */ |
| 73 | unsigned long irq_sp; /* irq stack pointer */ |
| 74 | unsigned long start_addr_sp; /* start_addr_stackpointer */ |
| 75 | unsigned long reloc_off; |
| 76 | struct global_data *new_gd; /* relocated global data */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 77 | |
| 78 | #ifdef CONFIG_DM |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 79 | struct udevice *dm_root; /* Root instance for Driver Model */ |
| 80 | struct udevice *dm_root_f; /* Pre-relocation root instance */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 81 | struct list_head uclass_root; /* Head of core tree */ |
| 82 | #endif |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 83 | #ifdef CONFIG_TIMER |
| 84 | struct udevice *timer; /* Timer instance for Driver Model */ |
| 85 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 86 | |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 87 | const void *fdt_blob; /* Our device tree, NULL if none */ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 88 | void *new_fdt; /* Relocated FDT */ |
| 89 | unsigned long fdt_size; /* Space reserved for relocated FDT */ |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 90 | struct jt_funcs *jt; /* jump table */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 91 | char env_buf[32]; /* buffer for getenv() before reloc. */ |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 92 | #ifdef CONFIG_TRACE |
| 93 | void *trace_buff; /* The trace buffer */ |
| 94 | #endif |
Heiko Schocher | 385c9ef | 2012-01-16 21:12:23 +0000 | [diff] [blame] | 95 | #if defined(CONFIG_SYS_I2C) |
| 96 | int cur_i2c_bus; /* current used i2c bus */ |
| 97 | #endif |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_I2C_MXC |
| 99 | void *srdata[10]; |
| 100 | #endif |
Rob Herring | 8dfafdd | 2013-10-04 10:22:41 -0500 | [diff] [blame] | 101 | unsigned long timebase_h; |
| 102 | unsigned long timebase_l; |
Simon Glass | d59476b | 2014-07-10 22:23:28 -0600 | [diff] [blame] | 103 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
| 104 | unsigned long malloc_base; /* base address of early malloc() */ |
| 105 | unsigned long malloc_limit; /* limit address */ |
| 106 | unsigned long malloc_ptr; /* current address */ |
| 107 | #endif |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 108 | #ifdef CONFIG_PCI |
| 109 | struct pci_controller *hose; /* PCI hose for early use */ |
Simon Glass | b9da508 | 2015-07-03 18:28:27 -0600 | [diff] [blame] | 110 | phys_addr_t pci_ram_top; /* top of region accessible to PCI */ |
Bin Meng | 8f9052f | 2014-12-30 22:53:21 +0800 | [diff] [blame] | 111 | #endif |
| 112 | #ifdef CONFIG_PCI_BOOTDELAY |
| 113 | int pcidelay_done; |
| 114 | #endif |
Simon Glass | 469a579 | 2014-11-10 18:00:20 -0700 | [diff] [blame] | 115 | struct udevice *cur_serial_dev; /* current serial device */ |
Simon Glass | 2212e69 | 2015-08-17 09:28:44 -0600 | [diff] [blame] | 116 | struct arch_global_data arch; /* architecture-specific data */ |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_CONSOLE_RECORD |
| 118 | struct membuff console_out; /* console output */ |
| 119 | struct membuff console_in; /* console input */ |
| 120 | #endif |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 121 | #ifdef CONFIG_DM_VIDEO |
| 122 | ulong video_top; /* Top of video frame buffer area */ |
| 123 | ulong video_bottom; /* Bottom of video frame buffer area */ |
| 124 | #endif |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 125 | } gd_t; |
| 126 | #endif |
| 127 | |
| 128 | /* |
Simon Glass | b0b403d | 2015-07-31 09:31:27 -0600 | [diff] [blame] | 129 | * 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] | 130 | */ |
| 131 | #define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */ |
| 132 | #define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */ |
| 133 | #define GD_FLG_SILENT 0x00004 /* Silent mode */ |
| 134 | #define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */ |
| 135 | #define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */ |
| 136 | #define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */ |
| 137 | #define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */ |
| 138 | #define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */ |
Simon Glass | 093f79a | 2014-07-23 06:55:07 -0600 | [diff] [blame] | 139 | #define GD_FLG_SERIAL_READY 0x00100 /* Pre-reloc serial console ready */ |
Simon Glass | c9356be | 2014-11-10 17:16:43 -0700 | [diff] [blame] | 140 | #define GD_FLG_FULL_MALLOC_INIT 0x00200 /* Full malloc() is ready */ |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 141 | #define GD_FLG_SPL_INIT 0x00400 /* spl_init() has been called */ |
Simon Glass | f05ad9b | 2015-08-04 12:33:39 -0600 | [diff] [blame] | 142 | #define GD_FLG_SKIP_RELOC 0x00800 /* Don't relocate */ |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 143 | #define GD_FLG_RECORD 0x01000 /* Record console */ |
Simon Glass | 50b1fa3 | 2012-12-13 20:49:12 +0000 | [diff] [blame] | 144 | |
| 145 | #endif /* __ASM_GENERIC_GBL_DATA_H */ |