123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533 |
- /*
- * The Clear BSD License
- * Copyright (c) 2015, Freescale Semiconductor, Inc.
- * Copyright 2016-2017 NXP
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted (subject to the limitations in the disclaimer below) provided
- * that the following conditions are met:
- *
- * o Redistributions of source code must retain the above copyright notice, this list
- * of conditions and the following disclaimer.
- *
- * o Redistributions in binary form must reproduce the above copyright notice, this
- * list of conditions and the following disclaimer in the documentation and/or
- * other materials provided with the distribution.
- *
- * o Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef _FSL_GPT_H_
- #define _FSL_GPT_H_
- #include "fsl_common.h"
- /*!
- * @addtogroup gpt
- * @{
- */
- /*******************************************************************************
- * Definitions
- ******************************************************************************/
- /*! @name Driver version */
- /*@{*/
- #define FSL_GPT_DRIVER_VERSION (MAKE_VERSION(2, 0, 0)) /*!< Version 2.0.0 */
- /*@}*/
- /*!
- * @brief List of clock sources
- * @note Actual number of clock sources is SoC dependent
- */
- typedef enum _gpt_clock_source
- {
- kGPT_ClockSource_Off = 0U, /*!< GPT Clock Source Off.*/
- kGPT_ClockSource_Periph = 1U, /*!< GPT Clock Source from Peripheral Clock.*/
- kGPT_ClockSource_HighFreq = 2U, /*!< GPT Clock Source from High Frequency Reference Clock.*/
- kGPT_ClockSource_Ext = 3U, /*!< GPT Clock Source from external pin.*/
- kGPT_ClockSource_LowFreq = 4U, /*!< GPT Clock Source from Low Frequency Reference Clock.*/
- kGPT_ClockSource_Osc = 5U, /*!< GPT Clock Source from Crystal oscillator.*/
- } gpt_clock_source_t;
- /*! @brief List of input capture channel number. */
- typedef enum _gpt_input_capture_channel
- {
- kGPT_InputCapture_Channel1 = 0U, /*!< GPT Input Capture Channel1.*/
- kGPT_InputCapture_Channel2 = 1U, /*!< GPT Input Capture Channel2.*/
- } gpt_input_capture_channel_t;
- /*! @brief List of input capture operation mode. */
- typedef enum _gpt_input_operation_mode
- {
- kGPT_InputOperation_Disabled = 0U, /*!< Don't capture.*/
- kGPT_InputOperation_RiseEdge = 1U, /*!< Capture on rising edge of input pin.*/
- kGPT_InputOperation_FallEdge = 2U, /*!< Capture on falling edge of input pin.*/
- kGPT_InputOperation_BothEdge = 3U, /*!< Capture on both edges of input pin.*/
- } gpt_input_operation_mode_t;
- /*! @brief List of output compare channel number. */
- typedef enum _gpt_output_compare_channel
- {
- kGPT_OutputCompare_Channel1 = 0U, /*!< Output Compare Channel1.*/
- kGPT_OutputCompare_Channel2 = 1U, /*!< Output Compare Channel2.*/
- kGPT_OutputCompare_Channel3 = 2U, /*!< Output Compare Channel3.*/
- } gpt_output_compare_channel_t;
- /*! @brief List of output compare operation mode. */
- typedef enum _gpt_output_operation_mode
- {
- kGPT_OutputOperation_Disconnected = 0U, /*!< Don't change output pin.*/
- kGPT_OutputOperation_Toggle = 1U, /*!< Toggle output pin.*/
- kGPT_OutputOperation_Clear = 2U, /*!< Set output pin low.*/
- kGPT_OutputOperation_Set = 3U, /*!< Set output pin high.*/
- kGPT_OutputOperation_Activelow = 4U, /*!< Generate a active low pulse on output pin.*/
- } gpt_output_operation_mode_t;
- /*! @brief List of GPT interrupts */
- typedef enum _gpt_interrupt_enable
- {
- kGPT_OutputCompare1InterruptEnable = GPT_IR_OF1IE_MASK, /*!< Output Compare Channel1 interrupt enable*/
- kGPT_OutputCompare2InterruptEnable = GPT_IR_OF2IE_MASK, /*!< Output Compare Channel2 interrupt enable*/
- kGPT_OutputCompare3InterruptEnable = GPT_IR_OF3IE_MASK, /*!< Output Compare Channel3 interrupt enable*/
- kGPT_InputCapture1InterruptEnable = GPT_IR_IF1IE_MASK, /*!< Input Capture Channel1 interrupt enable*/
- kGPT_InputCapture2InterruptEnable = GPT_IR_IF2IE_MASK, /*!< Input Capture Channel1 interrupt enable*/
- kGPT_RollOverFlagInterruptEnable = GPT_IR_ROVIE_MASK, /*!< Counter rolled over interrupt enable*/
- } gpt_interrupt_enable_t;
- /*! @brief Status flag. */
- typedef enum _gpt_status_flag
- {
- kGPT_OutputCompare1Flag = GPT_SR_OF1_MASK, /*!< Output compare channel 1 event.*/
- kGPT_OutputCompare2Flag = GPT_SR_OF2_MASK, /*!< Output compare channel 2 event.*/
- kGPT_OutputCompare3Flag = GPT_SR_OF3_MASK, /*!< Output compare channel 3 event.*/
- kGPT_InputCapture1Flag = GPT_SR_IF1_MASK, /*!< Input Capture channel 1 event.*/
- kGPT_InputCapture2Flag = GPT_SR_IF2_MASK, /*!< Input Capture channel 2 event.*/
- kGPT_RollOverFlag = GPT_SR_ROV_MASK, /*!< Counter reaches maximum value and rolled over to 0 event.*/
- } gpt_status_flag_t;
- /*! @brief Structure to configure the running mode. */
- typedef struct _gpt_init_config
- {
- gpt_clock_source_t clockSource; /*!< clock source for GPT module. */
- uint32_t divider; /*!< clock divider (prescaler+1) from clock source to counter. */
- bool enableFreeRun; /*!< true: FreeRun mode, false: Restart mode. */
- bool enableRunInWait; /*!< GPT enabled in wait mode. */
- bool enableRunInStop; /*!< GPT enabled in stop mode. */
- bool enableRunInDoze; /*!< GPT enabled in doze mode. */
- bool enableRunInDbg; /*!< GPT enabled in debug mode. */
- bool enableMode; /*!< true: counter reset to 0 when enabled;
- false: counter retain its value when enabled. */
- } gpt_config_t;
- /*******************************************************************************
- * API
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif
- /*!
- * @name Initialization and deinitialization
- * @{
- */
- /*!
- * @brief Initialize GPT to reset state and initialize running mode.
- *
- * @param base GPT peripheral base address.
- * @param initConfig GPT mode setting configuration.
- */
- void GPT_Init(GPT_Type *base, const gpt_config_t *initConfig);
- /*!
- * @brief Disables the module and gates the GPT clock.
- *
- * @param base GPT peripheral base address.
- */
- void GPT_Deinit(GPT_Type *base);
- /*!
- * @brief Fills in the GPT configuration structure with default settings.
- *
- * The default values are:
- * @code
- * config->clockSource = kGPT_ClockSource_Periph;
- * config->divider = 1U;
- * config->enableRunInStop = true;
- * config->enableRunInWait = true;
- * config->enableRunInDoze = false;
- * config->enableRunInDbg = false;
- * config->enableFreeRun = true;
- * config->enableMode = true;
- * @endcode
- * @param config Pointer to the user configuration structure.
- */
- void GPT_GetDefaultConfig(gpt_config_t *config);
- /*!
- * @name Software Reset
- * @{
- */
- /*!
- * @brief Software reset of GPT module.
- *
- * @param base GPT peripheral base address.
- */
- static inline void GPT_SoftwareReset(GPT_Type *base)
- {
- base->CR |= GPT_CR_SWR_MASK;
- /* Wait reset finished. */
- while ((base->CR & GPT_CR_SWR_MASK) == GPT_CR_SWR_MASK)
- {
- }
- }
- /*!
- * @name Clock source and frequency control
- * @{
- */
- /*!
- * @brief Set clock source of GPT.
- *
- * @param base GPT peripheral base address.
- * @param source Clock source (see @ref gpt_clock_source_t typedef enumeration).
- */
- static inline void GPT_SetClockSource(GPT_Type *base, gpt_clock_source_t source)
- {
- if (source == kGPT_ClockSource_Osc)
- {
- base->CR = (base->CR & ~GPT_CR_CLKSRC_MASK) | GPT_CR_EN_24M_MASK | GPT_CR_CLKSRC(source);
- }
- else
- {
- base->CR = (base->CR & ~(GPT_CR_CLKSRC_MASK | GPT_CR_EN_24M_MASK)) | GPT_CR_CLKSRC(source);
- }
- }
- /*!
- * @brief Get clock source of GPT.
- *
- * @param base GPT peripheral base address.
- * @return clock source (see @ref gpt_clock_source_t typedef enumeration).
- */
- static inline gpt_clock_source_t GPT_GetClockSource(GPT_Type *base)
- {
- return (gpt_clock_source_t)((base->CR & GPT_CR_CLKSRC_MASK) >> GPT_CR_CLKSRC_SHIFT);
- }
- /*!
- * @brief Set pre scaler of GPT.
- *
- * @param base GPT peripheral base address.
- * @param divider Divider of GPT (1-4096).
- */
- static inline void GPT_SetClockDivider(GPT_Type *base, uint32_t divider)
- {
- assert(divider - 1 <= GPT_PR_PRESCALER_MASK);
- base->PR = (base->PR & ~GPT_PR_PRESCALER_MASK) | GPT_PR_PRESCALER(divider - 1);
- }
- /*!
- * @brief Get clock divider in GPT module.
- *
- * @param base GPT peripheral base address.
- * @return clock divider in GPT module (1-4096).
- */
- static inline uint32_t GPT_GetClockDivider(GPT_Type *base)
- {
- return ((base->PR & GPT_PR_PRESCALER_MASK) >> GPT_PR_PRESCALER_SHIFT) + 1;
- }
- /*!
- * @brief OSC 24M pre-scaler before selected by clock source.
- *
- * @param base GPT peripheral base address.
- * @param divider OSC Divider(1-16).
- */
- static inline void GPT_SetOscClockDivider(GPT_Type *base, uint32_t divider)
- {
- assert(divider - 1 <= (GPT_PR_PRESCALER24M_MASK >> GPT_PR_PRESCALER24M_SHIFT));
- base->PR = (base->PR & ~GPT_PR_PRESCALER24M_MASK) | GPT_PR_PRESCALER24M(divider - 1);
- }
- /*!
- * @brief Get OSC 24M clock divider in GPT module.
- *
- * @param base GPT peripheral base address.
- * @return OSC clock divider in GPT module (1-16).
- */
- static inline uint32_t GPT_GetOscClockDivider(GPT_Type *base)
- {
- return ((base->PR & GPT_PR_PRESCALER24M_MASK) >> GPT_PR_PRESCALER24M_SHIFT) + 1;
- }
- /*! @}*/
- /*!
- * @name Timer Start and Stop
- * @{
- */
- /*!
- * @brief Start GPT timer.
- *
- * @param base GPT peripheral base address.
- */
- static inline void GPT_StartTimer(GPT_Type *base)
- {
- base->CR |= GPT_CR_EN_MASK;
- }
- /*!
- * @brief Stop GPT timer.
- *
- * @param base GPT peripheral base address.
- */
- static inline void GPT_StopTimer(GPT_Type *base)
- {
- base->CR &= ~GPT_CR_EN_MASK;
- }
- /*!
- * @name Read the timer period
- * @{
- */
- /*!
- * @brief Reads the current GPT counting value.
- *
- * @param base GPT peripheral base address.
- * @return Current GPT counter value.
- */
- static inline uint32_t GPT_GetCurrentTimerCount(GPT_Type *base)
- {
- return base->CNT;
- }
- /*@}*/
- /*!
- * @name GPT Input/Output Signal Control
- * @{
- */
- /*!
- * @brief Set GPT operation mode of input capture channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT capture channel (see @ref gpt_input_capture_channel_t typedef enumeration).
- * @param mode GPT input capture operation mode (see @ref gpt_input_operation_mode_t typedef enumeration).
- */
- static inline void GPT_SetInputOperationMode(GPT_Type *base,
- gpt_input_capture_channel_t channel,
- gpt_input_operation_mode_t mode)
- {
- assert(channel <= kGPT_InputCapture_Channel2);
- base->CR = (base->CR & ~(GPT_CR_IM1_MASK << (channel * 2))) | (GPT_CR_IM1(mode) << (channel * 2));
- }
- /*!
- * @brief Get GPT operation mode of input capture channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT capture channel (see @ref gpt_input_capture_channel_t typedef enumeration).
- * @return GPT input capture operation mode (see @ref gpt_input_operation_mode_t typedef enumeration).
- */
- static inline gpt_input_operation_mode_t GPT_GetInputOperationMode(GPT_Type *base, gpt_input_capture_channel_t channel)
- {
- assert(channel <= kGPT_InputCapture_Channel2);
- return (gpt_input_operation_mode_t)((base->CR >> (GPT_CR_IM1_SHIFT + channel * 2)) &
- (GPT_CR_IM1_MASK >> GPT_CR_IM1_SHIFT));
- }
- /*!
- * @brief Get GPT input capture value of certain channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT capture channel (see @ref gpt_input_capture_channel_t typedef enumeration).
- * @return GPT input capture value.
- */
- static inline uint32_t GPT_GetInputCaptureValue(GPT_Type *base, gpt_input_capture_channel_t channel)
- {
- assert(channel <= kGPT_InputCapture_Channel2);
- return *(&base->ICR[0] + channel);
- }
- /*!
- * @brief Set GPT operation mode of output compare channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT output compare channel (see @ref gpt_output_compare_channel_t typedef enumeration).
- * @param mode GPT output operation mode (see @ref gpt_output_operation_mode_t typedef enumeration).
- */
- static inline void GPT_SetOutputOperationMode(GPT_Type *base,
- gpt_output_compare_channel_t channel,
- gpt_output_operation_mode_t mode)
- {
- assert(channel <= kGPT_OutputCompare_Channel3);
- base->CR = (base->CR & ~(GPT_CR_OM1_MASK << (channel * 3))) | (GPT_CR_OM1(mode) << (channel * 3));
- }
- /*!
- * @brief Get GPT operation mode of output compare channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT output compare channel (see @ref gpt_output_compare_channel_t typedef enumeration).
- * @return GPT output operation mode (see @ref gpt_output_operation_mode_t typedef enumeration).
- */
- static inline gpt_output_operation_mode_t GPT_GetOutputOperationMode(GPT_Type *base,
- gpt_output_compare_channel_t channel)
- {
- assert(channel <= kGPT_OutputCompare_Channel3);
- return (gpt_output_operation_mode_t)((base->CR >> (GPT_CR_OM1_SHIFT + channel * 3)) &
- (GPT_CR_OM1_MASK >> GPT_CR_OM1_SHIFT));
- }
- /*!
- * @brief Set GPT output compare value of output compare channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT output compare channel (see @ref gpt_output_compare_channel_t typedef enumeration).
- * @param value GPT output compare value.
- */
- static inline void GPT_SetOutputCompareValue(GPT_Type *base, gpt_output_compare_channel_t channel, uint32_t value)
- {
- assert(channel <= kGPT_OutputCompare_Channel3);
- *(&base->OCR[0] + channel) = value;
- }
- /*!
- * @brief Get GPT output compare value of output compare channel.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT output compare channel (see @ref gpt_output_compare_channel_t typedef enumeration).
- * @return GPT output compare value.
- */
- static inline uint32_t GPT_GetOutputCompareValue(GPT_Type *base, gpt_output_compare_channel_t channel)
- {
- assert(channel <= kGPT_OutputCompare_Channel3);
- return *(&base->OCR[0] + channel);
- }
- /*!
- * @brief Force GPT output action on output compare channel, ignoring comparator.
- *
- * @param base GPT peripheral base address.
- * @param channel GPT output compare channel (see @ref gpt_output_compare_channel_t typedef enumeration).
- */
- static inline void GPT_ForceOutput(GPT_Type *base, gpt_output_compare_channel_t channel)
- {
- assert(channel <= kGPT_OutputCompare_Channel3);
- base->CR |= (GPT_CR_FO1_MASK << channel);
- }
- /*@}*/
- /*!
- * @name GPT Interrupt and Status Interface
- * @{
- */
- /*!
- * @brief Enables the selected GPT interrupts.
- *
- * @param base GPT peripheral base address.
- * @param mask The interrupts to enable. This is a logical OR of members of the
- * enumeration ::gpt_interrupt_enable_t
- */
- static inline void GPT_EnableInterrupts(GPT_Type *base, uint32_t mask)
- {
- base->IR |= mask;
- }
- /*!
- * @brief Disables the selected GPT interrupts.
- *
- * @param base GPT peripheral base address
- * @param mask The interrupts to disable. This is a logical OR of members of the
- * enumeration ::gpt_interrupt_enable_t
- */
- static inline void GPT_DisableInterrupts(GPT_Type *base, uint32_t mask)
- {
- base->IR &= ~mask;
- }
- /*!
- * @brief Gets the enabled GPT interrupts.
- *
- * @param base GPT peripheral base address
- *
- * @return The enabled interrupts. This is the logical OR of members of the
- * enumeration ::gpt_interrupt_enable_t
- */
- static inline uint32_t GPT_GetEnabledInterrupts(GPT_Type *base)
- {
- return (base->IR & (GPT_IR_OF1IE_MASK | GPT_IR_OF2IE_MASK | GPT_IR_OF3IE_MASK | GPT_IR_IF1IE_MASK |
- GPT_IR_IF2IE_MASK | GPT_IR_ROVIE_MASK));
- }
- /*!
- * @name Status Interface
- * @{
- */
- /*!
- * @brief Get GPT status flags.
- *
- * @param base GPT peripheral base address.
- * @param flags GPT status flag mask (see @ref gpt_status_flag_t for bit definition).
- * @return GPT status, each bit represents one status flag.
- */
- static inline uint32_t GPT_GetStatusFlags(GPT_Type *base, gpt_status_flag_t flags)
- {
- return base->SR & flags;
- }
- /*!
- * @brief Clears the GPT status flags.
- *
- * @param base GPT peripheral base address.
- * @param flags GPT status flag mask (see @ref gpt_status_flag_t for bit definition).
- */
- static inline void GPT_ClearStatusFlags(GPT_Type *base, gpt_status_flag_t flags)
- {
- base->SR = flags;
- }
- /*@}*/
- #if defined(__cplusplus)
- }
- #endif
- /*! @}*/
- #endif /* _FSL_GPT_H_ */
|