blob: 2d9a0c9e75dd65f1cec3dfc39261f34f71933912 [file] [log] [blame]
wdenk6069ff22003-02-28 00:49:47 +00001/*
Wolfgang Denk91a76752010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
wdenk6069ff22003-02-28 00:49: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+
wdenk6069ff22003-02-28 00:49:47 +00006 */
7
8#ifndef __ASM_GBL_DATA_H
9#define __ASM_GBL_DATA_H
10
11#include <asm/regdef.h>
12
Simon Glass5cb48582012-12-13 20:48:30 +000013/* Architecture-specific global data */
14struct arch_global_data {
Simon Glass035cbe92012-12-13 20:49:08 +000015#ifdef CONFIG_JZSOC
16 /* There are other clocks in the jz4740 */
17 unsigned long per_clk; /* Peripheral bus clock */
18 unsigned long dev_clk; /* Device clock */
Daniel Schwierzeck97b920d2013-02-12 22:22:12 +010019 unsigned long sys_clk;
20 unsigned long tbl;
21 unsigned long lastinc;
Simon Glass035cbe92012-12-13 20:49:08 +000022#endif
Simon Glass5cb48582012-12-13 20:48:30 +000023};
24
Simon Glass95722022012-12-13 20:49:19 +000025#include <asm-generic/global_data.h>
wdenk6069ff22003-02-28 00:49:47 +000026
wdenk27b207f2003-07-24 23:38:38 +000027#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("k0")
wdenk6069ff22003-02-28 00:49:47 +000028
29#endif /* __ASM_GBL_DATA_H */