RTEMS 6.1-rc2
Loading...
Searching...
No Matches
omap_timer.h
Go to the documentation of this file.
1
7#include <stdint.h>
8
9typedef struct omap_timer_registers
10{
11 uint32_t TIDR;
12 uint32_t TIOCP_CFG;
13 uint32_t TISTAT;
14 uint32_t TISR;
15 uint32_t TIER;
16 uint32_t TWER;
17 uint32_t TCLR;
18 uint32_t TCRR;
19 uint32_t TLDR;
20 uint32_t TTGR;
21 uint32_t TWPS;
22 uint32_t TMAR;
23 uint32_t TCAR1;
24 uint32_t TSICR;
25 uint32_t TCAR2;
26 uint32_t TPIR;
27 uint32_t TNIR;
28 uint32_t TCVR;
29 uint32_t TOCR;
30 uint32_t TOWR;
31
33
34typedef struct omap_timer
35{
36 uint32_t base;
37 int irq_nr;
38 struct omap_timer_registers *regs;
Definition: omap_timer.h:10
Definition: omap_timer.h:35