blob: b2e9b488f13be33563b07bb5435a999ddfb99521 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 *
4 * (C) Copyright 2002-2010
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#ifndef __ASM_GBL_DATA_H
11#define __ASM_GBL_DATA_H
12
13/* Architecture-specific global data */
14struct arch_global_data {
15 uint8_t *ram_buf; /* emulated RAM buffer */
16};
17
18#include <asm-generic/global_data.h>
19
20#define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
21
22#endif /* __ASM_GBL_DATA_H */