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