1 /*!
2     \file    gd32f403_timer.h
3     \brief   definitions for the TIMER
4 
5     \version 2017-02-10, V1.0.0, firmware for GD32F403
6     \version 2018-12-12, V2.0.0, firmware for GD32F403
7     \version 2020-09-30, V2.1.0, firmware for GD32F403
8 */
9 
10 /*
11     Copyright (c) 2020, GigaDevice Semiconductor Inc.
12 
13     Redistribution and use in source and binary forms, with or without modification,
14 are permitted provided that the following conditions are met:
15 
16     1. Redistributions of source code must retain the above copyright notice, this
17        list of conditions and the following disclaimer.
18     2. Redistributions in binary form must reproduce the above copyright notice,
19        this list of conditions and the following disclaimer in the documentation
20        and/or other materials provided with the distribution.
21     3. Neither the name of the copyright holder nor the names of its contributors
22        may be used to endorse or promote products derived from this software without
23        specific prior written permission.
24 
25     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
29 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
34 OF SUCH DAMAGE.
35 */
36 
37 #ifndef GD32F403_TIMER_H
38 #define GD32F403_TIMER_H
39 
40 #include "gd32f403.h"
41 
42 /* TIMERx(x=0,2,3,5..13) definitions */
43 #define TIMER0                           (TIMER_BASE + 0x00012C00U)
44 #define TIMER2                           (TIMER_BASE + 0x00000400U)
45 #define TIMER3                           (TIMER_BASE + 0x00000800U)
46 #define TIMER5                           (TIMER_BASE + 0x00001000U)
47 #define TIMER6                           (TIMER_BASE + 0x00001400U)
48 #define TIMER7                           (TIMER_BASE + 0x00013400U)
49 #define TIMER8                           (TIMER_BASE + 0x00014C00U)
50 #define TIMER9                           (TIMER_BASE + 0x00015000U)
51 #define TIMER10                          (TIMER_BASE + 0x00015400U)
52 #define TIMER11                          (TIMER_BASE + 0x00001800U)
53 #define TIMER12                          (TIMER_BASE + 0x00001C00U)
54 #define TIMER13                          (TIMER_BASE + 0x00002000U)
55 
56 /* registers definitions */
57 #define TIMER_CTL0(timerx)               REG32((timerx) + 0x00U)           /*!< TIMER control register 0 */
58 #define TIMER_CTL1(timerx)               REG32((timerx) + 0x04U)           /*!< TIMER control register 1 */
59 #define TIMER_SMCFG(timerx)              REG32((timerx) + 0x08U)           /*!< TIMER slave mode configuration register */
60 #define TIMER_DMAINTEN(timerx)           REG32((timerx) + 0x0CU)           /*!< TIMER DMA and interrupt enable register */
61 #define TIMER_INTF(timerx)               REG32((timerx) + 0x10U)           /*!< TIMER interrupt flag register */
62 #define TIMER_SWEVG(timerx)              REG32((timerx) + 0x14U)           /*!< TIMER software event generation register */
63 #define TIMER_CHCTL0(timerx)             REG32((timerx) + 0x18U)           /*!< TIMER channel control register 0 */
64 #define TIMER_CHCTL1(timerx)             REG32((timerx) + 0x1CU)           /*!< TIMER channel control register 1 */
65 #define TIMER_CHCTL2(timerx)             REG32((timerx) + 0x20U)           /*!< TIMER channel control register 2 */
66 #define TIMER_CNT(timerx)                REG32((timerx) + 0x24U)           /*!< TIMER counter register */
67 #define TIMER_PSC(timerx)                REG32((timerx) + 0x28U)           /*!< TIMER prescaler register */
68 #define TIMER_CAR(timerx)                REG32((timerx) + 0x2CU)           /*!< TIMER counter auto reload register */
69 #define TIMER_CREP(timerx)               REG32((timerx) + 0x30U)           /*!< TIMER counter repetition register */
70 #define TIMER_CH0CV(timerx)              REG32((timerx) + 0x34U)           /*!< TIMER channel 0 capture/compare value register */
71 #define TIMER_CH1CV(timerx)              REG32((timerx) + 0x38U)           /*!< TIMER channel 1 capture/compare value register */
72 #define TIMER_CH2CV(timerx)              REG32((timerx) + 0x3CU)           /*!< TIMER channel 2 capture/compare value register */
73 #define TIMER_CH3CV(timerx)              REG32((timerx) + 0x40U)           /*!< TIMER channel 3 capture/compare value register */
74 #define TIMER_CCHP(timerx)               REG32((timerx) + 0x44U)           /*!< TIMER complementary channel protection register */
75 #define TIMER_DMACFG(timerx)             REG32((timerx) + 0x48U)           /*!< TIMER DMA configuration register */
76 #define TIMER_DMATB(timerx)              REG32((timerx) + 0x4CU)           /*!< TIMER DMA transfer buffer register */
77 #define TIMER_IRMP(timerx)               REG32((timerx) + 0x50U)           /*!< TIMER channel input remap register */
78 #define TIMER_CFG(timerx)                REG32((timerx) + 0xFCU)           /*!< TIMER configuration register */
79 
80 /* bits definitions */
81 /* TIMER_CTL0 */
82 #define TIMER_CTL0_CEN                   BIT(0)              /*!< TIMER counter enable */
83 #define TIMER_CTL0_UPDIS                 BIT(1)              /*!< update disable */
84 #define TIMER_CTL0_UPS                   BIT(2)              /*!< update source */
85 #define TIMER_CTL0_SPM                   BIT(3)              /*!< single pulse mode */
86 #define TIMER_CTL0_DIR                   BIT(4)              /*!< timer counter direction */
87 #define TIMER_CTL0_CAM                   BITS(5,6)           /*!< center-aligned mode selection */
88 #define TIMER_CTL0_ARSE                  BIT(7)              /*!< auto-reload shadow enable */
89 #define TIMER_CTL0_CKDIV                 BITS(8,9)           /*!< clock division */
90 
91 /* TIMER_CTL1 */
92 #define TIMER_CTL1_CCSE                  BIT(0)              /*!< commutation control shadow enable */
93 #define TIMER_CTL1_CCUC                  BIT(2)              /*!< commutation control shadow register update control */
94 #define TIMER_CTL1_DMAS                  BIT(3)              /*!< DMA request source selection */
95 #define TIMER_CTL1_MMC                   BITS(4,6)           /*!< master mode control */
96 #define TIMER_CTL1_TI0S                  BIT(7)              /*!< channel 0 trigger input selection(hall mode selection) */
97 #define TIMER_CTL1_ISO0                  BIT(8)              /*!< idle state of channel 0 output */
98 #define TIMER_CTL1_ISO0N                 BIT(9)              /*!< idle state of channel 0 complementary output */
99 #define TIMER_CTL1_ISO1                  BIT(10)             /*!< idle state of channel 1 output */
100 #define TIMER_CTL1_ISO1N                 BIT(11)             /*!< idle state of channel 1 complementary output */
101 #define TIMER_CTL1_ISO2                  BIT(12)             /*!< idle state of channel 2 output */
102 #define TIMER_CTL1_ISO2N                 BIT(13)             /*!< idle state of channel 2 complementary output */
103 #define TIMER_CTL1_ISO3                  BIT(14)             /*!< idle state of channel 3 output */
104 
105 /* TIMER_SMCFG */
106 #define TIMER_SMCFG_SMC                  BITS(0,2)           /*!< slave mode control */
107 #define TIMER_SMCFG_TRGS                 BITS(4,6)           /*!< trigger selection */
108 #define TIMER_SMCFG_MSM                  BIT(7)              /*!< master-slave mode */
109 #define TIMER_SMCFG_ETFC                 BITS(8,11)          /*!< external trigger filter control */
110 #define TIMER_SMCFG_ETPSC                BITS(12,13)         /*!< external trigger prescaler */
111 #define TIMER_SMCFG_SMC1                 BIT(14)             /*!< part of SMC for enable external clock mode 1 */
112 #define TIMER_SMCFG_ETP                  BIT(15)             /*!< external trigger polarity */
113 
114 /* TIMER_DMAINTEN */
115 #define TIMER_DMAINTEN_UPIE              BIT(0)              /*!< update interrupt enable */
116 #define TIMER_DMAINTEN_CH0IE             BIT(1)              /*!< channel 0 capture/compare interrupt enable */
117 #define TIMER_DMAINTEN_CH1IE             BIT(2)              /*!< channel 1 capture/compare interrupt enable */
118 #define TIMER_DMAINTEN_CH2IE             BIT(3)              /*!< channel 2 capture/compare interrupt enable */
119 #define TIMER_DMAINTEN_CH3IE             BIT(4)              /*!< channel 3 capture/compare interrupt enable */
120 #define TIMER_DMAINTEN_CMTIE             BIT(5)              /*!< commutation interrupt request enable */
121 #define TIMER_DMAINTEN_TRGIE             BIT(6)              /*!< trigger interrupt enable */
122 #define TIMER_DMAINTEN_BRKIE             BIT(7)              /*!< break interrupt enable */
123 #define TIMER_DMAINTEN_UPDEN             BIT(8)              /*!< update DMA request enable */
124 #define TIMER_DMAINTEN_CH0DEN            BIT(9)              /*!< channel 0 DMA request enable */
125 #define TIMER_DMAINTEN_CH1DEN            BIT(10)             /*!< channel 1 DMA request enable */
126 #define TIMER_DMAINTEN_CH2DEN            BIT(11)             /*!< channel 2 DMA request enable */
127 #define TIMER_DMAINTEN_CH3DEN            BIT(12)             /*!< channel 3 DMA request enable */
128 #define TIMER_DMAINTEN_CMTDEN            BIT(13)             /*!< commutation DMA request enable */
129 #define TIMER_DMAINTEN_TRGDEN            BIT(14)             /*!< trigger DMA request enable */
130 
131 /* TIMER_INTF */
132 #define TIMER_INTF_UPIF                  BIT(0)              /*!< update interrupt flag */
133 #define TIMER_INTF_CH0IF                 BIT(1)              /*!< channel 0 capture/compare interrupt flag */
134 #define TIMER_INTF_CH1IF                 BIT(2)              /*!< channel 1 capture/compare interrupt flag */
135 #define TIMER_INTF_CH2IF                 BIT(3)              /*!< channel 2 capture/compare interrupt flag */
136 #define TIMER_INTF_CH3IF                 BIT(4)              /*!< channel 3 capture/compare interrupt flag */
137 #define TIMER_INTF_CMTIF                 BIT(5)              /*!< channel commutation interrupt flag */
138 #define TIMER_INTF_TRGIF                 BIT(6)              /*!< trigger interrupt flag */
139 #define TIMER_INTF_BRKIF                 BIT(7)              /*!< break interrupt flag */
140 #define TIMER_INTF_CH0OF                 BIT(9)              /*!< channel 0 overcapture flag */
141 #define TIMER_INTF_CH1OF                 BIT(10)             /*!< channel 1 overcapture flag */
142 #define TIMER_INTF_CH2OF                 BIT(11)             /*!< channel 2 overcapture flag */
143 #define TIMER_INTF_CH3OF                 BIT(12)             /*!< channel 3 overcapture flag */
144 
145 /* TIMER_SWEVG */
146 #define TIMER_SWEVG_UPG                  BIT(0)              /*!< update event generate */
147 #define TIMER_SWEVG_CH0G                 BIT(1)              /*!< channel 0 capture or compare event generation */
148 #define TIMER_SWEVG_CH1G                 BIT(2)              /*!< channel 1 capture or compare event generation */
149 #define TIMER_SWEVG_CH2G                 BIT(3)              /*!< channel 2 capture or compare event generation */
150 #define TIMER_SWEVG_CH3G                 BIT(4)              /*!< channel 3 capture or compare event generation */
151 #define TIMER_SWEVG_CMTG                 BIT(5)              /*!< channel commutation event generation */
152 #define TIMER_SWEVG_TRGG                 BIT(6)              /*!< trigger event generation */
153 #define TIMER_SWEVG_BRKG                 BIT(7)              /*!< break event generation */
154 
155 /* TIMER_CHCTL0 */
156 /* output compare mode */
157 #define TIMER_CHCTL0_CH0MS               BITS(0,1)           /*!< channel 0 mode selection */
158 #define TIMER_CHCTL0_CH0COMFEN           BIT(2)              /*!< channel 0 output compare fast enable */
159 #define TIMER_CHCTL0_CH0COMSEN           BIT(3)              /*!< channel 0 output compare shadow enable */
160 #define TIMER_CHCTL0_CH0COMCTL           BITS(4,6)           /*!< channel 0 output compare mode */
161 #define TIMER_CHCTL0_CH0COMCEN           BIT(7)              /*!< channel 0 output compare clear enable */
162 #define TIMER_CHCTL0_CH1MS               BITS(8,9)           /*!< channel 1 mode selection */
163 #define TIMER_CHCTL0_CH1COMFEN           BIT(10)             /*!< channel 1 output compare fast enable */
164 #define TIMER_CHCTL0_CH1COMSEN           BIT(11)             /*!< channel 1 output compare shadow enable */
165 #define TIMER_CHCTL0_CH1COMCTL           BITS(12,14)         /*!< channel 1 output compare mode */
166 #define TIMER_CHCTL0_CH1COMCEN           BIT(15)             /*!< channel 1 output compare clear enable */
167 /* input capture mode */
168 #define TIMER_CHCTL0_CH0CAPPSC           BITS(2,3)           /*!< channel 0 input capture prescaler */
169 #define TIMER_CHCTL0_CH0CAPFLT           BITS(4,7)           /*!< channel 0 input capture filter control */
170 #define TIMER_CHCTL0_CH1CAPPSC           BITS(10,11)         /*!< channel 1 input capture prescaler */
171 #define TIMER_CHCTL0_CH1CAPFLT           BITS(12,15)         /*!< channel 1 input capture filter control */
172 
173 /* TIMER_CHCTL1 */
174 /* output compare mode */
175 #define TIMER_CHCTL1_CH2MS               BITS(0,1)           /*!< channel 2 mode selection */
176 #define TIMER_CHCTL1_CH2COMFEN           BIT(2)              /*!< channel 2 output compare fast enable */
177 #define TIMER_CHCTL1_CH2COMSEN           BIT(3)              /*!< channel 2 output compare shadow enable */
178 #define TIMER_CHCTL1_CH2COMCTL           BITS(4,6)           /*!< channel 2 output compare mode */
179 #define TIMER_CHCTL1_CH2COMCEN           BIT(7)              /*!< channel 2 output compare clear enable */
180 #define TIMER_CHCTL1_CH3MS               BITS(8,9)           /*!< channel 3 mode selection */
181 #define TIMER_CHCTL1_CH3COMFEN           BIT(10)             /*!< channel 3 output compare fast enable */
182 #define TIMER_CHCTL1_CH3COMSEN           BIT(11)             /*!< channel 3 output compare shadow enable */
183 #define TIMER_CHCTL1_CH3COMCTL           BITS(12,14)         /*!< channel 3 output compare mode */
184 #define TIMER_CHCTL1_CH3COMCEN           BIT(15)             /*!< channel 3 output compare clear enable */
185 /* input capture mode */
186 #define TIMER_CHCTL1_CH2CAPPSC           BITS(2,3)           /*!< channel 2 input capture prescaler */
187 #define TIMER_CHCTL1_CH2CAPFLT           BITS(4,7)           /*!< channel 2 input capture filter control */
188 #define TIMER_CHCTL1_CH3CAPPSC           BITS(10,11)         /*!< channel 3 input capture prescaler */
189 #define TIMER_CHCTL1_CH3CAPFLT           BITS(12,15)         /*!< channel 3 input capture filter control */
190 
191 /* TIMER_CHCTL2 */
192 #define TIMER_CHCTL2_CH0EN               BIT(0)              /*!< channel 0 capture/compare function enable */
193 #define TIMER_CHCTL2_CH0P                BIT(1)              /*!< channel 0 capture/compare function polarity */
194 #define TIMER_CHCTL2_CH0NEN              BIT(2)              /*!< channel 0 complementary output enable */
195 #define TIMER_CHCTL2_CH0NP               BIT(3)              /*!< channel 0 complementary output polarity */
196 #define TIMER_CHCTL2_CH1EN               BIT(4)              /*!< channel 1 capture/compare function enable  */
197 #define TIMER_CHCTL2_CH1P                BIT(5)              /*!< channel 1 capture/compare function polarity */
198 #define TIMER_CHCTL2_CH1NEN              BIT(6)              /*!< channel 1 complementary output enable */
199 #define TIMER_CHCTL2_CH1NP               BIT(7)              /*!< channel 1 complementary output polarity */
200 #define TIMER_CHCTL2_CH2EN               BIT(8)              /*!< channel 2 capture/compare function enable  */
201 #define TIMER_CHCTL2_CH2P                BIT(9)              /*!< channel 2 capture/compare function polarity */
202 #define TIMER_CHCTL2_CH2NEN              BIT(10)             /*!< channel 2 complementary output enable */
203 #define TIMER_CHCTL2_CH2NP               BIT(11)             /*!< channel 2 complementary output polarity */
204 #define TIMER_CHCTL2_CH3EN               BIT(12)             /*!< channel 3 capture/compare function enable  */
205 #define TIMER_CHCTL2_CH3P                BIT(13)             /*!< channel 3 capture/compare function polarity */
206 
207 /* TIMER_CNT */
208 #define TIMER_CNT_CNT16                  BITS(0,15)          /*!< 16 bit timer counter */
209 
210 /* TIMER_PSC */
211 #define TIMER_PSC_PSC                    BITS(0,15)          /*!< prescaler value of the counter clock */
212 
213 /* TIMER_CAR */
214 #define TIMER_CAR_CARL16                 BITS(0,15)          /*!< 16 bit counter auto reload value */
215 
216 /* TIMER_CREP */
217 #define TIMER_CREP_CREP                  BITS(0,7)           /*!< counter repetition value */
218 
219 /* TIMER_CH0CV */
220 #define TIMER_CH0CV_CH0VAL16             BITS(0,15)          /*!< 16 bit capture/compare value of channel 0 */
221 
222 /* TIMER_CH1CV */
223 #define TIMER_CH1CV_CH1VAL16             BITS(0,15)          /*!< 16 bit capture/compare value of channel 1 */
224 
225 /* TIMER_CH2CV */
226 #define TIMER_CH2CV_CH2VAL16             BITS(0,15)          /*!< 16 bit capture/compare value of channel 2 */
227 
228 /* TIMER_CH3CV */
229 #define TIMER_CH3CV_CH3VAL16             BITS(0,15)          /*!< 16 bit capture/compare value of channel 3 */
230 
231 /* TIMER_CCHP */
232 #define TIMER_CCHP_DTCFG                 BITS(0,7)           /*!< dead time configure */
233 #define TIMER_CCHP_PROT                  BITS(8,9)           /*!< complementary register protect control */
234 #define TIMER_CCHP_IOS                   BIT(10)             /*!< idle mode off-state configure */
235 #define TIMER_CCHP_ROS                   BIT(11)             /*!< run mode off-state configure */
236 #define TIMER_CCHP_BRKEN                 BIT(12)             /*!< break enable */
237 #define TIMER_CCHP_BRKP                  BIT(13)             /*!< break polarity */
238 #define TIMER_CCHP_OAEN                  BIT(14)             /*!< output automatic enable */
239 #define TIMER_CCHP_POEN                  BIT(15)             /*!< primary output enable */
240 
241 /* TIMER_DMACFG */
242 #define TIMER_DMACFG_DMATA               BITS(0,4)           /*!< DMA transfer access start address */
243 #define TIMER_DMACFG_DMATC               BITS(8,12)          /*!< DMA transfer count */
244 
245 /* TIMER_DMATB */
246 #define TIMER_DMATB_DMATB                BITS(0,15)          /*!< DMA transfer buffer address */
247 
248 /* TIMER_IRMP */
249 #define TIMER10_IRMP_ITI1_RMP            BITS(0,1)           /*!< TIMER10 internal trigger input 1 remap */
250 
251 /* TIMER_CFG */
252 #define TIMER_CFG_OUTSEL                 BIT(0)              /*!< the output value selection */
253 #define TIMER_CFG_CHVSEL                 BIT(1)              /*!< write CHxVAL register selection */
254 
255 /* constants definitions */
256 /* TIMER init parameter struct definitions*/
257 typedef struct
258 {
259     uint16_t prescaler;                         /*!< prescaler value */
260     uint16_t alignedmode;                       /*!< aligned mode */
261     uint16_t counterdirection;                  /*!< counter direction */
262     uint16_t clockdivision;                     /*!< clock division value */
263     uint32_t period;                            /*!< period value */
264     uint8_t  repetitioncounter;                 /*!< the counter repetition value */
265 }timer_parameter_struct;
266 
267 /* break parameter struct definitions*/
268 typedef struct
269 {
270     uint16_t runoffstate;                       /*!< run mode off-state */
271     uint16_t ideloffstate;                      /*!< idle mode off-state */
272     uint16_t deadtime;                          /*!< dead time */
273     uint16_t breakpolarity;                     /*!< break polarity */
274     uint16_t outputautostate;                   /*!< output automatic enable */
275     uint16_t protectmode;                       /*!< complementary register protect control */
276     uint16_t breakstate;                        /*!< break enable */
277 }timer_break_parameter_struct;
278 
279 /* channel output parameter struct definitions */
280 typedef struct
281 {
282     uint16_t outputstate;                       /*!< channel output state */
283     uint16_t outputnstate;                      /*!< channel complementary output state */
284     uint16_t ocpolarity;                        /*!< channel output polarity */
285     uint16_t ocnpolarity;                       /*!< channel complementary output polarity */
286     uint16_t ocidlestate;                       /*!< idle state of channel output */
287     uint16_t ocnidlestate;                      /*!< idle state of channel complementary output */
288 }timer_oc_parameter_struct;
289 
290 /* channel input parameter struct definitions */
291 typedef struct
292 {
293     uint16_t icpolarity;                        /*!< channel input polarity */
294     uint16_t icselection;                       /*!< channel input mode selection */
295     uint16_t icprescaler;                       /*!< channel input capture prescaler */
296     uint16_t icfilter;                          /*!< channel input capture filter control */
297 }timer_ic_parameter_struct;
298 
299 /* TIMER interrupt enable or disable */
300 #define TIMER_INT_UP                        TIMER_DMAINTEN_UPIE                     /*!< update interrupt */
301 #define TIMER_INT_CH0                       TIMER_DMAINTEN_CH0IE                    /*!< channel 0 interrupt */
302 #define TIMER_INT_CH1                       TIMER_DMAINTEN_CH1IE                    /*!< channel 1 interrupt */
303 #define TIMER_INT_CH2                       TIMER_DMAINTEN_CH2IE                    /*!< channel 2 interrupt */
304 #define TIMER_INT_CH3                       TIMER_DMAINTEN_CH3IE                    /*!< channel 3 interrupt */
305 #define TIMER_INT_CMT                       TIMER_DMAINTEN_CMTIE                    /*!< channel commutation interrupt flag */
306 #define TIMER_INT_TRG                       TIMER_DMAINTEN_TRGIE                    /*!< trigger interrupt */
307 #define TIMER_INT_BRK                       TIMER_DMAINTEN_BRKIE                    /*!< break interrupt */
308 
309 /* TIMER flag */
310 #define TIMER_FLAG_UP                       TIMER_INTF_UPIF                         /*!< update flag */
311 #define TIMER_FLAG_CH0                      TIMER_INTF_CH0IF                        /*!< channel 0 flag */
312 #define TIMER_FLAG_CH1                      TIMER_INTF_CH1IF                        /*!< channel 1 flag */
313 #define TIMER_FLAG_CH2                      TIMER_INTF_CH2IF                        /*!< channel 2 flag */
314 #define TIMER_FLAG_CH3                      TIMER_INTF_CH3IF                        /*!< channel 3 flag */
315 #define TIMER_FLAG_CMT                      TIMER_INTF_CMTIF                        /*!< channel commutation flag */
316 #define TIMER_FLAG_TRG                      TIMER_INTF_TRGIF                        /*!< trigger flag */
317 #define TIMER_FLAG_BRK                      TIMER_INTF_BRKIF                        /*!< break flag */
318 #define TIMER_FLAG_CH0O                     TIMER_INTF_CH0OF                        /*!< channel 0 overcapture flag */
319 #define TIMER_FLAG_CH1O                     TIMER_INTF_CH1OF                        /*!< channel 1 overcapture flag */
320 #define TIMER_FLAG_CH2O                     TIMER_INTF_CH2OF                        /*!< channel 2 overcapture flag */
321 #define TIMER_FLAG_CH3O                     TIMER_INTF_CH3OF                        /*!< channel 3 overcapture flag */
322 
323 /* TIMER interrupt flag */
324 #define TIMER_INT_FLAG_UP                   TIMER_INTF_UPIF                         /*!< update interrupt flag */
325 #define TIMER_INT_FLAG_CH0                  TIMER_INTF_CH0IF                        /*!< channel 0 interrupt flag */
326 #define TIMER_INT_FLAG_CH1                  TIMER_INTF_CH1IF                        /*!< channel 1 interrupt flag */
327 #define TIMER_INT_FLAG_CH2                  TIMER_INTF_CH2IF                        /*!< channel 2 interrupt flag */
328 #define TIMER_INT_FLAG_CH3                  TIMER_INTF_CH3IF                        /*!< channel 3 interrupt flag */
329 #define TIMER_INT_FLAG_CMT                  TIMER_INTF_CMTIF                        /*!< channel commutation interrupt flag */
330 #define TIMER_INT_FLAG_TRG                  TIMER_INTF_TRGIF                        /*!< trigger interrupt flag */
331 #define TIMER_INT_FLAG_BRK                  TIMER_INTF_BRKIF
332 
333 
334 
335 /* TIMER DMA source enable */
336 #define TIMER_DMA_UPD                       ((uint16_t)TIMER_DMAINTEN_UPDEN)        /*!< update DMA enable */
337 #define TIMER_DMA_CH0D                      ((uint16_t)TIMER_DMAINTEN_CH0DEN)       /*!< channel 0 DMA enable */
338 #define TIMER_DMA_CH1D                      ((uint16_t)TIMER_DMAINTEN_CH1DEN)       /*!< channel 1 DMA enable */
339 #define TIMER_DMA_CH2D                      ((uint16_t)TIMER_DMAINTEN_CH2DEN)       /*!< channel 2 DMA enable */
340 #define TIMER_DMA_CH3D                      ((uint16_t)TIMER_DMAINTEN_CH3DEN)       /*!< channel 3 DMA enable */
341 #define TIMER_DMA_CMTD                      ((uint16_t)TIMER_DMAINTEN_CMTDEN)       /*!< commutation DMA request enable */
342 #define TIMER_DMA_TRGD                      ((uint16_t)TIMER_DMAINTEN_TRGDEN)       /*!< trigger DMA enable */
343 
344 /* channel DMA request source selection */
345 #define TIMER_DMAREQUEST_UPDATEEVENT        ((uint8_t)0x00U)                        /*!< DMA request of channel y is sent when update event occurs */
346 #define TIMER_DMAREQUEST_CHANNELEVENT       ((uint8_t)0x01U)                        /*!< DMA request of channel y is sent when channel y event occurs */
347 
348 /* DMA access base address */
349 #define DMACFG_DMATA(regval)                (BITS(0, 4) & ((uint32_t)(regval) << 0U))
350 #define TIMER_DMACFG_DMATA_CTL0             DMACFG_DMATA(0)                         /*!< DMA transfer address is TIMER_CTL0 */
351 #define TIMER_DMACFG_DMATA_CTL1             DMACFG_DMATA(1)                         /*!< DMA transfer address is TIMER_CTL1 */
352 #define TIMER_DMACFG_DMATA_SMCFG            DMACFG_DMATA(2)                         /*!< DMA transfer address is TIMER_SMCFG */
353 #define TIMER_DMACFG_DMATA_DMAINTEN         DMACFG_DMATA(3)                         /*!< DMA transfer address is TIMER_DMAINTEN */
354 #define TIMER_DMACFG_DMATA_INTF             DMACFG_DMATA(4)                         /*!< DMA transfer address is TIMER_INTF */
355 #define TIMER_DMACFG_DMATA_SWEVG            DMACFG_DMATA(5)                         /*!< DMA transfer address is TIMER_SWEVG */
356 #define TIMER_DMACFG_DMATA_CHCTL0           DMACFG_DMATA(6)                         /*!< DMA transfer address is TIMER_CHCTL0 */
357 #define TIMER_DMACFG_DMATA_CHCTL1           DMACFG_DMATA(7)                         /*!< DMA transfer address is TIMER_CHCTL1 */
358 #define TIMER_DMACFG_DMATA_CHCTL2           DMACFG_DMATA(8)                         /*!< DMA transfer address is TIMER_CHCTL2 */
359 #define TIMER_DMACFG_DMATA_CNT              DMACFG_DMATA(9)                         /*!< DMA transfer address is TIMER_CNT */
360 #define TIMER_DMACFG_DMATA_PSC              DMACFG_DMATA(10)                        /*!< DMA transfer address is TIMER_PSC */
361 #define TIMER_DMACFG_DMATA_CAR              DMACFG_DMATA(11)                        /*!< DMA transfer address is TIMER_CAR */
362 #define TIMER_DMACFG_DMATA_CREP             DMACFG_DMATA(12)                        /*!< DMA transfer address is TIMER_CREP */
363 #define TIMER_DMACFG_DMATA_CH0CV            DMACFG_DMATA(13)                        /*!< DMA transfer address is TIMER_CH0CV */
364 #define TIMER_DMACFG_DMATA_CH1CV            DMACFG_DMATA(14)                        /*!< DMA transfer address is TIMER_CH1CV */
365 #define TIMER_DMACFG_DMATA_CH2CV            DMACFG_DMATA(15)                        /*!< DMA transfer address is TIMER_CH2CV */
366 #define TIMER_DMACFG_DMATA_CH3CV            DMACFG_DMATA(16)                        /*!< DMA transfer address is TIMER_CH3CV */
367 #define TIMER_DMACFG_DMATA_CCHP             DMACFG_DMATA(17)                        /*!< DMA transfer address is TIMER_CCHP */
368 #define TIMER_DMACFG_DMATA_DMACFG           DMACFG_DMATA(18)                        /*!< DMA transfer address is TIMER_DMACFG */
369 #define TIMER_DMACFG_DMATA_DMATB            DMACFG_DMATA(19)                        /*!< DMA transfer address is TIMER_DMATB */
370 
371 /* DMA access burst length */
372 #define DMACFG_DMATC(regval)                (BITS(8, 12) & ((uint32_t)(regval) << 8U))
373 #define TIMER_DMACFG_DMATC_1TRANSFER        DMACFG_DMATC(0)                         /*!< DMA transfer 1 time */
374 #define TIMER_DMACFG_DMATC_2TRANSFER        DMACFG_DMATC(1)                         /*!< DMA transfer 2 times */
375 #define TIMER_DMACFG_DMATC_3TRANSFER        DMACFG_DMATC(2)                         /*!< DMA transfer 3 times */
376 #define TIMER_DMACFG_DMATC_4TRANSFER        DMACFG_DMATC(3)                         /*!< DMA transfer 4 times */
377 #define TIMER_DMACFG_DMATC_5TRANSFER        DMACFG_DMATC(4)                         /*!< DMA transfer 5 times */
378 #define TIMER_DMACFG_DMATC_6TRANSFER        DMACFG_DMATC(5)                         /*!< DMA transfer 6 times */
379 #define TIMER_DMACFG_DMATC_7TRANSFER        DMACFG_DMATC(6)                         /*!< DMA transfer 7 times */
380 #define TIMER_DMACFG_DMATC_8TRANSFER        DMACFG_DMATC(7)                         /*!< DMA transfer 8 times */
381 #define TIMER_DMACFG_DMATC_9TRANSFER        DMACFG_DMATC(8)                         /*!< DMA transfer 9 times */
382 #define TIMER_DMACFG_DMATC_10TRANSFER       DMACFG_DMATC(9)                         /*!< DMA transfer 10 times */
383 #define TIMER_DMACFG_DMATC_11TRANSFER       DMACFG_DMATC(10)                        /*!< DMA transfer 11 times */
384 #define TIMER_DMACFG_DMATC_12TRANSFER       DMACFG_DMATC(11)                        /*!< DMA transfer 12 times */
385 #define TIMER_DMACFG_DMATC_13TRANSFER       DMACFG_DMATC(12)                        /*!< DMA transfer 13 times */
386 #define TIMER_DMACFG_DMATC_14TRANSFER       DMACFG_DMATC(13)                        /*!< DMA transfer 14 times */
387 #define TIMER_DMACFG_DMATC_15TRANSFER       DMACFG_DMATC(14)                        /*!< DMA transfer 15 times */
388 #define TIMER_DMACFG_DMATC_16TRANSFER       DMACFG_DMATC(15)                        /*!< DMA transfer 16 times */
389 #define TIMER_DMACFG_DMATC_17TRANSFER       DMACFG_DMATC(16)                        /*!< DMA transfer 17 times */
390 #define TIMER_DMACFG_DMATC_18TRANSFER       DMACFG_DMATC(17)                        /*!< DMA transfer 18 times */
391 
392 /* TIMER software event generation source */
393 #define TIMER_EVENT_SRC_UPG                 ((uint16_t)0x0001U)                     /*!< update event generation */
394 #define TIMER_EVENT_SRC_CH0G                ((uint16_t)0x0002U)                     /*!< channel 0 capture or compare event generation */
395 #define TIMER_EVENT_SRC_CH1G                ((uint16_t)0x0004U)                     /*!< channel 1 capture or compare event generation */
396 #define TIMER_EVENT_SRC_CH2G                ((uint16_t)0x0008U)                     /*!< channel 2 capture or compare event generation */
397 #define TIMER_EVENT_SRC_CH3G                ((uint16_t)0x0010U)                     /*!< channel 3 capture or compare event generation */
398 #define TIMER_EVENT_SRC_CMTG                ((uint16_t)0x0020U)                     /*!< channel commutation event generation */
399 #define TIMER_EVENT_SRC_TRGG                ((uint16_t)0x0040U)                     /*!< trigger event generation */
400 #define TIMER_EVENT_SRC_BRKG                ((uint16_t)0x0080U)                     /*!< break event generation */
401 
402 /* center-aligned mode selection */
403 #define CTL0_CAM(regval)                    ((uint16_t)(BITS(5, 6) & ((uint32_t)(regval) << 5U)))
404 #define TIMER_COUNTER_EDGE                  CTL0_CAM(0)                             /*!< edge-aligned mode */
405 #define TIMER_COUNTER_CENTER_DOWN           CTL0_CAM(1)                             /*!< center-aligned and counting down assert mode */
406 #define TIMER_COUNTER_CENTER_UP             CTL0_CAM(2)                             /*!< center-aligned and counting up assert mode */
407 #define TIMER_COUNTER_CENTER_BOTH           CTL0_CAM(3)                             /*!< center-aligned and counting up/down assert mode */
408 
409 /* TIMER prescaler reload mode */
410 #define TIMER_PSC_RELOAD_NOW                ((uint32_t)0x00000000U)                        /*!< the prescaler is loaded right now */
411 #define TIMER_PSC_RELOAD_UPDATE             ((uint32_t)0x00000001U)                        /*!< the prescaler is loaded at the next update event */
412 
413 /* count direction */
414 #define TIMER_COUNTER_UP                    ((uint16_t)0x0000U)                     /*!< counter up direction */
415 #define TIMER_COUNTER_DOWN                  ((uint16_t)TIMER_CTL0_DIR)              /*!< counter down direction */
416 
417 /* specify division ratio between TIMER clock and dead-time and sampling clock */
418 #define CTL0_CKDIV(regval)                  ((uint16_t)(BITS(8, 9) & ((uint32_t)(regval) << 8U)))
419 #define TIMER_CKDIV_DIV1                    CTL0_CKDIV(0)                           /*!< clock division value is 1,fDTS=fTIMER_CK */
420 #define TIMER_CKDIV_DIV2                    CTL0_CKDIV(1)                           /*!< clock division value is 2,fDTS= fTIMER_CK/2 */
421 #define TIMER_CKDIV_DIV4                    CTL0_CKDIV(2)                           /*!< clock division value is 4, fDTS= fTIMER_CK/4 */
422 
423 /* single pulse mode */
424 #define TIMER_SP_MODE_SINGLE                ((uint32_t)0x00000000U)                        /*!< single pulse mode */
425 #define TIMER_SP_MODE_REPETITIVE            ((uint32_t)0x00000001U)                        /*!< repetitive pulse mode */
426 
427 /* update source */
428 #define TIMER_UPDATE_SRC_REGULAR            ((uint32_t)0x00000000U)                        /*!< update generate only by counter overflow/underflow */
429 #define TIMER_UPDATE_SRC_GLOBAL             ((uint32_t)0x00000001U)                        /*!< update generate by setting of UPG bit or the counter overflow/underflow,or the slave mode controller trigger */
430 
431 /* run mode off-state configure */
432 #define TIMER_ROS_STATE_ENABLE              ((uint16_t)TIMER_CCHP_ROS)              /*!< when POEN bit is set, the channel output signals (CHx_O/CHx_ON) are enabled, with relationship to CHxEN/CHxNEN bits */
433 #define TIMER_ROS_STATE_DISABLE             ((uint16_t)0x0000U)                     /*!< when POEN bit is set, the channel output signals (CHx_O/CHx_ON) are disabled */
434 
435 /* idle mode off-state configure */
436 #define TIMER_IOS_STATE_ENABLE              ((uint16_t)TIMER_CCHP_IOS)              /*!< when POEN bit is reset, he channel output signals (CHx_O/CHx_ON) are enabled, with relationship to CHxEN/CHxNEN bits */
437 #define TIMER_IOS_STATE_DISABLE             ((uint16_t)0x0000U)                     /*!< when POEN bit is reset, the channel output signals (CHx_O/CHx_ON) are disabled */
438 
439 /* break input polarity */
440 #define TIMER_BREAK_POLARITY_LOW            ((uint16_t)0x0000U)                     /*!< break input polarity is low */
441 #define TIMER_BREAK_POLARITY_HIGH           ((uint16_t)TIMER_CCHP_BRKP)             /*!< break input polarity is high */
442 
443 /* output automatic enable */
444 #define TIMER_OUTAUTO_ENABLE                ((uint16_t)TIMER_CCHP_OAEN)             /*!< output automatic enable */
445 #define TIMER_OUTAUTO_DISABLE               ((uint16_t)0x0000U)                     /*!< output automatic disable */
446 
447 /* complementary register protect control */
448 #define CCHP_PROT(regval)                   ((uint16_t)(BITS(8, 9) & ((uint32_t)(regval) << 8U)))
449 #define TIMER_CCHP_PROT_OFF                 CCHP_PROT(0)                            /*!< protect disable */
450 #define TIMER_CCHP_PROT_0                   CCHP_PROT(1)                            /*!< PROT mode 0 */
451 #define TIMER_CCHP_PROT_1                   CCHP_PROT(2)                            /*!< PROT mode 1 */
452 #define TIMER_CCHP_PROT_2                   CCHP_PROT(3)                            /*!< PROT mode 2 */
453 
454 /* break input enable */
455 #define TIMER_BREAK_ENABLE                  ((uint16_t)TIMER_CCHP_BRKEN)            /*!< break input enable */
456 #define TIMER_BREAK_DISABLE                 ((uint16_t)0x0000U)                     /*!< break input disable */
457 
458 /* TIMER channel n(n=0,1,2,3) */
459 #define TIMER_CH_0                          ((uint16_t)0x0000U)                     /*!< TIMER channel 0(TIMERx(x=0..4,7..13)) */
460 #define TIMER_CH_1                          ((uint16_t)0x0001U)                     /*!< TIMER channel 1(TIMERx(x=0..4,7,8,11)) */
461 #define TIMER_CH_2                          ((uint16_t)0x0002U)                     /*!< TIMER channel 2(TIMERx(x=0..4,7)) */
462 #define TIMER_CH_3                          ((uint16_t)0x0003U)                     /*!< TIMER channel 3(TIMERx(x=0..4,7)) */
463 
464 /* channel enable state*/
465 #define TIMER_CCX_ENABLE                    ((uint32_t)0x00000001U)                 /*!< channel enable */
466 #define TIMER_CCX_DISABLE                   ((uint32_t)0x00000000U)                 /*!< channel disable */
467 
468 /* channel complementary output enable state*/
469 #define TIMER_CCXN_ENABLE                   ((uint16_t)0x0004U)                     /*!< channel complementary enable */
470 #define TIMER_CCXN_DISABLE                  ((uint16_t)0x0000U)                     /*!< channel complementary disable */
471 
472 /* channel output polarity */
473 #define TIMER_OC_POLARITY_HIGH              ((uint16_t)0x0000U)                     /*!< channel output polarity is high */
474 #define TIMER_OC_POLARITY_LOW               ((uint16_t)0x0002U)                     /*!< channel output polarity is low */
475 
476 /* channel complementary output polarity */
477 #define TIMER_OCN_POLARITY_HIGH             ((uint16_t)0x0000U)                     /*!< channel complementary output polarity is high */
478 #define TIMER_OCN_POLARITY_LOW              ((uint16_t)0x0008U)                     /*!< channel complementary output polarity is low */
479 
480 /* idle state of channel output */
481 #define TIMER_OC_IDLE_STATE_HIGH            ((uint16_t)0x0100)                      /*!< idle state of channel output is high */
482 #define TIMER_OC_IDLE_STATE_LOW             ((uint16_t)0x0000)                      /*!< idle state of channel output is low */
483 
484 /* idle state of channel complementary output */
485 #define TIMER_OCN_IDLE_STATE_HIGH           ((uint16_t)0x0200U)                     /*!< idle state of channel complementary output is high */
486 #define TIMER_OCN_IDLE_STATE_LOW            ((uint16_t)0x0000U)                     /*!< idle state of channel complementary output is low */
487 
488 /* channel output compare mode */
489 #define TIMER_OC_MODE_TIMING                ((uint16_t)0x0000U)                     /*!< timing mode */
490 #define TIMER_OC_MODE_ACTIVE                ((uint16_t)0x0010U)                     /*!< active mode */
491 #define TIMER_OC_MODE_INACTIVE              ((uint16_t)0x0020U)                     /*!< inactive mode */
492 #define TIMER_OC_MODE_TOGGLE                ((uint16_t)0x0030U)                     /*!< toggle mode */
493 #define TIMER_OC_MODE_LOW                   ((uint16_t)0x0040U)                     /*!< force low mode */
494 #define TIMER_OC_MODE_HIGH                  ((uint16_t)0x0050U)                     /*!< force high mode */
495 #define TIMER_OC_MODE_PWM0                  ((uint16_t)0x0060U)                     /*!< PWM0 mode */
496 #define TIMER_OC_MODE_PWM1                  ((uint16_t)0x0070U)                     /*!< PWM1 mode*/
497 
498 /* channel output compare shadow enable */
499 #define TIMER_OC_SHADOW_ENABLE              ((uint16_t)0x0008U)                     /*!< channel output shadow state enable */
500 #define TIMER_OC_SHADOW_DISABLE             ((uint16_t)0x0000U)                     /*!< channel output shadow state disable */
501 
502 /* channel output compare fast enable */
503 #define TIMER_OC_FAST_ENABLE                ((uint16_t)0x0004)                      /*!< channel output fast function enable */
504 #define TIMER_OC_FAST_DISABLE               ((uint16_t)0x0000)                      /*!< channel output fast function disable */
505 
506 /* channel output compare clear enable */
507 #define TIMER_OC_CLEAR_ENABLE               ((uint16_t)0x0080U)                     /*!< channel output clear function enable */
508 #define TIMER_OC_CLEAR_DISABLE              ((uint16_t)0x0000U)                     /*!< channel output clear function disable */
509 
510 /* channel control shadow register update control */
511 #define TIMER_UPDATECTL_CCU                 ((uint32_t)0x00000000U)                 /*!< the shadow registers are updated when CMTG bit is set */
512 #define TIMER_UPDATECTL_CCUTRI              ((uint32_t)0x00000001U)                        /*!< the shadow registers update by when CMTG bit is set or an rising edge of TRGI occurs */
513 
514 /* channel input capture polarity */
515 #define TIMER_IC_POLARITY_RISING            ((uint16_t)0x0000U)                     /*!< input capture rising edge */
516 #define TIMER_IC_POLARITY_FALLING           ((uint16_t)0x0002U)                     /*!< input capture falling edge */
517 
518 /* TIMER input capture selection */
519 #define TIMER_IC_SELECTION_DIRECTTI         ((uint16_t)0x0001U)                     /*!< channel y is configured as input and icy is mapped on CIy */
520 #define TIMER_IC_SELECTION_INDIRECTTI       ((uint16_t)0x0002U)                     /*!< channel y is configured as input and icy is mapped on opposite input */
521 #define TIMER_IC_SELECTION_ITS              ((uint16_t)0x0003U)                     /*!< channel y is configured as input and icy is mapped on ITS */
522 
523 /* channel input capture prescaler */
524 #define TIMER_IC_PSC_DIV1                   ((uint16_t)0x0000U)                     /*!< no prescaler */
525 #define TIMER_IC_PSC_DIV2                   ((uint16_t)0x0004U)                     /*!< divided by 2 */
526 #define TIMER_IC_PSC_DIV4                   ((uint16_t)0x0008U)                     /*!< divided by 4*/
527 #define TIMER_IC_PSC_DIV8                   ((uint16_t)0x000CU)                     /*!< divided by 8 */
528 
529 /* trigger selection */
530 #define SMCFG_TRGSEL(regval)                (BITS(4, 6) & ((uint32_t)(regval) << 4U))
531 #define TIMER_SMCFG_TRGSEL_ITI0              SMCFG_TRGSEL(0)                        /*!< internal trigger 0 */
532 #define TIMER_SMCFG_TRGSEL_ITI1              SMCFG_TRGSEL(1)                        /*!< internal trigger 1 */
533 #define TIMER_SMCFG_TRGSEL_ITI2              SMCFG_TRGSEL(2)                        /*!< internal trigger 2 */
534 #define TIMER_SMCFG_TRGSEL_ITI3              SMCFG_TRGSEL(3)                        /*!< internal trigger 3 */
535 #define TIMER_SMCFG_TRGSEL_CI0F_ED           SMCFG_TRGSEL(4)                        /*!< TI0 Edge Detector */
536 #define TIMER_SMCFG_TRGSEL_CI0FE0            SMCFG_TRGSEL(5)                        /*!< filtered TIMER input 0 */
537 #define TIMER_SMCFG_TRGSEL_CI1FE1            SMCFG_TRGSEL(6)                        /*!< filtered TIMER input 1 */
538 #define TIMER_SMCFG_TRGSEL_ETIFP             SMCFG_TRGSEL(7)                        /*!< external trigger */
539 
540 /* master mode control */
541 #define CTL1_MMC(regval)                    (BITS(4, 6) & ((uint32_t)(regval) << 4U))
542 #define TIMER_TRI_OUT_SRC_RESET             CTL1_MMC(0)                             /*!< the UPG bit as trigger output */
543 #define TIMER_TRI_OUT_SRC_ENABLE            CTL1_MMC(1)                             /*!< the counter enable signal TIMER_CTL0_CEN as trigger output */
544 #define TIMER_TRI_OUT_SRC_UPDATE            CTL1_MMC(2)                             /*!< update event as trigger output */
545 #define TIMER_TRI_OUT_SRC_CH0               CTL1_MMC(3)                             /*!< a capture or a compare match occurred in channal0 as trigger output TRGO */
546 #define TIMER_TRI_OUT_SRC_O0CPRE            CTL1_MMC(4)                             /*!< O0CPRE as trigger output */
547 #define TIMER_TRI_OUT_SRC_O1CPRE            CTL1_MMC(5)                             /*!< O1CPRE as trigger output */
548 #define TIMER_TRI_OUT_SRC_O2CPRE            CTL1_MMC(6)                             /*!< O2CPRE as trigger output */
549 #define TIMER_TRI_OUT_SRC_O3CPRE            CTL1_MMC(7)                             /*!< O3CPRE as trigger output */
550 
551 /* slave mode control */
552 #define SMCFG_SMC(regval)                   (BITS(0, 2) & ((uint32_t)(regval) << 0U))
553 #define TIMER_SLAVE_MODE_DISABLE            SMCFG_SMC(0)                            /*!< slave mode disable */
554 #define TIMER_ENCODER_MODE0                 SMCFG_SMC(1)                            /*!< encoder mode 0 */
555 #define TIMER_ENCODER_MODE1                 SMCFG_SMC(2)                            /*!< encoder mode 1 */
556 #define TIMER_ENCODER_MODE2                 SMCFG_SMC(3)                            /*!< encoder mode 2 */
557 #define TIMER_SLAVE_MODE_RESTART            SMCFG_SMC(4)                            /*!< restart mode */
558 #define TIMER_SLAVE_MODE_PAUSE              SMCFG_SMC(5)                            /*!< pause mode */
559 #define TIMER_SLAVE_MODE_EVENT              SMCFG_SMC(6)                            /*!< event mode */
560 #define TIMER_SLAVE_MODE_EXTERNAL0          SMCFG_SMC(7)                            /*!< external clock mode 0 */
561 
562 /* master slave mode selection */
563 #define TIMER_MASTER_SLAVE_MODE_ENABLE      ((uint32_t)0x00000000U)                        /*!< master slave mode enable */
564 #define TIMER_MASTER_SLAVE_MODE_DISABLE     ((uint32_t)0x00000001U)                        /*!< master slave mode disable */
565 
566 /* external trigger prescaler */
567 #define SMCFG_ETPSC(regval)                 (BITS(12, 13) & ((uint32_t)(regval) << 12U))
568 #define TIMER_EXT_TRI_PSC_OFF               SMCFG_ETPSC(0)                          /*!< no divided */
569 #define TIMER_EXT_TRI_PSC_DIV2              SMCFG_ETPSC(1)                          /*!< divided by 2 */
570 #define TIMER_EXT_TRI_PSC_DIV4              SMCFG_ETPSC(2)                          /*!< divided by 4 */
571 #define TIMER_EXT_TRI_PSC_DIV8              SMCFG_ETPSC(3)                          /*!< divided by 8 */
572 
573 /* external trigger polarity */
574 #define TIMER_ETP_FALLING                   TIMER_SMCFG_ETP                         /*!< active low or falling edge active */
575 #define TIMER_ETP_RISING                    ((uint32_t)0x00000000U)                 /*!< active high or rising edge active */
576 
577 /* channel 0 trigger input selection */
578 #define TIMER_HALLINTERFACE_ENABLE          ((uint32_t)0x00000000U)                        /*!< TIMER hall sensor mode enable */
579 #define TIMER_HALLINTERFACE_DISABLE         ((uint32_t)0x00000001U)                        /*!< TIMER hall sensor mode disable */
580 
581 /* TIMERx(x=0,1,2,13,14,15,16) write cc register selection */
582 #define TIMER_CHVSEL_ENABLE                  ((uint16_t)0x0002U)                     /*!< write CHxVAL register selection enable  */
583 #define TIMER_CHVSEL_DISABLE                 ((uint16_t)0x0000U)                     /*!< write CHxVAL register selection disable */
584 
585 /* the output value selection */
586 #define TIMER_OUTSEL_ENABLE                 ((uint16_t)0x0001U)                     /*!< output value selection enable */
587 #define TIMER_OUTSEL_DISABLE                ((uint16_t)0x0000U)                     /*!< output value selection disable */
588 
589 
590 /* function declarations */
591 /* TIMER timebase */
592 /* deinit a TIMER */
593 void timer_deinit(uint32_t timer_periph);
594 /* initialize TIMER init parameter struct */
595 void timer_struct_para_init(timer_parameter_struct* initpara);
596 /* initialize TIMER counter */
597 void gd32_timer_init(uint32_t timer_periph, timer_parameter_struct* initpara);
598 /* enable a TIMER */
599 void timer_enable(uint32_t timer_periph);
600 /* disable a TIMER */
601 void timer_disable(uint32_t timer_periph);
602 /* enable the auto reload shadow function */
603 void timer_auto_reload_shadow_enable(uint32_t timer_periph);
604 /* disable the auto reload shadow function */
605 void timer_auto_reload_shadow_disable(uint32_t timer_periph);
606 /* enable the update event */
607 void timer_update_event_enable(uint32_t timer_periph);
608 /* disable the update event */
609 void timer_update_event_disable(uint32_t timer_periph);
610 /* set TIMER counter alignment mode */
611 void timer_counter_alignment(uint32_t timer_periph, uint16_t aligned);
612 /* set TIMER counter up direction */
613 void timer_counter_up_direction(uint32_t timer_periph);
614 /* set TIMER counter down direction */
615 void timer_counter_down_direction(uint32_t timer_periph);
616 /* configure TIMER prescaler */
617 void timer_prescaler_config(uint32_t timer_periph, uint16_t prescaler, uint8_t pscreload);
618 /* configure TIMER repetition register value */
619 void timer_repetition_value_config(uint32_t timer_periph, uint16_t repetition);
620 /* configure TIMER autoreload register value */
621 void timer_autoreload_value_config(uint32_t timer_periph, uint16_t autoreload);
622 /* configure TIMER counter register value */
623 void timer_counter_value_config(uint32_t timer_periph , uint16_t counter);
624 /* read TIMER counter value */
625 uint32_t timer_counter_read(uint32_t timer_periph);
626 /* read TIMER prescaler value */
627 uint16_t timer_prescaler_read(uint32_t timer_periph);
628 /* configure TIMER single pulse mode */
629 void timer_single_pulse_mode_config(uint32_t timer_periph, uint32_t spmode);
630 /* configure TIMER update source */
631 void timer_update_source_config(uint32_t timer_periph, uint32_t update);
632 
633 /* TIMER interrupt and flag*/
634 /* enable the TIMER interrupt */
635 void timer_interrupt_enable(uint32_t timer_periph, uint32_t interrupt);
636 /* disable the TIMER interrupt */
637 void timer_interrupt_disable(uint32_t timer_periph, uint32_t interrupt);
638 /* get timer interrupt flag */
639 FlagStatus timer_interrupt_flag_get(uint32_t timer_periph, uint32_t interrupt);
640 /* clear TIMER interrupt flag */
641 void timer_interrupt_flag_clear(uint32_t timer_periph, uint32_t interrupt);
642 /* get TIMER flags */
643 FlagStatus timer_flag_get(uint32_t timer_periph, uint32_t flag);
644 /* clear TIMER flags */
645 void timer_flag_clear(uint32_t timer_periph, uint32_t flag);
646 
647 /* timer DMA and event*/
648 /* enable the TIMER DMA */
649 void timer_dma_enable(uint32_t timer_periph, uint16_t dma);
650 /* disable the TIMER DMA */
651 void timer_dma_disable(uint32_t timer_periph, uint16_t dma);
652 /* channel DMA request source selection */
653 void timer_channel_dma_request_source_select(uint32_t timer_periph, uint8_t dma_request);
654 /* configure the TIMER DMA transfer */
655 void timer_dma_transfer_config(uint32_t timer_periph,uint32_t dma_baseaddr, uint32_t dma_lenth);
656 /* software generate events */
657 void timer_event_software_generate(uint32_t timer_periph, uint16_t event);
658 
659 /* TIMER channel complementary protection */
660 /* initialize TIMER break parameter struct */
661 void timer_break_struct_para_init(timer_break_parameter_struct* breakpara);
662 /* configure TIMER break function */
663 void timer_break_config(uint32_t timer_periph, timer_break_parameter_struct* breakpara);
664 /* enable TIMER break function */
665 void timer_break_enable(uint32_t timer_periph);
666 /* disable TIMER break function */
667 void timer_break_disable(uint32_t timer_periph);
668 /* enable TIMER output automatic function */
669 void timer_automatic_output_enable(uint32_t timer_periph);
670 /* disable TIMER output automatic function */
671 void timer_automatic_output_disable(uint32_t timer_periph);
672 /* enable or disable TIMER primary output function */
673 void timer_primary_output_config(uint32_t timer_periph, ControlStatus newvalue);
674 /* enable or disable channel capture/compare control shadow register */
675 void timer_channel_control_shadow_config(uint32_t timer_periph, ControlStatus newvalue);
676 /* configure TIMER channel control shadow register update control */
677 void timer_channel_control_shadow_update_config(uint32_t timer_periph, uint8_t ccuctl);
678 
679 /* TIMER channel output */
680 /* initialize TIMER channel output parameter struct */
681 void timer_channel_output_struct_para_init(timer_oc_parameter_struct* ocpara);
682 /* configure TIMER channel output function */
683 void timer_channel_output_config(uint32_t timer_periph,uint16_t channel, timer_oc_parameter_struct* ocpara);
684 /* configure TIMER channel output compare mode */
685 void timer_channel_output_mode_config(uint32_t timer_periph, uint16_t channel,uint16_t ocmode);
686 /* configure TIMER channel output pulse value */
687 void timer_channel_output_pulse_value_config(uint32_t timer_periph, uint16_t channel, uint32_t pulse);
688 /* configure TIMER channel output shadow function */
689 void timer_channel_output_shadow_config(uint32_t timer_periph, uint16_t channel, uint16_t ocshadow);
690 /* configure TIMER channel output fast function */
691 void timer_channel_output_fast_config(uint32_t timer_periph, uint16_t channel, uint16_t ocfast);
692 /* configure TIMER channel output clear function */
693 void timer_channel_output_clear_config(uint32_t timer_periph,uint16_t channel,uint16_t occlear);
694 /* configure TIMER channel output polarity */
695 void timer_channel_output_polarity_config(uint32_t timer_periph, uint16_t channel, uint16_t ocpolarity);
696 /* configure TIMER channel complementary output polarity */
697 void timer_channel_complementary_output_polarity_config(uint32_t timer_periph, uint16_t channel, uint16_t ocnpolarity);
698 /* configure TIMER channel enable state */
699 void timer_channel_output_state_config(uint32_t timer_periph, uint16_t channel, uint32_t state);
700 /* configure TIMER channel complementary output enable state */
701 void timer_channel_complementary_output_state_config(uint32_t timer_periph, uint16_t channel, uint16_t ocnstate);
702 
703 /* TIMER channel input */
704 /* initialize TIMER channel input parameter struct */
705 void timer_channel_input_struct_para_init(timer_ic_parameter_struct* icpara);
706 /* configure TIMER input capture parameter */
707 void timer_input_capture_config(uint32_t timer_periph, uint16_t channel, timer_ic_parameter_struct* icpara);
708 /* configure TIMER channel input capture prescaler value */
709 void timer_channel_input_capture_prescaler_config(uint32_t timer_periph, uint16_t channel, uint16_t prescaler);
710 /* read TIMER channel capture compare register value */
711 uint32_t timer_channel_capture_value_register_read(uint32_t timer_periph, uint16_t channel);
712 /* configure TIMER input pwm capture function */
713 void timer_input_pwm_capture_config(uint32_t timer_periph, uint16_t channel, timer_ic_parameter_struct* icpwm);
714 /* configure TIMER hall sensor mode */
715 void timer_hall_mode_config(uint32_t timer_periph, uint32_t hallmode);
716 
717 /* TIMER master and slave */
718 /* select TIMER input trigger source */
719 void timer_input_trigger_source_select(uint32_t timer_periph, uint32_t intrigger);
720 /* select TIMER master mode output trigger source */
721 void timer_master_output_trigger_source_select(uint32_t timer_periph, uint32_t outrigger);
722 /* select TIMER slave mode */
723 void timer_slave_mode_select(uint32_t timer_periph,uint32_t slavemode);
724 /* configure TIMER master slave mode */
725 void timer_master_slave_mode_config(uint32_t timer_periph, uint32_t masterslave);
726 /* configure TIMER external trigger input */
727 void timer_external_trigger_config(uint32_t timer_periph, uint32_t extprescaler, uint32_t extpolarity, uint32_t extfilter);
728 /* configure TIMER quadrature decoder mode */
729 void timer_quadrature_decoder_mode_config(uint32_t timer_periph, uint32_t decomode, uint16_t ic0polarity, uint16_t ic1polarity);
730 /* configure TIMER internal clock mode */
731 void timer_internal_clock_config(uint32_t timer_periph);
732 /* configure TIMER the internal trigger as external clock input */
733 void timer_internal_trigger_as_external_clock_config(uint32_t timer_periph, uint32_t intrigger);
734 /* configure TIMER the external trigger as external clock input */
735 void timer_external_trigger_as_external_clock_config(uint32_t timer_periph, uint32_t extrigger, uint16_t extpolarity,uint32_t extfilter);
736 /* configure TIMER the external clock mode 0 */
737 void timer_external_clock_mode0_config(uint32_t timer_periph, uint32_t extprescaler, uint32_t extpolarity, uint32_t extfilter);
738 /* configure TIMER the external clock mode 1 */
739 void timer_external_clock_mode1_config(uint32_t timer_periph, uint32_t extprescaler, uint32_t extpolarity, uint32_t extfilter);
740 /* disable TIMER the external clock mode 1 */
741 void timer_external_clock_mode1_disable(uint32_t timer_periph);
742 
743 /* TIMER configure */
744 /* configure TIMER write CHxVAL register selection */
745 void timer_write_chxval_register_config(uint32_t timer_periph, uint16_t ccsel);
746 /* configure TIMER output value selection */
747 void timer_output_value_selection_config(uint32_t timer_periph, uint16_t outsel);
748 
749 #endif /* GD32F403_TIMER_H */
750