mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-07 02:08:02 +07:00

Add support for TRGO2 trigger that can be found on STM32F7. Add additional master modes supported by TRGO2. Register additional "tim[1/8]_trgo2" triggers for timer1 & timer8. Detect TRGO2 timer capability (master mode selection 2). Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com> Acked-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
65 lines
1.4 KiB
C
65 lines
1.4 KiB
C
/*
|
|
* Copyright (C) STMicroelectronics 2016
|
|
*
|
|
* Author: Benjamin Gaignard <benjamin.gaignard@st.com>
|
|
*
|
|
* License terms: GNU General Public License (GPL), version 2
|
|
*/
|
|
|
|
#ifndef _STM32_TIMER_TRIGGER_H_
|
|
#define _STM32_TIMER_TRIGGER_H_
|
|
|
|
#define TIM1_TRGO "tim1_trgo"
|
|
#define TIM1_TRGO2 "tim1_trgo2"
|
|
#define TIM1_CH1 "tim1_ch1"
|
|
#define TIM1_CH2 "tim1_ch2"
|
|
#define TIM1_CH3 "tim1_ch3"
|
|
#define TIM1_CH4 "tim1_ch4"
|
|
|
|
#define TIM2_TRGO "tim2_trgo"
|
|
#define TIM2_CH1 "tim2_ch1"
|
|
#define TIM2_CH2 "tim2_ch2"
|
|
#define TIM2_CH3 "tim2_ch3"
|
|
#define TIM2_CH4 "tim2_ch4"
|
|
|
|
#define TIM3_TRGO "tim3_trgo"
|
|
#define TIM3_CH1 "tim3_ch1"
|
|
#define TIM3_CH2 "tim3_ch2"
|
|
#define TIM3_CH3 "tim3_ch3"
|
|
#define TIM3_CH4 "tim3_ch4"
|
|
|
|
#define TIM4_TRGO "tim4_trgo"
|
|
#define TIM4_CH1 "tim4_ch1"
|
|
#define TIM4_CH2 "tim4_ch2"
|
|
#define TIM4_CH3 "tim4_ch3"
|
|
#define TIM4_CH4 "tim4_ch4"
|
|
|
|
#define TIM5_TRGO "tim5_trgo"
|
|
#define TIM5_CH1 "tim5_ch1"
|
|
#define TIM5_CH2 "tim5_ch2"
|
|
#define TIM5_CH3 "tim5_ch3"
|
|
#define TIM5_CH4 "tim5_ch4"
|
|
|
|
#define TIM6_TRGO "tim6_trgo"
|
|
|
|
#define TIM7_TRGO "tim7_trgo"
|
|
|
|
#define TIM8_TRGO "tim8_trgo"
|
|
#define TIM8_TRGO2 "tim8_trgo2"
|
|
#define TIM8_CH1 "tim8_ch1"
|
|
#define TIM8_CH2 "tim8_ch2"
|
|
#define TIM8_CH3 "tim8_ch3"
|
|
#define TIM8_CH4 "tim8_ch4"
|
|
|
|
#define TIM9_TRGO "tim9_trgo"
|
|
#define TIM9_CH1 "tim9_ch1"
|
|
#define TIM9_CH2 "tim9_ch2"
|
|
|
|
#define TIM12_TRGO "tim12_trgo"
|
|
#define TIM12_CH1 "tim12_ch1"
|
|
#define TIM12_CH2 "tim12_ch2"
|
|
|
|
bool is_stm32_timer_trigger(struct iio_trigger *trig);
|
|
|
|
#endif
|