Go to the documentation of this file.
16 #ifndef ATMEL_SERIAL_H
17 #define ATMEL_SERIAL_H
19 #define ATMEL_US_CR 0x00
20 #define ATMEL_US_RSTRX (1 << 2)
21 #define ATMEL_US_RSTTX (1 << 3)
22 #define ATMEL_US_RXEN (1 << 4)
23 #define ATMEL_US_RXDIS (1 << 5)
24 #define ATMEL_US_TXEN (1 << 6)
25 #define ATMEL_US_TXDIS (1 << 7)
26 #define ATMEL_US_RSTSTA (1 << 8)
27 #define ATMEL_US_STTBRK (1 << 9)
28 #define ATMEL_US_STPBRK (1 << 10)
29 #define ATMEL_US_STTTO (1 << 11)
30 #define ATMEL_US_SENDA (1 << 12)
31 #define ATMEL_US_RSTIT (1 << 13)
32 #define ATMEL_US_RSTNACK (1 << 14)
33 #define ATMEL_US_RETTO (1 << 15)
34 #define ATMEL_US_DTREN (1 << 16)
35 #define ATMEL_US_DTRDIS (1 << 17)
36 #define ATMEL_US_RTSEN (1 << 18)
37 #define ATMEL_US_RTSDIS (1 << 19)
39 #define ATMEL_US_MR 0x04
40 #define ATMEL_US_USMODE (0xf << 0)
41 #define ATMEL_US_USMODE_NORMAL 0
42 #define ATMEL_US_USMODE_RS485 1
43 #define ATMEL_US_USMODE_HWHS 2
44 #define ATMEL_US_USMODE_MODEM 3
45 #define ATMEL_US_USMODE_ISO7816_T0 4
46 #define ATMEL_US_USMODE_ISO7816_T1 6
47 #define ATMEL_US_USMODE_IRDA 8
48 #define ATMEL_US_USCLKS (3 << 4)
49 #define ATMEL_US_USCLKS_MCK (0 << 4)
50 #define ATMEL_US_USCLKS_MCK_DIV8 (1 << 4)
51 #define ATMEL_US_USCLKS_SCK (3 << 4)
52 #define ATMEL_US_CHRL (3 << 6)
53 #define ATMEL_US_CHRL_5 (0 << 6)
54 #define ATMEL_US_CHRL_6 (1 << 6)
55 #define ATMEL_US_CHRL_7 (2 << 6)
56 #define ATMEL_US_CHRL_8 (3 << 6)
57 #define ATMEL_US_SYNC (1 << 8)
58 #define ATMEL_US_PAR (7 << 9)
59 #define ATMEL_US_PAR_EVEN (0 << 9)
60 #define ATMEL_US_PAR_ODD (1 << 9)
61 #define ATMEL_US_PAR_SPACE (2 << 9)
62 #define ATMEL_US_PAR_MARK (3 << 9)
63 #define ATMEL_US_PAR_NONE (4 << 9)
64 #define ATMEL_US_PAR_MULTI_DROP (6 << 9)
65 #define ATMEL_US_NBSTOP (3 << 12)
66 #define ATMEL_US_NBSTOP_1 (0 << 12)
67 #define ATMEL_US_NBSTOP_1_5 (1 << 12)
68 #define ATMEL_US_NBSTOP_2 (2 << 12)
69 #define ATMEL_US_CHMODE (3 << 14)
70 #define ATMEL_US_CHMODE_NORMAL (0 << 14)
71 #define ATMEL_US_CHMODE_ECHO (1 << 14)
72 #define ATMEL_US_CHMODE_LOC_LOOP (2 << 14)
73 #define ATMEL_US_CHMODE_REM_LOOP (3 << 14)
74 #define ATMEL_US_MSBF (1 << 16)
75 #define ATMEL_US_MODE9 (1 << 17)
76 #define ATMEL_US_CLKO (1 << 18)
77 #define ATMEL_US_OVER (1 << 19)
78 #define ATMEL_US_INACK (1 << 20)
79 #define ATMEL_US_DSNACK (1 << 21)
80 #define ATMEL_US_MAX_ITER (7 << 24)
81 #define ATMEL_US_FILTER (1 << 28)
83 #define ATMEL_US_IER 0x08
84 #define ATMEL_US_RXRDY (1 << 0)
85 #define ATMEL_US_TXRDY (1 << 1)
86 #define ATMEL_US_RXBRK (1 << 2)
87 #define ATMEL_US_ENDRX (1 << 3)
88 #define ATMEL_US_ENDTX (1 << 4)
89 #define ATMEL_US_OVRE (1 << 5)
90 #define ATMEL_US_FRAME (1 << 6)
91 #define ATMEL_US_PARE (1 << 7)
92 #define ATMEL_US_TIMEOUT (1 << 8)
93 #define ATMEL_US_TXEMPTY (1 << 9)
94 #define ATMEL_US_ITERATION (1 << 10)
95 #define ATMEL_US_TXBUFE (1 << 11)
96 #define ATMEL_US_RXBUFF (1 << 12)
97 #define ATMEL_US_NACK (1 << 13)
98 #define ATMEL_US_RIIC (1 << 16)
99 #define ATMEL_US_DSRIC (1 << 17)
100 #define ATMEL_US_DCDIC (1 << 18)
101 #define ATMEL_US_CTSIC (1 << 19)
102 #define ATMEL_US_RI (1 << 20)
103 #define ATMEL_US_DSR (1 << 21)
104 #define ATMEL_US_DCD (1 << 22)
105 #define ATMEL_US_CTS (1 << 23)
107 #define ATMEL_US_IDR 0x0c
108 #define ATMEL_US_IMR 0x10
109 #define ATMEL_US_CSR 0x14
110 #define ATMEL_US_RHR 0x18
111 #define ATMEL_US_THR 0x1c
112 #define ATMEL_US_SYNH (1 << 15)
114 #define ATMEL_US_BRGR 0x20
115 #define ATMEL_US_CD (0xffff << 0)
117 #define ATMEL_US_RTOR 0x24
118 #define ATMEL_US_TO (0xffff << 0)
120 #define ATMEL_US_TTGR 0x28
121 #define ATMEL_US_TG (0xff << 0)
123 #define ATMEL_US_FIDI 0x40
124 #define ATMEL_US_NER 0x44
125 #define ATMEL_US_IF 0x4c