]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/global_data.h
karo: merge with Ka-Ro specific tree for secure boot support
[karo-tx-uboot.git] / arch / arm / include / asm / global_data.h
1 /*
2  * (C) Copyright 2002-2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __ASM_GBL_DATA_H
9 #define __ASM_GBL_DATA_H
10
11 #ifdef CONFIG_OMAP
12 #include <asm/omap_boot.h>
13 #endif
14
15 /* Architecture-specific global data */
16 struct arch_global_data {
17 #if defined(CONFIG_FSL_ESDHC)
18         u32 sdhc_clk;
19 #endif
20
21 #if defined(CONFIG_U_QE)
22         u32 qe_clk;
23         u32 brg_clk;
24         uint mp_alloc_base;
25         uint mp_alloc_top;
26 #endif /* CONFIG_U_QE */
27
28 #ifdef CONFIG_VIDEO_IPUV3
29         unsigned int    ipu_hw_rev;
30 #endif
31
32 #ifdef CONFIG_AT91FAMILY
33         /* "static data" needed by at91's clock.c */
34         unsigned long   cpu_clk_rate_hz;
35         unsigned long   main_clk_rate_hz;
36         unsigned long   mck_rate_hz;
37         unsigned long   plla_rate_hz;
38         unsigned long   pllb_rate_hz;
39         unsigned long   at91_pllb_usb_init;
40 #endif
41         /* "static data" needed by most of timer.c on ARM platforms */
42         unsigned long timer_rate_hz;
43         unsigned long tbu;
44         unsigned long tbl;
45         unsigned long lastinc;
46         unsigned long long timer_reset_value;
47 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
48         unsigned long tlb_addr;
49         unsigned long tlb_size;
50 #endif
51
52 #ifdef CONFIG_OMAP
53         struct omap_boot_parameters omap_boot_params;
54 #endif
55 };
56
57 #include <asm-generic/global_data.h>
58
59 #ifdef __clang__
60
61 #define DECLARE_GLOBAL_DATA_PTR
62 #define gd      get_gd()
63
64 static inline gd_t *get_gd(void)
65 {
66         gd_t *gd_ptr;
67
68 #ifdef CONFIG_ARM64
69         /*
70          * Make will already error that reserving x18 is not supported at the
71          * time of writing, clang: error: unknown argument: '-ffixed-x18'
72          */
73         __asm__ volatile("mov %0, x18\n" : "=r" (gd_ptr));
74 #else
75         __asm__ volatile("mov %0, r9\n" : "=r" (gd_ptr));
76 #endif
77
78         return gd_ptr;
79 }
80
81 #else
82
83 #ifdef CONFIG_ARM64
84 #define DECLARE_GLOBAL_DATA_PTR         register volatile gd_t *gd asm ("x18")
85 #else
86 #define DECLARE_GLOBAL_DATA_PTR         register volatile gd_t *gd asm ("r9")
87 #endif
88 #endif
89
90 #endif /* __ASM_GBL_DATA_H */