blob: a1ca257db593a94f4cc7afedf2eaa1282315ca58 [file] [log] [blame]
wdenk4fc95692003-02-28 00:49:47 +00001/*
Wolfgang Denkf710efd2010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
wdenk4fc95692003-02-28 00:49:47 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk4fc95692003-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 Glass3ac47d72012-12-13 20:48:30 +000013/* Architecture-specific global data */
14struct arch_global_data {
Paul Burton8d6600b2016-01-29 13:54:52 +000015#ifdef CONFIG_DYNAMIC_IO_PORT_BASE
16 unsigned long io_port_base;
17#endif
Simon Glass988e2962012-12-13 20:49:08 +000018#ifdef CONFIG_JZSOC
19 /* There are other clocks in the jz4740 */
20 unsigned long per_clk; /* Peripheral bus clock */
21 unsigned long dev_clk; /* Device clock */
Daniel Schwierzeck2fb7bd32013-02-12 22:22:12 +010022 unsigned long sys_clk;
23 unsigned long tbl;
24 unsigned long lastinc;
Simon Glass988e2962012-12-13 20:49:08 +000025#endif
Simon Glass3ac47d72012-12-13 20:48:30 +000026};
27
Simon Glass9b9ba9a2012-12-13 20:49:19 +000028#include <asm-generic/global_data.h>
wdenk4fc95692003-02-28 00:49:47 +000029
wdenk874ac262003-07-24 23:38:38 +000030#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("k0")
wdenk4fc95692003-02-28 00:49:47 +000031
32#endif /* __ASM_GBL_DATA_H */