xref: /openbmc/u-boot/arch/xtensa/include/asm/global_data.h (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2007, Tensilica Inc.
4  */
5 
6 #ifndef	_XTENSA_GBL_DATA_H
7 #define _XTENSA_GBL_DATA_H
8 
9 /* Architecture-specific global data */
10 
11 struct arch_global_data {
12 	unsigned long cpu_clk;
13 };
14 
15 #include <asm-generic/global_data.h>
16 
17 #define DECLARE_GLOBAL_DATA_PTR     extern gd_t *gd
18 
19 #endif	/* _XTENSA_GBL_DATA_H */
20