blob: 40c129db4ace0e5066ad9f349bf909a296ee4637 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chris Zankel1387dab2016-08-10 18:36:44 +03002/*
3 * (C) Copyright 2007, Tensilica Inc.
Chris Zankel1387dab2016-08-10 18:36:44 +03004 */
5
6#ifndef _XTENSA_GBL_DATA_H
7#define _XTENSA_GBL_DATA_H
8
Tom Rinidec7ea02024-05-20 13:35:03 -06009#include <asm/u-boot.h>
10
Chris Zankel1387dab2016-08-10 18:36:44 +030011/* Architecture-specific global data */
12
13struct arch_global_data {
14 unsigned long cpu_clk;
15};
16
17#include <asm-generic/global_data.h>
18
19#define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
20
21#endif /* _XTENSA_GBL_DATA_H */