blob: e35a26f1eb14d220bcb1ad70a13e83b05e4c6fbe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Alexey Brodkin544c5f52014-02-04 12:56:13 +04002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkin544c5f52014-02-04 12:56:13 +04004 */
5
6#ifndef __ASM_ARC_GLOBAL_DATA_H
7#define __ASM_ARC_GLOBAL_DATA_H
8
Alexey Brodkindb58eaa2016-07-04 11:37:55 +03009#ifndef __ASSEMBLY__
Alexey Brodkin544c5f52014-02-04 12:56:13 +040010/* Architecture-specific global data */
11struct arch_global_data {
Eugeniy Paltsevf3de8d62018-03-21 15:58:57 +030012 int l1_line_sz;
13#if defined(CONFIG_ISA_ARCV2)
14 int slc_line_sz;
15#endif
Alexey Brodkin544c5f52014-02-04 12:56:13 +040016};
Alexey Brodkindb58eaa2016-07-04 11:37:55 +030017#endif /* __ASSEMBLY__ */
Alexey Brodkin544c5f52014-02-04 12:56:13 +040018
19#include <asm-generic/global_data.h>
20
21#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r25")
22
23#endif /* __ASM_ARC_GLOBAL_DATA_H */