2002-10-21 17:04:47 +00:00
|
|
|
/*
|
2010-07-24 18:22:02 +00:00
|
|
|
* (C) Copyright 2002-2010
|
2002-10-21 17:04:47 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-10-21 17:04:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
|
|
#define __ASM_GBL_DATA_H
|
2012-12-13 20:48:30 +00:00
|
|
|
|
2013-04-24 00:41:23 +00:00
|
|
|
#ifdef CONFIG_OMAP
|
|
|
|
#include <asm/omap_boot.h>
|
|
|
|
#endif
|
|
|
|
|
2012-12-13 20:48:30 +00:00
|
|
|
/* Architecture-specific global data */
|
|
|
|
struct arch_global_data {
|
2012-12-13 20:49:05 +00:00
|
|
|
#if defined(CONFIG_FSL_ESDHC)
|
|
|
|
u32 sdhc_clk;
|
|
|
|
#endif
|
2012-12-13 20:48:31 +00:00
|
|
|
#ifdef CONFIG_AT91FAMILY
|
|
|
|
/* "static data" needed by at91's clock.c */
|
|
|
|
unsigned long cpu_clk_rate_hz;
|
|
|
|
unsigned long main_clk_rate_hz;
|
|
|
|
unsigned long mck_rate_hz;
|
|
|
|
unsigned long plla_rate_hz;
|
|
|
|
unsigned long pllb_rate_hz;
|
|
|
|
unsigned long at91_pllb_usb_init;
|
|
|
|
#endif
|
2012-12-13 20:48:32 +00:00
|
|
|
/* "static data" needed by most of timer.c on ARM platforms */
|
|
|
|
unsigned long timer_rate_hz;
|
2012-12-13 20:48:33 +00:00
|
|
|
unsigned long tbu;
|
2012-12-13 20:48:34 +00:00
|
|
|
unsigned long tbl;
|
2012-12-13 20:48:35 +00:00
|
|
|
unsigned long lastinc;
|
2012-12-13 20:48:36 +00:00
|
|
|
unsigned long long timer_reset_value;
|
2012-12-13 20:48:39 +00:00
|
|
|
#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
|
|
|
|
unsigned long tlb_addr;
|
|
|
|
unsigned long tlb_size;
|
|
|
|
#endif
|
2013-04-24 00:41:23 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_OMAP
|
|
|
|
struct omap_boot_parameters omap_boot_params;
|
|
|
|
#endif
|
2012-12-13 20:48:30 +00:00
|
|
|
};
|
|
|
|
|
2012-12-13 20:49:14 +00:00
|
|
|
#include <asm-generic/global_data.h>
|
2002-10-21 17:04:47 +00:00
|
|
|
|
2013-12-14 03:47:35 +00:00
|
|
|
#ifdef CONFIG_ARM64
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("x18")
|
|
|
|
#else
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r9")
|
|
|
|
#endif
|
2002-10-21 17:04:47 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|