Nobuhiro Iwamatsu | a6cd85a | 2012-06-13 16:13:24 +0900 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> |
| 3 | * (C) Copyright 2012 Renesas Solutions Corp. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | a6cd85a | 2012-06-13 16:13:24 +0900 | [diff] [blame] | 6 | */ |
| 7 | #ifndef _GLOBALTIMER_H_ |
| 8 | #define _GLOBALTIMER_H_ |
| 9 | |
| 10 | struct 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_ */ |