Robobo
component_tc.h
1 /* ----------------------------------------------------------------------------
2  * SAM Software Package License
3  * ----------------------------------------------------------------------------
4  * Copyright (c) 2012, Atmel Corporation
5  *
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following condition is met:
10  *
11  * - Redistributions of source code must retain the above copyright notice,
12  * this list of conditions and the disclaimer below.
13  *
14  * Atmel's name may not be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  * ----------------------------------------------------------------------------
28  */
29 
30 #ifndef _SAM3N_TC_COMPONENT_
31 #define _SAM3N_TC_COMPONENT_
32 
33 /* ============================================================================= */
35 /* ============================================================================= */
38 
39 #if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
40 
41 typedef struct {
45  RoReg Reserved1[1];
54  RoReg Reserved2[4];
55 } TcChannel;
57 #define TCCHANNEL_NUMBER 3
58 typedef struct {
66  RoReg Reserved1[3];
68 } Tc;
69 #endif /* !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
70 /* -------- TC_CCR : (TC Offset: N/A) Channel Control Register -------- */
71 #define TC_CCR_CLKEN (0x1u << 0)
72 #define TC_CCR_CLKDIS (0x1u << 1)
73 #define TC_CCR_SWTRG (0x1u << 2)
74 /* -------- TC_CMR : (TC Offset: N/A) Channel Mode Register -------- */
75 #define TC_CMR_TCCLKS_Pos 0
76 #define TC_CMR_TCCLKS_Msk (0x7u << TC_CMR_TCCLKS_Pos)
77 #define TC_CMR_TCCLKS_TIMER_CLOCK1 (0x0u << 0)
78 #define TC_CMR_TCCLKS_TIMER_CLOCK2 (0x1u << 0)
79 #define TC_CMR_TCCLKS_TIMER_CLOCK3 (0x2u << 0)
80 #define TC_CMR_TCCLKS_TIMER_CLOCK4 (0x3u << 0)
81 #define TC_CMR_TCCLKS_TIMER_CLOCK5 (0x4u << 0)
82 #define TC_CMR_TCCLKS_XC0 (0x5u << 0)
83 #define TC_CMR_TCCLKS_XC1 (0x6u << 0)
84 #define TC_CMR_TCCLKS_XC2 (0x7u << 0)
85 #define TC_CMR_CLKI (0x1u << 3)
86 #define TC_CMR_BURST_Pos 4
87 #define TC_CMR_BURST_Msk (0x3u << TC_CMR_BURST_Pos)
88 #define TC_CMR_BURST_NONE (0x0u << 4)
89 #define TC_CMR_BURST_XC0 (0x1u << 4)
90 #define TC_CMR_BURST_XC1 (0x2u << 4)
91 #define TC_CMR_BURST_XC2 (0x3u << 4)
92 #define TC_CMR_LDBSTOP (0x1u << 6)
93 #define TC_CMR_LDBDIS (0x1u << 7)
94 #define TC_CMR_ETRGEDG_Pos 8
95 #define TC_CMR_ETRGEDG_Msk (0x3u << TC_CMR_ETRGEDG_Pos)
96 #define TC_CMR_ETRGEDG_NONE (0x0u << 8)
97 #define TC_CMR_ETRGEDG_RISING (0x1u << 8)
98 #define TC_CMR_ETRGEDG_FALLING (0x2u << 8)
99 #define TC_CMR_ETRGEDG_EDGE (0x3u << 8)
100 #define TC_CMR_ABETRG (0x1u << 10)
101 #define TC_CMR_CPCTRG (0x1u << 14)
102 #define TC_CMR_WAVE (0x1u << 15)
103 #define TC_CMR_LDRA_Pos 16
104 #define TC_CMR_LDRA_Msk (0x3u << TC_CMR_LDRA_Pos)
105 #define TC_CMR_LDRA_NONE (0x0u << 16)
106 #define TC_CMR_LDRA_RISING (0x1u << 16)
107 #define TC_CMR_LDRA_FALLING (0x2u << 16)
108 #define TC_CMR_LDRA_EDGE (0x3u << 16)
109 #define TC_CMR_LDRB_Pos 18
110 #define TC_CMR_LDRB_Msk (0x3u << TC_CMR_LDRB_Pos)
111 #define TC_CMR_LDRB_NONE (0x0u << 18)
112 #define TC_CMR_LDRB_RISING (0x1u << 18)
113 #define TC_CMR_LDRB_FALLING (0x2u << 18)
114 #define TC_CMR_LDRB_EDGE (0x3u << 18)
115 #define TC_CMR_CPCSTOP (0x1u << 6)
116 #define TC_CMR_CPCDIS (0x1u << 7)
117 #define TC_CMR_EEVTEDG_Pos 8
118 #define TC_CMR_EEVTEDG_Msk (0x3u << TC_CMR_EEVTEDG_Pos)
119 #define TC_CMR_EEVTEDG_NONE (0x0u << 8)
120 #define TC_CMR_EEVTEDG_RISING (0x1u << 8)
121 #define TC_CMR_EEVTEDG_FALLING (0x2u << 8)
122 #define TC_CMR_EEVTEDG_EDGE (0x3u << 8)
123 #define TC_CMR_EEVT_Pos 10
124 #define TC_CMR_EEVT_Msk (0x3u << TC_CMR_EEVT_Pos)
125 #define TC_CMR_EEVT_TIOB (0x0u << 10)
126 #define TC_CMR_EEVT_XC0 (0x1u << 10)
127 #define TC_CMR_EEVT_XC1 (0x2u << 10)
128 #define TC_CMR_EEVT_XC2 (0x3u << 10)
129 #define TC_CMR_ENETRG (0x1u << 12)
130 #define TC_CMR_WAVSEL_Pos 13
131 #define TC_CMR_WAVSEL_Msk (0x3u << TC_CMR_WAVSEL_Pos)
132 #define TC_CMR_WAVSEL_UP (0x0u << 13)
133 #define TC_CMR_WAVSEL_UPDOWN (0x1u << 13)
134 #define TC_CMR_WAVSEL_UP_RC (0x2u << 13)
135 #define TC_CMR_WAVSEL_UPDOWN_RC (0x3u << 13)
136 #define TC_CMR_ACPA_Pos 16
137 #define TC_CMR_ACPA_Msk (0x3u << TC_CMR_ACPA_Pos)
138 #define TC_CMR_ACPA_NONE (0x0u << 16)
139 #define TC_CMR_ACPA_SET (0x1u << 16)
140 #define TC_CMR_ACPA_CLEAR (0x2u << 16)
141 #define TC_CMR_ACPA_TOGGLE (0x3u << 16)
142 #define TC_CMR_ACPC_Pos 18
143 #define TC_CMR_ACPC_Msk (0x3u << TC_CMR_ACPC_Pos)
144 #define TC_CMR_ACPC_NONE (0x0u << 18)
145 #define TC_CMR_ACPC_SET (0x1u << 18)
146 #define TC_CMR_ACPC_CLEAR (0x2u << 18)
147 #define TC_CMR_ACPC_TOGGLE (0x3u << 18)
148 #define TC_CMR_AEEVT_Pos 20
149 #define TC_CMR_AEEVT_Msk (0x3u << TC_CMR_AEEVT_Pos)
150 #define TC_CMR_AEEVT_NONE (0x0u << 20)
151 #define TC_CMR_AEEVT_SET (0x1u << 20)
152 #define TC_CMR_AEEVT_CLEAR (0x2u << 20)
153 #define TC_CMR_AEEVT_TOGGLE (0x3u << 20)
154 #define TC_CMR_ASWTRG_Pos 22
155 #define TC_CMR_ASWTRG_Msk (0x3u << TC_CMR_ASWTRG_Pos)
156 #define TC_CMR_ASWTRG_NONE (0x0u << 22)
157 #define TC_CMR_ASWTRG_SET (0x1u << 22)
158 #define TC_CMR_ASWTRG_CLEAR (0x2u << 22)
159 #define TC_CMR_ASWTRG_TOGGLE (0x3u << 22)
160 #define TC_CMR_BCPB_Pos 24
161 #define TC_CMR_BCPB_Msk (0x3u << TC_CMR_BCPB_Pos)
162 #define TC_CMR_BCPB_NONE (0x0u << 24)
163 #define TC_CMR_BCPB_SET (0x1u << 24)
164 #define TC_CMR_BCPB_CLEAR (0x2u << 24)
165 #define TC_CMR_BCPB_TOGGLE (0x3u << 24)
166 #define TC_CMR_BCPC_Pos 26
167 #define TC_CMR_BCPC_Msk (0x3u << TC_CMR_BCPC_Pos)
168 #define TC_CMR_BCPC_NONE (0x0u << 26)
169 #define TC_CMR_BCPC_SET (0x1u << 26)
170 #define TC_CMR_BCPC_CLEAR (0x2u << 26)
171 #define TC_CMR_BCPC_TOGGLE (0x3u << 26)
172 #define TC_CMR_BEEVT_Pos 28
173 #define TC_CMR_BEEVT_Msk (0x3u << TC_CMR_BEEVT_Pos)
174 #define TC_CMR_BEEVT_NONE (0x0u << 28)
175 #define TC_CMR_BEEVT_SET (0x1u << 28)
176 #define TC_CMR_BEEVT_CLEAR (0x2u << 28)
177 #define TC_CMR_BEEVT_TOGGLE (0x3u << 28)
178 #define TC_CMR_BSWTRG_Pos 30
179 #define TC_CMR_BSWTRG_Msk (0x3u << TC_CMR_BSWTRG_Pos)
180 #define TC_CMR_BSWTRG_NONE (0x0u << 30)
181 #define TC_CMR_BSWTRG_SET (0x1u << 30)
182 #define TC_CMR_BSWTRG_CLEAR (0x2u << 30)
183 #define TC_CMR_BSWTRG_TOGGLE (0x3u << 30)
184 /* -------- TC_SMMR : (TC Offset: N/A) Stepper Motor Mode Register -------- */
185 #define TC_SMMR_GCEN (0x1u << 0)
186 #define TC_SMMR_DOWN (0x1u << 1)
187 /* -------- TC_CV : (TC Offset: N/A) Counter Value -------- */
188 #define TC_CV_CV_Pos 0
189 #define TC_CV_CV_Msk (0xffffffffu << TC_CV_CV_Pos)
190 /* -------- TC_RA : (TC Offset: N/A) Register A -------- */
191 #define TC_RA_RA_Pos 0
192 #define TC_RA_RA_Msk (0xffffffffu << TC_RA_RA_Pos)
193 #define TC_RA_RA(value) ((TC_RA_RA_Msk & ((value) << TC_RA_RA_Pos)))
194 /* -------- TC_RB : (TC Offset: N/A) Register B -------- */
195 #define TC_RB_RB_Pos 0
196 #define TC_RB_RB_Msk (0xffffffffu << TC_RB_RB_Pos)
197 #define TC_RB_RB(value) ((TC_RB_RB_Msk & ((value) << TC_RB_RB_Pos)))
198 /* -------- TC_RC : (TC Offset: N/A) Register C -------- */
199 #define TC_RC_RC_Pos 0
200 #define TC_RC_RC_Msk (0xffffffffu << TC_RC_RC_Pos)
201 #define TC_RC_RC(value) ((TC_RC_RC_Msk & ((value) << TC_RC_RC_Pos)))
202 /* -------- TC_SR : (TC Offset: N/A) Status Register -------- */
203 #define TC_SR_COVFS (0x1u << 0)
204 #define TC_SR_LOVRS (0x1u << 1)
205 #define TC_SR_CPAS (0x1u << 2)
206 #define TC_SR_CPBS (0x1u << 3)
207 #define TC_SR_CPCS (0x1u << 4)
208 #define TC_SR_LDRAS (0x1u << 5)
209 #define TC_SR_LDRBS (0x1u << 6)
210 #define TC_SR_ETRGS (0x1u << 7)
211 #define TC_SR_CLKSTA (0x1u << 16)
212 #define TC_SR_MTIOA (0x1u << 17)
213 #define TC_SR_MTIOB (0x1u << 18)
214 /* -------- TC_IER : (TC Offset: N/A) Interrupt Enable Register -------- */
215 #define TC_IER_COVFS (0x1u << 0)
216 #define TC_IER_LOVRS (0x1u << 1)
217 #define TC_IER_CPAS (0x1u << 2)
218 #define TC_IER_CPBS (0x1u << 3)
219 #define TC_IER_CPCS (0x1u << 4)
220 #define TC_IER_LDRAS (0x1u << 5)
221 #define TC_IER_LDRBS (0x1u << 6)
222 #define TC_IER_ETRGS (0x1u << 7)
223 /* -------- TC_IDR : (TC Offset: N/A) Interrupt Disable Register -------- */
224 #define TC_IDR_COVFS (0x1u << 0)
225 #define TC_IDR_LOVRS (0x1u << 1)
226 #define TC_IDR_CPAS (0x1u << 2)
227 #define TC_IDR_CPBS (0x1u << 3)
228 #define TC_IDR_CPCS (0x1u << 4)
229 #define TC_IDR_LDRAS (0x1u << 5)
230 #define TC_IDR_LDRBS (0x1u << 6)
231 #define TC_IDR_ETRGS (0x1u << 7)
232 /* -------- TC_IMR : (TC Offset: N/A) Interrupt Mask Register -------- */
233 #define TC_IMR_COVFS (0x1u << 0)
234 #define TC_IMR_LOVRS (0x1u << 1)
235 #define TC_IMR_CPAS (0x1u << 2)
236 #define TC_IMR_CPBS (0x1u << 3)
237 #define TC_IMR_CPCS (0x1u << 4)
238 #define TC_IMR_LDRAS (0x1u << 5)
239 #define TC_IMR_LDRBS (0x1u << 6)
240 #define TC_IMR_ETRGS (0x1u << 7)
241 /* -------- TC_BCR : (TC Offset: 0xC0) Block Control Register -------- */
242 #define TC_BCR_SYNC (0x1u << 0)
243 /* -------- TC_BMR : (TC Offset: 0xC4) Block Mode Register -------- */
244 #define TC_BMR_TC0XC0S_Pos 0
245 #define TC_BMR_TC0XC0S_Msk (0x3u << TC_BMR_TC0XC0S_Pos)
246 #define TC_BMR_TC0XC0S_TCLK0 (0x0u << 0)
247 #define TC_BMR_TC0XC0S_TIOA1 (0x2u << 0)
248 #define TC_BMR_TC0XC0S_TIOA2 (0x3u << 0)
249 #define TC_BMR_TC1XC1S_Pos 2
250 #define TC_BMR_TC1XC1S_Msk (0x3u << TC_BMR_TC1XC1S_Pos)
251 #define TC_BMR_TC1XC1S_TCLK1 (0x0u << 2)
252 #define TC_BMR_TC1XC1S_TIOA0 (0x2u << 2)
253 #define TC_BMR_TC1XC1S_TIOA2 (0x3u << 2)
254 #define TC_BMR_TC2XC2S_Pos 4
255 #define TC_BMR_TC2XC2S_Msk (0x3u << TC_BMR_TC2XC2S_Pos)
256 #define TC_BMR_TC2XC2S_TCLK2 (0x0u << 4)
257 #define TC_BMR_TC2XC2S_TIOA1 (0x2u << 4)
258 #define TC_BMR_TC2XC2S_TIOA2 (0x3u << 4)
259 #define TC_BMR_QDEN (0x1u << 8)
260 #define TC_BMR_POSEN (0x1u << 9)
261 #define TC_BMR_SPEEDEN (0x1u << 10)
262 #define TC_BMR_QDTRANS (0x1u << 11)
263 #define TC_BMR_EDGPHA (0x1u << 12)
264 #define TC_BMR_INVA (0x1u << 13)
265 #define TC_BMR_INVB (0x1u << 14)
266 #define TC_BMR_INVIDX (0x1u << 15)
267 #define TC_BMR_SWAP (0x1u << 16)
268 #define TC_BMR_IDXPHB (0x1u << 17)
269 #define TC_BMR_FILTER (0x1u << 19)
270 #define TC_BMR_MAXFILT_Pos 20
271 #define TC_BMR_MAXFILT_Msk (0x3fu << TC_BMR_MAXFILT_Pos)
272 #define TC_BMR_MAXFILT(value) ((TC_BMR_MAXFILT_Msk & ((value) << TC_BMR_MAXFILT_Pos)))
273 /* -------- TC_QIER : (TC Offset: 0xC8) QDEC Interrupt Enable Register -------- */
274 #define TC_QIER_IDX (0x1u << 0)
275 #define TC_QIER_DIRCHG (0x1u << 1)
276 #define TC_QIER_QERR (0x1u << 2)
277 /* -------- TC_QIDR : (TC Offset: 0xCC) QDEC Interrupt Disable Register -------- */
278 #define TC_QIDR_IDX (0x1u << 0)
279 #define TC_QIDR_DIRCHG (0x1u << 1)
280 #define TC_QIDR_QERR (0x1u << 2)
281 /* -------- TC_QIMR : (TC Offset: 0xD0) QDEC Interrupt Mask Register -------- */
282 #define TC_QIMR_IDX (0x1u << 0)
283 #define TC_QIMR_DIRCHG (0x1u << 1)
284 #define TC_QIMR_QERR (0x1u << 2)
285 /* -------- TC_QISR : (TC Offset: 0xD4) QDEC Interrupt Status Register -------- */
286 #define TC_QISR_IDX (0x1u << 0)
287 #define TC_QISR_DIRCHG (0x1u << 1)
288 #define TC_QISR_QERR (0x1u << 2)
289 #define TC_QISR_DIR (0x1u << 8)
290 /* -------- TC_WPMR : (TC Offset: 0xE4) Write Protect Mode Register -------- */
291 #define TC_WPMR_WPEN (0x1u << 0)
292 #define TC_WPMR_WPKEY_Pos 8
293 #define TC_WPMR_WPKEY_Msk (0xffffffu << TC_WPMR_WPKEY_Pos)
294 #define TC_WPMR_WPKEY(value) ((TC_WPMR_WPKEY_Msk & ((value) << TC_WPMR_WPKEY_Pos)))
295 
299 #endif /* _SAM3N_TC_COMPONENT_ */
RwReg TC_IMR
(TcChannel Offset: 0x2C) Interrupt Mask Register
Definition: component_tc.h:53
volatile uint32_t RwReg
Definition: sam3n00a.h:54
RwReg TC_CCR
(TcChannel Offset: 0x0) Channel Control Register
Definition: component_tc.h:42
volatile uint32_t WoReg
Definition: sam3n00a.h:53
RwReg TC_RC
(TcChannel Offset: 0x1C) Register C
Definition: component_tc.h:49
RwReg TC_WPMR
(Tc Offset: 0xE4) Write Protect Mode Register
Definition: component_tc.h:67
RwReg TC_RB
(TcChannel Offset: 0x18) Register B
Definition: component_tc.h:48
RwReg TC_IDR
(TcChannel Offset: 0x28) Interrupt Disable Register
Definition: component_tc.h:52
RwReg TC_SMMR
(TcChannel Offset: 0x8) Stepper Motor Mode Register
Definition: component_tc.h:44
RoReg TC_QIMR
(Tc Offset: 0xD0) QDEC Interrupt Mask Register
Definition: component_tc.h:64
RwReg TC_SR
(TcChannel Offset: 0x20) Status Register
Definition: component_tc.h:50
WoReg TC_BCR
(Tc Offset: 0xC0) Block Control Register
Definition: component_tc.h:60
WoReg TC_QIER
(Tc Offset: 0xC8) QDEC Interrupt Enable Register
Definition: component_tc.h:62
#define TCCHANNEL_NUMBER
Tc hardware registers.
Definition: component_tc.h:57
RoReg TC_QISR
(Tc Offset: 0xD4) QDEC Interrupt Status Register
Definition: component_tc.h:65
TcChannel hardware registers.
Definition: component_tc.h:41
WoReg TC_QIDR
(Tc Offset: 0xCC) QDEC Interrupt Disable Register
Definition: component_tc.h:63
volatile const uint32_t RoReg
Definition: sam3n00a.h:49
RwReg TC_IER
(TcChannel Offset: 0x24) Interrupt Enable Register
Definition: component_tc.h:51
RwReg TC_BMR
(Tc Offset: 0xC4) Block Mode Register
Definition: component_tc.h:61
Definition: component_tc.h:58
RwReg TC_CV
(TcChannel Offset: 0x10) Counter Value
Definition: component_tc.h:46
RwReg TC_RA
(TcChannel Offset: 0x14) Register A
Definition: component_tc.h:47
RwReg TC_CMR
(TcChannel Offset: 0x4) Channel Mode Register
Definition: component_tc.h:43