blob: 428ce1b4debd44f2ff38b981c51e164a3d7dad03 [file] [log] [blame]
Stefan Kristianssonca9d3ab2011-11-26 19:04:49 +00001/*
2 * (C) Copyright 2004 Atmark Techno, Inc.
3 *
4 * Yasushi SHOJI <yashi@atmark-techno.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stefan Kristianssonca9d3ab2011-11-26 19:04:49 +00007 */
8
9#ifndef __ASM_GBL_DATA_H
10#define __ASM_GBL_DATA_H
Simon Glass5cb48582012-12-13 20:48:30 +000011
12/* Architecture-specific global data */
13struct arch_global_data {
14};
15
Simon Glass6f8b2852012-12-13 20:49:22 +000016#include <asm-generic/global_data.h>
Stefan Kristianssonca9d3ab2011-11-26 19:04:49 +000017
18/* OR32 GCC already has r10 set as fixed-use */
19#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r10")
20
21#endif /* __ASM_GBL_DATA_H */