- move timer.h to include/drivers/timer/allwinner.h - remove unused header files replaced by declare_default_headers
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/*
|
|
* Copyright 2017, Data61
|
|
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
|
|
* ABN 41 687 119 230.
|
|
*
|
|
* This software may be distributed and modified according to the terms of
|
|
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
|
* See "LICENSE_GPLv2.txt" for details.
|
|
*
|
|
* @TAG(DATA61_GPL)
|
|
*/
|
|
|
|
#ifndef __DRIVER_TIMER_ALLWINNER_H
|
|
#define __DRIVER_TIMER_ALLWINNER_H
|
|
|
|
#define TMR0_IRQ_PEND_FLAG BIT(0)
|
|
|
|
struct timer {
|
|
uint32_t tmr_irq_en_reg; /* Timer IRQ Enable Register 0x00 */
|
|
uint32_t tmr_irq_sta_reg; /* Timer Status Register 0x04 */
|
|
uint32_t tmr_reserved01[2];
|
|
uint32_t tmr0_ctrl_reg; /* Timer 0 Control Register 0x10 */
|
|
uint32_t tmr0_intv_value_reg; /* Timer 0 Interval Value Register 0x14 */
|
|
uint32_t tmr0_cur_value_reg; /* Timer 0 Current Value Register 0x18 */
|
|
};
|
|
typedef volatile struct timer timer_t;
|
|
extern timer_t *timer;
|
|
|
|
static inline void resetTimer(void)
|
|
{
|
|
timer->tmr_irq_sta_reg = TMR0_IRQ_PEND_FLAG;
|
|
}
|
|
|
|
#endif /* !__DRIVER_TIMER_ALLWINNER_H */
|