1/* 2 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> 3 * (C) Copyright 2012 Renesas Solutions Corp. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 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_ */ 21