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