blob: bd946ffd8fd7305d74cd956cc9e35499ffae613c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09002/*
Wolfgang Denkf710efd2010-07-24 20:22:02 +02003 * (C) Copyright 2002-2010
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2007
7 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09008 */
9
10#ifndef __ASM_SH_GLOBALDATA_H_
11#define __ASM_SH_GLOBALDATA_H_
12
Simon Glass3ac47d72012-12-13 20:48:30 +000013/* Architecture-specific global data */
14struct arch_global_data {
15};
16
Simon Glassf97c17f2012-12-13 20:49:25 +000017#include <asm-generic/global_data.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090018
19#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("r13")
20
21#endif /* __ASM_SH_GLOBALDATA_H_ */