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