blob: c69d0646f58099caf2e9f664bcaf0ce4cc30fe7e [file] [log] [blame]
wdenk0157ced2002-10-21 17:04:47 +00001/*
Wolfgang Denk91a76752010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
wdenk0157ced2002-10-21 17:04:47 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk0157ced2002-10-21 17:04:47 +00006 */
7
8#ifndef __ASM_GBL_DATA_H
9#define __ASM_GBL_DATA_H
Simon Glass5cb48582012-12-13 20:48:30 +000010
SRICHARAN Rfda06812013-04-24 00:41:23 +000011#ifdef CONFIG_OMAP
12#include <asm/omap_boot.h>
13#endif
14
Simon Glass5cb48582012-12-13 20:48:30 +000015/* Architecture-specific global data */
16struct arch_global_data {
Simon Glasse9adeca2012-12-13 20:49:05 +000017#if defined(CONFIG_FSL_ESDHC)
18 u32 sdhc_clk;
19#endif
Simon Glassf47e6ec2012-12-13 20:48:31 +000020#ifdef CONFIG_AT91FAMILY
21 /* "static data" needed by at91's clock.c */
22 unsigned long cpu_clk_rate_hz;
23 unsigned long main_clk_rate_hz;
24 unsigned long mck_rate_hz;
25 unsigned long plla_rate_hz;
26 unsigned long pllb_rate_hz;
27 unsigned long at91_pllb_usb_init;
28#endif
Simon Glassb3390512012-12-13 20:48:32 +000029 /* "static data" needed by most of timer.c on ARM platforms */
30 unsigned long timer_rate_hz;
Simon Glass8ff43b02012-12-13 20:48:33 +000031 unsigned long tbu;
Simon Glass66ee6922012-12-13 20:48:34 +000032 unsigned long tbl;
Simon Glass582601d2012-12-13 20:48:35 +000033 unsigned long lastinc;
Simon Glass5f707142012-12-13 20:48:36 +000034 unsigned long long timer_reset_value;
Simon Glass34fd5d22012-12-13 20:48:39 +000035#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
36 unsigned long tlb_addr;
37 unsigned long tlb_size;
38#endif
SRICHARAN Rfda06812013-04-24 00:41:23 +000039
40#ifdef CONFIG_OMAP
41 struct omap_boot_parameters omap_boot_params;
42#endif
Simon Glass5cb48582012-12-13 20:48:30 +000043};
44
Simon Glassbaa1e532012-12-13 20:49:14 +000045#include <asm-generic/global_data.h>
wdenk0157ced2002-10-21 17:04:47 +000046
Jeroen Hofsteec65a2ab2014-07-30 21:54:52 +020047#ifdef __clang__
48
49#define DECLARE_GLOBAL_DATA_PTR
50#define gd get_gd()
51
52static inline gd_t *get_gd(void)
53{
54 gd_t *gd_ptr;
55
56#ifdef CONFIG_ARM64
57 /*
58 * Make will already error that reserving x18 is not supported at the
59 * time of writing, clang: error: unknown argument: '-ffixed-x18'
60 */
61 __asm__ volatile("mov %0, x18\n" : "=r" (gd_ptr));
62#else
63 __asm__ volatile("mov %0, r9\n" : "=r" (gd_ptr));
64#endif
65
66 return gd_ptr;
67}
68
69#else
70
David Feng0ae76532013-12-14 11:47:35 +080071#ifdef CONFIG_ARM64
72#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("x18")
73#else
74#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r9")
75#endif
Jeroen Hofsteec65a2ab2014-07-30 21:54:52 +020076#endif
wdenk0157ced2002-10-21 17:04:47 +000077
78#endif /* __ASM_GBL_DATA_H */