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