blob: d6a2cfab4f9e58444dd4fcfc21248e5b8df16435 [file] [log] [blame]
wdenkef3386f2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkef3386f2004-10-10 21:27:30 +00006 */
7#ifndef __ASM_NIOS2_GLOBALDATA_H_
8#define __ASM_NIOS2_GLOBALDATA_H_
9
Simon Glass3ac47d72012-12-13 20:48:30 +000010/* Architecture-specific global data */
11struct arch_global_data {
Thomas Chouc6170262015-10-21 21:34:57 +080012 u32 dcache_line_size;
13 u32 icache_line_size;
14 u32 dcache_size;
15 u32 icache_size;
16 u32 reset_addr;
17 u32 exception_addr;
18 int has_initda;
19 int has_mmu;
20 u32 io_region_base;
Simon Glass3ac47d72012-12-13 20:48:30 +000021};
22
Simon Glass123122a2012-12-13 20:49:21 +000023#include <asm-generic/global_data.h>
wdenkef3386f2004-10-10 21:27:30 +000024
Thomas Chou8fa38582010-05-21 11:08:03 +080025#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
wdenkef3386f2004-10-10 21:27:30 +000026
27#endif /* __ASM_NIOS2_GLOBALDATA_H_ */