blob: 428ce1b4debd44f2ff38b981c51e164a3d7dad03 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * (C) Copyright 2004 Atmark Techno, Inc.
3 *
4 * Yasushi SHOJI <yashi@atmark-techno.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __ASM_GBL_DATA_H
10#define __ASM_GBL_DATA_H
11
12/* Architecture-specific global data */
13struct arch_global_data {
14};
15
16#include <asm-generic/global_data.h>
17
18/* OR32 GCC already has r10 set as fixed-use */
19#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r10")
20
21#endif /* __ASM_GBL_DATA_H */