Macpaul Lin | 0b9b59a | 2011-10-11 22:33:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * Copyright (C) 2011 Andes Technology Corporation |
| 6 | * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com> |
| 7 | * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> |
| 8 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Macpaul Lin | 0b9b59a | 2011-10-11 22:33:15 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /************************************************************** |
| 13 | * CAUTION: |
| 14 | * - do not implement for NDS32 Arch yet. |
| 15 | * - so far no one uses the macros defined in this head file. |
| 16 | **************************************************************/ |
| 17 | |
| 18 | #ifndef __ASM_GBL_DATA_H |
| 19 | #define __ASM_GBL_DATA_H |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 20 | |
| 21 | /* Architecture-specific global data */ |
| 22 | struct arch_global_data { |
| 23 | }; |
| 24 | |
Simon Glass | f62b94d | 2012-12-13 20:49:20 +0000 | [diff] [blame] | 25 | #include <asm-generic/global_data.h> |
Macpaul Lin | 0b9b59a | 2011-10-11 22:33:15 +0000 | [diff] [blame] | 26 | |
| 27 | #ifdef CONFIG_GLOBAL_DATA_NOT_REG10 |
| 28 | extern volatile gd_t g_gd; |
| 29 | #define DECLARE_GLOBAL_DATA_PTR static volatile gd_t *gd = &g_gd |
| 30 | #else |
| 31 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("$r10") |
| 32 | #endif |
| 33 | |
| 34 | #endif /* __ASM_GBL_DATA_H */ |