Go to the documentation of this file.
12 #include <linux/types.h>
26 #define A3000_XFER_MASK (0x00000003)
30 volatile unsigned short DAWR;
31 volatile unsigned int WTC;
33 volatile unsigned short CNTR;
34 volatile unsigned long ACR;
40 volatile unsigned short CINT;
42 volatile unsigned short ISTR;
46 volatile unsigned char SASR;
48 volatile unsigned char SCMD;
51 #define DAWR_A3000 (3)
54 #define CNTR_TCEN (1<<5)
55 #define CNTR_PREST (1<<4)
56 #define CNTR_PDMD (1<<3)
57 #define CNTR_INTEN (1<<2)
58 #define CNTR_DDIR (1<<1)
59 #define CNTR_IO_DX (1<<0)
62 #define ISTR_INTX (1<<8)
63 #define ISTR_INT_F (1<<7)
64 #define ISTR_INTS (1<<6)
65 #define ISTR_E_INT (1<<5)
66 #define ISTR_INT_P (1<<4)
67 #define ISTR_UE_INT (1<<3)
68 #define ISTR_OE_INT (1<<2)
69 #define ISTR_FF_FLG (1<<1)
70 #define ISTR_FE_FLG (1<<0)