Lines Matching +full:stm32 +full:- +full:timer +full:- +full:counter
1 /* SPDX-License-Identifier: GPL-2.0 */
12 #include <linux/dma-mapping.h>
24 #define TIM_CNT 0x24 /* Counter */
26 #define TIM_ARR 0x2c /* Auto-Reload Register */
31 #define TIM_BDTR 0x44 /* Break and Dead-Time Reg */
35 #define TIM_CR1_CEN BIT(0) /* Counter Enable */
36 #define TIM_CR1_DIR BIT(4) /* Counter Direction */
37 #define TIM_CR1_ARPE BIT(7) /* Auto-reload Preload Ena */
105 * struct stm32_timers_dma - STM32 timer DMA handling.
110 * @chans: DMA channels available for this timer instance
140 return -ENODEV; in stm32_timers_dma_burst_read()