blob: 6a19950de5f83c90ecac4ea7e202dda9fe02c9eb [file] [log] [blame]
Nobuhiro Iwamatsua6cd85a2012-06-13 16:13:24 +09001/*
2 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
3 * (C) Copyright 2012 Renesas Solutions Corp.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsua6cd85a2012-06-13 16:13:24 +09006 */
7#ifndef _GLOBALTIMER_H_
8#define _GLOBALTIMER_H_
9
10struct globaltimer {
11 u32 cnt_l; /* 0x00 */
12 u32 cnt_h;
13 u32 ctl;
14 u32 stat;
15 u32 cmp_l; /* 0x10 */
16 u32 cmp_h;
17 u32 inc;
18};
19
20#endif /* _GLOBALTIMER_H_ */