blob: 37ac0daa70b05c1aedfcaf6a6251117e28ab6ead [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 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __ASM_GBL_DATA_H
25#define __ASM_GBL_DATA_H
Simon Glass5cb48582012-12-13 20:48:30 +000026
27/* Architecture-specific global data */
28struct arch_global_data {
Simon Glasse9adeca2012-12-13 20:49:05 +000029#if defined(CONFIG_FSL_ESDHC)
30 u32 sdhc_clk;
31#endif
Simon Glassf47e6ec2012-12-13 20:48:31 +000032#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
Simon Glassb3390512012-12-13 20:48:32 +000041 /* "static data" needed by most of timer.c on ARM platforms */
42 unsigned long timer_rate_hz;
Simon Glass8ff43b02012-12-13 20:48:33 +000043 unsigned long tbu;
Simon Glass66ee6922012-12-13 20:48:34 +000044 unsigned long tbl;
Simon Glass582601d2012-12-13 20:48:35 +000045 unsigned long lastinc;
Simon Glass5f707142012-12-13 20:48:36 +000046 unsigned long long timer_reset_value;
Simon Glassb4d51db2012-12-13 20:48:37 +000047#ifdef CONFIG_IXP425
48 unsigned long timestamp;
49#endif
Simon Glass34fd5d22012-12-13 20:48:39 +000050#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
51 unsigned long tlb_addr;
52 unsigned long tlb_size;
53#endif
Simon Glass5cb48582012-12-13 20:48:30 +000054};
55
Simon Glassbaa1e532012-12-13 20:49:14 +000056#include <asm-generic/global_data.h>
wdenk0157ced2002-10-21 17:04:47 +000057
Wolfgang Denk0be248f2006-03-07 00:22:36 +010058#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r8")
wdenk0157ced2002-10-21 17:04:47 +000059
60#endif /* __ASM_GBL_DATA_H */