]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/global_data.h
armv8/fsl-lsch3: Add support for second DDR clock
[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 #ifdef CONFIG_FSL_LSCH3
56         unsigned long mem2_clk;
57 #endif
58 };
59
60 #include <asm-generic/global_data.h>
61
62 #ifdef __clang__
63
64 #define DECLARE_GLOBAL_DATA_PTR
65 #define gd      get_gd()
66
67 static inline gd_t *get_gd(void)
68 {
69         gd_t *gd_ptr;
70
71 #ifdef CONFIG_ARM64
72         /*
73          * Make will already error that reserving x18 is not supported at the
74          * time of writing, clang: error: unknown argument: '-ffixed-x18'
75          */
76         __asm__ volatile("mov %0, x18\n" : "=r" (gd_ptr));
77 #else
78         __asm__ volatile("mov %0, r9\n" : "=r" (gd_ptr));
79 #endif
80
81         return gd_ptr;
82 }
83
84 #else
85
86 #ifdef CONFIG_ARM64
87 #define DECLARE_GLOBAL_DATA_PTR         register volatile gd_t *gd asm ("x18")
88 #else
89 #define DECLARE_GLOBAL_DATA_PTR         register volatile gd_t *gd asm ("r9")
90 #endif
91 #endif
92
93 #endif /* __ASM_GBL_DATA_H */