blob: 1157978ab688ee2873019a7962f9cba12bf46723 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chris Zankelc978b522016-08-10 18:36:44 +03002/*
3 * (C) Copyright 2007, Tensilica Inc.
Chris Zankelc978b522016-08-10 18:36:44 +03004 */
5
6#ifndef _XTENSA_GBL_DATA_H
7#define _XTENSA_GBL_DATA_H
8
9/* Architecture-specific global data */
10
11struct 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 */