blob: 667e7d6d3b1e9e442d710a507b62adb798dce75f [file] [log] [blame]
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +01001/*
Wolfgang Denkf710efd2010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
Daniel Hellstrom9d7c6b22008-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 Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstrom9d7c6b22008-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 Glass3ac47d72012-12-13 20:48:30 +000016/* Architecture-specific global data */
17struct arch_global_data {
18};
19
Simon Glass850d9aa2012-12-13 20:49:26 +000020#include <asm-generic/global_data.h>
Daniel Hellstrom9d7c6b22008-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 */