blob: f4ce72d56602c0b166ccf9a0beaf61852c142c90 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb4a905e2011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 *
5 * (C) Copyright 2002-2010
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glassb4a905e2011-10-10 08:22:14 +00007 */
8
9#ifndef __ASM_GBL_DATA_H
10#define __ASM_GBL_DATA_H
Simon Glass3ac47d72012-12-13 20:48:30 +000011
12/* Architecture-specific global data */
13struct arch_global_data {
Simon Glass9dd10bf2013-11-10 10:27:03 -070014 uint8_t *ram_buf; /* emulated RAM buffer */
Simon Glass752707a2019-04-08 13:20:41 -060015 void *text_base; /* pointer to base of text region */
Simon Glass3ac47d72012-12-13 20:48:30 +000016};
17
Simon Glass5b5177e2012-12-13 20:49:24 +000018#include <asm-generic/global_data.h>
Simon Glassb4a905e2011-10-10 08:22:14 +000019
20#define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
21
22#endif /* __ASM_GBL_DATA_H */