blob: 2d9cf77980ccdf96e460094c8aa5e70fec02f982 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Nobuhiro Iwamatsu3b232152012-06-13 16:13:24 +09002/*
3 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
4 * (C) Copyright 2012 Renesas Solutions Corp.
Nobuhiro Iwamatsu3b232152012-06-13 16:13:24 +09005 */
6#ifndef _GLOBALTIMER_H_
7#define _GLOBALTIMER_H_
8
9struct globaltimer {
10 u32 cnt_l; /* 0x00 */
11 u32 cnt_h;
12 u32 ctl;
13 u32 stat;
14 u32 cmp_l; /* 0x10 */
15 u32 cmp_h;
16 u32 inc;
17};
18
19#endif /* _GLOBALTIMER_H_ */