wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | f710efd | 2010-07-24 20:22:02 +0200 | [diff] [blame] | 2 | * (C) Copyright 2002-2010 |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_GBL_DATA_H |
| 9 | #define __ASM_GBL_DATA_H |
| 10 | |
| 11 | #include <asm/regdef.h> |
| 12 | |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 13 | /* Architecture-specific global data */ |
| 14 | struct arch_global_data { |
Paul Burton | 8d6600b | 2016-01-29 13:54:52 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_DYNAMIC_IO_PORT_BASE |
| 16 | unsigned long io_port_base; |
| 17 | #endif |
Wills Wang | 833a1a8 | 2016-03-16 16:59:52 +0800 | [diff] [blame] | 18 | #ifdef CONFIG_ARCH_ATH79 |
| 19 | unsigned long id; |
| 20 | unsigned long soc; |
| 21 | unsigned long rev; |
| 22 | unsigned long ver; |
| 23 | #endif |
Paul Burton | dc2037e | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 24 | #ifdef CONFIG_SYS_CACHE_SIZE_AUTO |
| 25 | unsigned short l1i_line_size; |
| 26 | unsigned short l1d_line_size; |
| 27 | #endif |
Paul Burton | 8156078 | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 28 | #ifdef CONFIG_MIPS_L2_CACHE |
| 29 | unsigned short l2_line_size; |
| 30 | #endif |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 31 | }; |
| 32 | |
Simon Glass | 9b9ba9a | 2012-12-13 20:49:19 +0000 | [diff] [blame] | 33 | #include <asm-generic/global_data.h> |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 34 | |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 35 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("k0") |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 36 | |
| 37 | #endif /* __ASM_GBL_DATA_H */ |