blob: 667e7d6d3b1e9e442d710a507b62adb798dce75f [file] [log] [blame]
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01001/*
Wolfgang Denk91a76752010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2007
6 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01009 */
10
11#ifndef __ASM_GBL_DATA_H
12#define __ASM_GBL_DATA_H
13
14#include "asm/types.h"
15
Simon Glass5cb48582012-12-13 20:48:30 +000016/* Architecture-specific global data */
17struct arch_global_data {
18};
19
Simon Glass1e5f8bd2012-12-13 20:49:26 +000020#include <asm-generic/global_data.h>
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010021
22#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("%g7")
23
24#endif /* __ASM_GBL_DATA_H */