/* SPC5 HAL - Copyright (C) 2013 STMicroelectronics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /** * @file eTimer_v1/icu_lld.h * @brief SPC5xx low level ICU driver header. * * @addtogroup ICU * @{ */ #ifndef _ICU_LLD_H_ #define _ICU_LLD_H_ #if HAL_USE_ICU || defined(__DOXYGEN__) #include "spc5_etimer.h" /*===========================================================================*/ /* Driver constants. */ /*===========================================================================*/ /** * @name Mode options * @{ */ /** * @brief Skip first capture cycle. * @details If set to @p TRUE the first capture cycle is skipped. * @note The default is @p FALSE. */ #if !defined(ICU_JUMP_FIRST_CAPTURE) || defined(__DOXYGEN__) #define ICU_SKIP_FIRST_CAPTURE FALSE #endif #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_1 0x18 #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_2 0x19 #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_4 0x1A #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_8 0x1B #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_16 0x1C #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_32 0x1D #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_64 0x1E #define SPC5_ETIMER_IP_BUS_CLOCK_DIVIDE_BY_128 0x1F #define SPC5_ETIMER_COUNTER_0_INPUT_PIN 0U #define SPC5_ETIMER_COUNTER_1_INPUT_PIN 1U #define SPC5_ETIMER_COUNTER_2_INPUT_PIN 2U #define SPC5_ETIMER_COUNTER_3_INPUT_PIN 3U #define SPC5_ETIMER_COUNTER_4_INPUT_PIN 4U #define SPC5_ETIMER_COUNTER_5_INPUT_PIN 5U #define SPC5_ETIMER_CNTMODE_NO_OPERATION 0U #define SPC5_ETIMER_CNTMODE_RE 1U #define SPC5_ETIMER_CNTMODE_RFE 2U #define SPC5_ETIMER_CNTMODE_RFE_SIHA 3U #define SPC5_ETIMER_CNTMODE_QUADRATURE 4U #define SPC5_ETIMER_CNTMODE_RE_SSSD 5U #define SPC5_ETIMER_CNTMODE_ESS_TRIGGER 6U #define SPC5_ETIMER_CNTMODE_CASCADE 7U #define SPC5_ETIMER_CPT1MODE_DISABLED 0U #define SPC5_ETIMER_CPT1MODE_FALLING_EDGE 1U #define SPC5_ETIMER_CPT1MODE_RISING_EDGE 2U #define SPC5_ETIMER_CPT1MODE_ANY_EDGE 3U #define SPC5_ETIMER_CPT2MODE_DISABLED 0U #define SPC5_ETIMER_CPT2MODE_FALLING_EDGE 1U #define SPC5_ETIMER_CPT2MODE_RISING_EDGE 2U #define SPC5_ETIMER_CPT2MODE_ANY_EDGE 3U #define SPC5_ETIMER_ROC_DO_NOT_RELOAD 0U #define SPC5_ETIMER_ROC_REL_ON_CAP1 1U #define SPC5_ETIMER_ROC_REL_ON_CAP2 2U #define SPC5_ETIMER_ROC_REL_ON_CAP1_CAP2 3U /** @} */ /*===========================================================================*/ /* Driver pre-compile time settings. */ /*===========================================================================*/ /** * @name Configuration options * @{ */ /** * @brief ICUD1 driver enable switch. * @details If set to @p TRUE the support for ICUD1 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD0) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD0 FALSE #endif /** * @brief ICUD2 driver enable switch. * @details If set to @p TRUE the support for ICUD2 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD1) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD1 FALSE #endif /** * @brief ICUD3 driver enable switch. * @details If set to @p TRUE the support for ICUD3 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD2) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD2 FALSE #endif /** * @brief ICUD4 driver enable switch. * @details If set to @p TRUE the support for ICUD4 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD3) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD3 FALSE #endif /** * @brief ICUD5 driver enable switch. * @details If set to @p TRUE the support for ICUD5 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD4) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD4 FALSE #endif /** * @brief ICUD6 driver enable switch. * @details If set to @p TRUE the support for ICUD6 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD5) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD5 FALSE #endif /** * @brief eTimer0 interrupt priority level setting. */ #if !defined(SPC5_ICU_ETIMER0_PRIORITY) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER0_PRIORITY 7 #endif /** * @brief eTIMER0 peripheral configuration when started. * @note The default configuration is 1 (always run) in run mode and * 2 (only halt) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER0_START_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER0_START_PCTL (SPC5_ME_PCTL_RUN(1) | \ SPC5_ME_PCTL_LP(2)) #endif /** * @brief eTIMER0 peripheral configuration when stopped. * @note The default configuration is 0 (never run) in run mode and * 0 (never run) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER0_STOP_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER0_STOP_PCTL (SPC5_ME_PCTL_RUN(0) | \ SPC5_ME_PCTL_LP(0)) #endif /** * @brief ICUD6 driver enable switch. * @details If set to @p TRUE the support for ICUD6 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD6) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD6 FALSE #endif /** * @brief ICUD7 driver enable switch. * @details If set to @p TRUE the support for ICUD7 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD7) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD7 FALSE #endif /** * @brief ICUD8 driver enable switch. * @details If set to @p TRUE the support for ICUD8 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD8) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD8 FALSE #endif /** * @brief ICUD9 driver enable switch. * @details If set to @p TRUE the support for ICUD9 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD9) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD9 FALSE #endif /** * @brief ICUD10 driver enable switch. * @details If set to @p TRUE the support for ICUD10 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD10) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD10 FALSE #endif /** * @brief ICUD11 driver enable switch. * @details If set to @p TRUE the support for ICUD11 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD11) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD11 FALSE #endif /** * @brief eTimer1 interrupt priority level setting. */ #if !defined(SPC5_ICU_ETIMER1_PRIORITY) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER1_PRIORITY 7 #endif /** * @brief eTIMER1 peripheral configuration when started. * @note The default configuration is 1 (always run) in run mode and * 2 (only halt) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER1_START_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER1_START_PCTL (SPC5_ME_PCTL_RUN(1) | \ SPC5_ME_PCTL_LP(2)) #endif /** * @brief eTIMER1 peripheral configuration when stopped. * @note The default configuration is 0 (never run) in run mode and * 0 (never run) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER1_STOP_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER1_STOP_PCTL (SPC5_ME_PCTL_RUN(0) | \ SPC5_ME_PCTL_LP(0)) #endif /** * @brief ICUD13 driver enable switch. * @details If set to @p TRUE the support for ICUD13 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD12) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD12 FALSE #endif /** * @brief ICUD14 driver enable switch. * @details If set to @p TRUE the support for ICUD14 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD13) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD13 FALSE #endif /** * @brief ICUD15 driver enable switch. * @details If set to @p TRUE the support for ICUD15 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD14) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD14 FALSE #endif /** * @brief ICUD16 driver enable switch. * @details If set to @p TRUE the support for ICUD16 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD15) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD15 FALSE #endif /** * @brief ICUD17 driver enable switch. * @details If set to @p TRUE the support for ICUD17 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD16) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD16 FALSE #endif /** * @brief ICUD18 driver enable switch. * @details If set to @p TRUE the support for ICUD18 is included. * @note The default is @p FALSE. */ #if !defined(SPC5_ICU_USE_SMOD17) || defined(__DOXYGEN__) #define SPC5_ICU_USE_SMOD17 FALSE #endif /** * @brief eTimer2 interrupt priority level setting. */ #if !defined(SPC5_ICU_ETIMER2_PRIORITY) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER2_PRIORITY 7 #endif /** * @brief eTIMER2 peripheral configuration when started. * @note The default configuration is 1 (always run) in run mode and * 2 (only halt) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER2_START_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER2_START_PCTL (SPC5_ME_PCTL_RUN(1) | \ SPC5_ME_PCTL_LP(2)) #endif /** * @brief eTIMER2 peripheral configuration when stopped. * @note The default configuration is 0 (never run) in run mode and * 0 (never run) in low power mode. The defaults of the run modes * are defined in @p hal_lld.h. */ #if !defined(SPC5_ICU_ETIMER2_STOP_PCTL) || defined(__DOXYGEN__) #define SPC5_ICU_ETIMER2_STOP_PCTL (SPC5_ME_PCTL_RUN(0) | \ SPC5_ME_PCTL_LP(0)) #endif /** @} */ /*===========================================================================*/ /* Derived constants and error checks. */ /*===========================================================================*/ #define SPC5_ICU_USE_ETIMER0 (SPC5_ICU_USE_SMOD0 || \ SPC5_ICU_USE_SMOD1 || \ SPC5_ICU_USE_SMOD2 || \ SPC5_ICU_USE_SMOD3 || \ SPC5_ICU_USE_SMOD4 || \ SPC5_ICU_USE_SMOD5) #define SPC5_ICU_USE_ETIMER1 (SPC5_ICU_USE_SMOD6 || \ SPC5_ICU_USE_SMOD7 || \ SPC5_ICU_USE_SMOD8 || \ SPC5_ICU_USE_SMOD9 || \ SPC5_ICU_USE_SMOD10 || \ SPC5_ICU_USE_SMOD11) #define SPC5_ICU_USE_ETIMER2 (SPC5_ICU_USE_SMOD12 || \ SPC5_ICU_USE_SMOD13 || \ SPC5_ICU_USE_SMOD14 || \ SPC5_ICU_USE_SMOD15 || \ SPC5_ICU_USE_SMOD16 || \ SPC5_ICU_USE_SMOD17) #if !SPC5_HAS_ETIMER0 && SPC5_ICU_USE_ETIMER0 #error "ETIMER0 not present in the selected device" #endif #if !SPC5_HAS_ETIMER1 && SPC5_ICU_USE_ETIMER1 #error "ETIMER1 not present in the selected device" #endif #if !SPC5_HAS_ETIMER2 && SPC5_ICU_USE_ETIMER2 #error "ETIMER2 not present in the selected device" #endif #if !SPC5_ICU_USE_ETIMER0 && !SPC5_ICU_USE_ETIMER1 && !SPC5_ICU_USE_ETIMER2 #error "ICU driver activated but no SMOD peripheral assigned" #endif /*===========================================================================*/ /* Driver data structures and types. */ /*===========================================================================*/ /** * @brief ICU driver mode. */ typedef enum { ICU_INPUT_ACTIVE_HIGH = 0, /**< Trigger on rising edge. */ ICU_INPUT_ACTIVE_LOW = 1, /**< Trigger on falling edge. */ } icumode_t; /** * @brief ICU frequency type. */ typedef uint32_t icufreq_t; /** * @brief ICU channel. */ typedef enum { ICU_CHANNEL_1 = 0, /**< Use SMODxCH1. */ ICU_CHANNEL_2 = 1, /**< Use SMODxCH2. */ ICU_CHANNEL_3 = 2, /**< Use SMODxCH3. */ ICU_CHANNEL_4 = 3, /**< Use SMODxCH4. */ ICU_CHANNEL_5 = 4, /**< Use SMODxCH5. */ ICU_CHANNEL_6 = 5, /**< Use SMODxCH6. */ } icuchannel_t; /** * @brief ICU counter type. */ typedef uint16_t icucnt_t; /** * @brief Driver configuration structure. * @note It could be empty on some architectures. */ typedef struct { /** * @brief Driver mode. */ icumode_t mode; /** * @brief Timer clock in Hz. * @note The low level can use assertions in order to catch invalid * frequency specifications. */ icufreq_t frequency; /** * @brief Callback for pulse width measurement. */ icucallback_t width_cb; /** * @brief Callback for cycle period measurement. */ icucallback_t period_cb; /** * @brief Callback for timer overflow. */ icucallback_t overflow_cb; /* End of the mandatory fields.*/ } ICUConfig; /** * @brief Structure representing an ICU driver. */ struct ICUDriver { /** * @brief Driver state. */ icustate_t state; /** * @brief eTimer submodule number. */ uint8_t smod_number; /** * @brief Current configuration data. */ const ICUConfig *config; /** * @brief Timer base clock. */ uint32_t clock; /* End of the mandatory fields.*/ /** * @brief Pointer to the eTimerx registers block. */ volatile struct spc5_etimer *etimerp; /** * @brief CCR register used for width capture. */ volatile vuint16_t *wccrp; /** * @brief CCR register used for period capture. */ volatile vuint16_t *pccrp; }; /*===========================================================================*/ /* Driver macros. */ /*===========================================================================*/ /** * @brief Returns the width of the latest pulse. * @details The pulse width is defined as number of ticks between the start * edge and the stop edge. * * @param[in] icup pointer to the @p ICUDriver object * @return The number of ticks. * * @notapi */ #define icu_lld_get_width(icup) (*((icup)->wccrp) + 1) /** * @brief Returns the width of the latest cycle. * @details The cycle width is defined as number of ticks between a start * edge and the next start edge. * * @param[in] icup pointer to the @p ICUDriver object * @return The number of ticks. * * @notapi */ #define icu_lld_get_period(icup) (*((icup)->pccrp) + 1) /*===========================================================================*/ /* External declarations. */ /*===========================================================================*/ #if SPC5_ICU_USE_SMOD0 && !defined(__DOXYGEN__) extern ICUDriver ICUD1; #endif #if SPC5_ICU_USE_SMOD1 && !defined(__DOXYGEN__) extern ICUDriver ICUD2; #endif #if SPC5_ICU_USE_SMOD2 && !defined(__DOXYGEN__) extern ICUDriver ICUD3; #endif #if SPC5_ICU_USE_SMOD3 && !defined(__DOXYGEN__) extern ICUDriver ICUD4; #endif #if SPC5_ICU_USE_SMOD4 && !defined(__DOXYGEN__) extern ICUDriver ICUD5; #endif #if SPC5_ICU_USE_SMOD5 && !defined(__DOXYGEN__) extern ICUDriver ICUD6; #endif #if SPC5_ICU_USE_SMOD6 && !defined(__DOXYGEN__) extern ICUDriver ICUD7; #endif #if SPC5_ICU_USE_SMOD7 && !defined(__DOXYGEN__) extern ICUDriver ICUD8; #endif #if SPC5_ICU_USE_SMOD8 && !defined(__DOXYGEN__) extern ICUDriver ICUD9; #endif #if SPC5_ICU_USE_SMOD9 && !defined(__DOXYGEN__) extern ICUDriver ICUD10; #endif #if SPC5_ICU_USE_SMOD10 && !defined(__DOXYGEN__) extern ICUDriver ICUD11; #endif #if SPC5_ICU_USE_SMOD11 && !defined(__DOXYGEN__) extern ICUDriver ICUD12; #endif #if SPC5_ICU_USE_SMOD12 && !defined(__DOXYGEN__) extern ICUDriver ICUD13; #endif #if SPC5_ICU_USE_SMOD13 && !defined(__DOXYGEN__) extern ICUDriver ICUD14; #endif #if SPC5_ICU_USE_SMOD14 && !defined(__DOXYGEN__) extern ICUDriver ICUD15; #endif #if SPC5_ICU_USE_SMOD15 && !defined(__DOXYGEN__) extern ICUDriver ICUD16; #endif #if SPC5_ICU_USE_SMOD16 && !defined(__DOXYGEN__) extern ICUDriver ICUD17; #endif #if SPC5_ICU_USE_SMOD17 && !defined(__DOXYGEN__) extern ICUDriver ICUD18; #endif #ifdef __cplusplus extern "C" { #endif void icu_lld_init(void); void icu_lld_start(ICUDriver *icup); void icu_lld_stop(ICUDriver *icup); void icu_lld_enable(ICUDriver *icup); void icu_lld_disable(ICUDriver *icup); #ifdef __cplusplus } #endif #endif /* HAL_USE_ICU */ #endif /* _ICU_LLD_H_ */ /** @} */