Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 2 | /* |
Wolfgang Denk | f710efd | 2010-07-24 20:22:02 +0200 | [diff] [blame] | 3 | * (C) Copyright 2002-2010 |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_GBL_DATA_H |
| 8 | #define __ASM_GBL_DATA_H |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 9 | |
Siew Chin Lim | 3dbd349 | 2021-02-23 14:34:37 +0800 | [diff] [blame] | 10 | #ifndef __ASSEMBLY__ |
| 11 | |
Tom Rini | 5dc7f61 | 2021-06-03 09:39:02 -0400 | [diff] [blame] | 12 | #include <config.h> |
| 13 | |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 16 | /* Architecture-specific global data */ |
| 17 | struct arch_global_data { |
Yangbo Lu | 7334038 | 2019-06-21 11:42:28 +0800 | [diff] [blame] | 18 | #if defined(CONFIG_FSL_ESDHC) || defined(CONFIG_FSL_ESDHC_IMX) |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 19 | u32 sdhc_clk; |
| 20 | #endif |
Heinrich Schuchardt | b10571a | 2023-12-19 16:04:02 +0100 | [diff] [blame] | 21 | #if CONFIG_IS_ENABLED(ACPI) |
| 22 | ulong table_start; /* Start address of ACPI tables */ |
| 23 | ulong table_end; /* End address of ACPI tables */ |
| 24 | ulong table_start_high; /* Start address of high ACPI tables */ |
| 25 | ulong table_end_high; /* End address of high ACPI tables */ |
| 26 | #endif |
Yangbo Lu | 0fa6876 | 2019-12-19 18:59:28 +0800 | [diff] [blame] | 27 | #if defined(CONFIG_FSL_ESDHC) |
| 28 | u32 sdhc_per_clk; |
| 29 | #endif |
| 30 | |
Zhao Qiang | 5ad9395 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 31 | #if defined(CONFIG_U_QE) |
| 32 | u32 qe_clk; |
| 33 | u32 brg_clk; |
| 34 | uint mp_alloc_base; |
| 35 | uint mp_alloc_top; |
| 36 | #endif /* CONFIG_U_QE */ |
| 37 | |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 38 | #ifdef CONFIG_AT91FAMILY |
| 39 | /* "static data" needed by at91's clock.c */ |
| 40 | unsigned long cpu_clk_rate_hz; |
| 41 | unsigned long main_clk_rate_hz; |
| 42 | unsigned long mck_rate_hz; |
| 43 | unsigned long plla_rate_hz; |
| 44 | unsigned long pllb_rate_hz; |
| 45 | unsigned long at91_pllb_usb_init; |
| 46 | #endif |
Simon Glass | 6ed6e03 | 2012-12-13 20:48:32 +0000 | [diff] [blame] | 47 | /* "static data" needed by most of timer.c on ARM platforms */ |
| 48 | unsigned long timer_rate_hz; |
Peng Fan | f2d397b | 2017-05-09 10:32:02 +0800 | [diff] [blame] | 49 | unsigned int tbu; |
| 50 | unsigned int tbl; |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 51 | unsigned long lastinc; |
Simon Glass | 9cbe003a | 2012-12-13 20:48:36 +0000 | [diff] [blame] | 52 | unsigned long long timer_reset_value; |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 53 | #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
Simon Glass | 6b4ee15 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 54 | unsigned long tlb_addr; |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 55 | unsigned long tlb_size; |
Alexander Graf | ce0a64e | 2016-03-04 01:09:54 +0100 | [diff] [blame] | 56 | #if defined(CONFIG_ARM64) |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 57 | unsigned long tlb_fillptr; |
| 58 | unsigned long tlb_emerg; |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 59 | #endif |
Simon Glass | 6b4ee15 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 60 | #endif |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 61 | #ifdef CFG_SYS_MEM_RESERVE_SECURE |
York Sun | 1ef95cc | 2016-06-24 16:46:18 -0700 | [diff] [blame] | 62 | #define MEM_RESERVE_SECURE_SECURED 0x1 |
| 63 | #define MEM_RESERVE_SECURE_MAINTAINED 0x2 |
| 64 | #define MEM_RESERVE_SECURE_ADDR_MASK (~0x3) |
| 65 | /* |
| 66 | * Secure memory addr |
| 67 | * This variable needs maintenance if the RAM base is not zero, |
| 68 | * or if RAM splits into non-consecutive banks. It also has a |
| 69 | * flag indicating the secure memory is marked as secure by MMU. |
| 70 | * Flags used: 0x1 secured |
| 71 | * 0x2 maintained |
| 72 | */ |
| 73 | phys_addr_t secure_ram; |
York Sun | f84f81e | 2016-06-24 16:46:19 -0700 | [diff] [blame] | 74 | unsigned long tlb_allocated; |
York Sun | 1ef95cc | 2016-06-24 16:46:18 -0700 | [diff] [blame] | 75 | #endif |
York Sun | d6964b3 | 2017-03-06 09:02:24 -0800 | [diff] [blame] | 76 | #ifdef CONFIG_RESV_RAM |
| 77 | /* |
| 78 | * Reserved RAM for memory resident, eg. Management Complex (MC) |
| 79 | * driver which continues to run after U-Boot exits. |
| 80 | */ |
| 81 | phys_addr_t resv_ram; |
| 82 | #endif |
SRICHARAN R | 4af1988 | 2013-04-24 00:41:23 +0000 | [diff] [blame] | 83 | |
Masahiro Yamada | 6e1288c | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 84 | #ifdef CONFIG_ARCH_OMAP2PLUS |
Paul Kocialkowski | d5b7624 | 2015-07-15 16:02:19 +0200 | [diff] [blame] | 85 | u32 omap_boot_device; |
| 86 | u32 omap_boot_mode; |
| 87 | u8 omap_ch_flags; |
SRICHARAN R | 4af1988 | 2013-04-24 00:41:23 +0000 | [diff] [blame] | 88 | #endif |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 89 | #if defined(CONFIG_FSL_LSCH3) && defined(CONFIG_SYS_FSL_HAS_DP_DDR) |
York Sun | 1ecab78 | 2015-01-06 13:18:49 -0800 | [diff] [blame] | 90 | unsigned long mem2_clk; |
| 91 | #endif |
Peng Fan | f17a0ce | 2018-10-18 14:28:10 +0200 | [diff] [blame] | 92 | |
| 93 | #ifdef CONFIG_ARCH_IMX8 |
| 94 | struct udevice *scu_dev; |
| 95 | #endif |
Ye Li | 0db17f4 | 2021-08-07 16:00:41 +0800 | [diff] [blame] | 96 | |
Peng Fan | d5c3183 | 2023-06-15 18:09:05 +0800 | [diff] [blame] | 97 | #ifdef CONFIG_IMX_ELE |
| 98 | struct udevice *ele_dev; |
Peng Fan | 3700c47 | 2022-07-26 16:40:56 +0800 | [diff] [blame] | 99 | u32 soc_rev; |
| 100 | u32 lifecycle; |
| 101 | u32 uid[4]; |
Ye Li | 0db17f4 | 2021-08-07 16:00:41 +0800 | [diff] [blame] | 102 | #endif |
| 103 | |
Ye Li | 80b3315 | 2023-01-31 16:42:17 +0800 | [diff] [blame] | 104 | #ifdef CONFIG_ARCH_IMX8ULP |
| 105 | bool m33_handshake_done; |
| 106 | #endif |
Simon Glass | 9b38810 | 2023-09-19 21:00:15 -0600 | [diff] [blame] | 107 | #ifdef CONFIG_SMBIOS |
| 108 | ulong smbios_start; /* Start address of SMBIOS table */ |
| 109 | #endif |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 110 | }; |
| 111 | |
Simon Glass | 6878cd1 | 2012-12-13 20:49:14 +0000 | [diff] [blame] | 112 | #include <asm-generic/global_data.h> |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 113 | |
Simon Glass | 6c8ec91 | 2022-08-03 12:13:08 -0600 | [diff] [blame] | 114 | #if defined(__clang__) || defined(LTO_ENABLE) |
Jeroen Hofstee | 43614d1 | 2014-07-30 21:54:52 +0200 | [diff] [blame] | 115 | |
| 116 | #define DECLARE_GLOBAL_DATA_PTR |
| 117 | #define gd get_gd() |
| 118 | |
| 119 | static inline gd_t *get_gd(void) |
| 120 | { |
| 121 | gd_t *gd_ptr; |
| 122 | |
| 123 | #ifdef CONFIG_ARM64 |
Jeroen Hofstee | 43614d1 | 2014-07-30 21:54:52 +0200 | [diff] [blame] | 124 | __asm__ volatile("mov %0, x18\n" : "=r" (gd_ptr)); |
| 125 | #else |
| 126 | __asm__ volatile("mov %0, r9\n" : "=r" (gd_ptr)); |
| 127 | #endif |
| 128 | |
| 129 | return gd_ptr; |
| 130 | } |
| 131 | |
| 132 | #else |
| 133 | |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 134 | #ifdef CONFIG_ARM64 |
| 135 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("x18") |
| 136 | #else |
| 137 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r9") |
| 138 | #endif |
Jeroen Hofstee | 43614d1 | 2014-07-30 21:54:52 +0200 | [diff] [blame] | 139 | #endif |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 140 | |
Heinrich Schuchardt | 1a3732c | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 141 | static inline void set_gd(volatile gd_t *gd_ptr) |
| 142 | { |
| 143 | #ifdef CONFIG_ARM64 |
| 144 | __asm__ volatile("ldr x18, %0\n" : : "m"(gd_ptr)); |
Marek BehĂșn | c2854e0 | 2021-05-20 13:24:09 +0200 | [diff] [blame] | 145 | #elif __ARM_ARCH >= 7 |
Heinrich Schuchardt | 1a3732c | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 146 | __asm__ volatile("ldr r9, %0\n" : : "m"(gd_ptr)); |
Marek BehĂșn | c2854e0 | 2021-05-20 13:24:09 +0200 | [diff] [blame] | 147 | #else |
| 148 | __asm__ volatile("mov r9, %0\n" : : "r"(gd_ptr)); |
Heinrich Schuchardt | 1a3732c | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 149 | #endif |
| 150 | } |
| 151 | |
Siew Chin Lim | 3dbd349 | 2021-02-23 14:34:37 +0800 | [diff] [blame] | 152 | #endif /* __ASSEMBLY__ */ |
| 153 | |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 154 | #endif /* __ASM_GBL_DATA_H */ |