Go to the documentation of this file.
22 #define at91_st_read(field) \
23 __raw_readl(at91_st_base + field)
25 #define at91_st_write(field, value) \
26 __raw_writel(value, at91_st_base + field);
31 #define AT91_ST_CR 0x00
32 #define AT91_ST_WDRST (1 << 0)
34 #define AT91_ST_PIMR 0x04
35 #define AT91_ST_PIV (0xffff << 0)
37 #define AT91_ST_WDMR 0x08
38 #define AT91_ST_WDV (0xffff << 0)
39 #define AT91_ST_RSTEN (1 << 16)
40 #define AT91_ST_EXTEN (1 << 17)
42 #define AT91_ST_RTMR 0x0c
43 #define AT91_ST_RTPRES (0xffff << 0)
45 #define AT91_ST_SR 0x10
46 #define AT91_ST_PITS (1 << 0)
47 #define AT91_ST_WDOVF (1 << 1)
48 #define AT91_ST_RTTINC (1 << 2)
49 #define AT91_ST_ALMS (1 << 3)
51 #define AT91_ST_IER 0x14
52 #define AT91_ST_IDR 0x18
53 #define AT91_ST_IMR 0x1c
55 #define AT91_ST_RTAR 0x20
56 #define AT91_ST_ALMV (0xfffff << 0)
58 #define AT91_ST_CRTR 0x24
59 #define AT91_ST_CRTV (0xfffff << 0)