/**************************************************************************//** * @file pdma.h * @version V1.00 * $Revision: 15 $ * $Date: 15/08/11 10:26a $ * @brief M451 series PDMA driver header file * * @note * Copyright (C) 2014~2015 Nuvoton Technology Corp. All rights reserved. *****************************************************************************/ #ifndef __PDMA_H__ #define __PDMA_H__ #ifdef __cplusplus extern "C" { #endif /** @addtogroup Standard_Driver Standard Driver @{ */ /** @addtogroup PDMA_Driver PDMA Driver @{ */ /** @addtogroup PDMA_EXPORTED_CONSTANTS PDMA Exported Constants @{ */ #define PDMA_CH_MAX 12 /*!< Specify Maximum Channels of PDMA \hideinitializer */ /*---------------------------------------------------------------------------------------------------------*/ /* Operation Mode Constant Definitions */ /*---------------------------------------------------------------------------------------------------------*/ #define PDMA_OP_STOP 0x00000000UL /*!INTSTS)) /** * @brief Get Transfer Done Interrupt Status * * @param[in] None * * @return None * * @details Get the transfer done Interrupt status. */ #define PDMA_GET_TD_STS() ((uint32_t)(PDMA->TDSTS)) /** * @brief Clear Transfer Done Interrupt Status * * @param[in] u32Mask The channel mask * * @return None * * @details Clear the transfer done Interrupt status. */ #define PDMA_CLR_TD_FLAG(u32Mask) ((uint32_t)(PDMA->TDSTS = (u32Mask))) /** * @brief Get Target Abort Interrupt Status * * @param[in] None * * @return None * * @details Get the target abort Interrupt status. */ #define PDMA_GET_ABORT_STS() ((uint32_t)(PDMA->ABTSTS)) /** * @brief Clear Target Abort Interrupt Status * * @param[in] u32Mask The channel mask * * @return None * * @details Clear the target abort Interrupt status. */ #define PDMA_CLR_ABORT_FLAG(u32Mask) ((uint32_t)(PDMA->ABTSTS = (u32Mask))) /** * @brief Get Scatter-Gather Table Empty Interrupt Status * * @param[in] None * * @return None * * @details Get the scatter-gather table empty Interrupt status. */ #define PDMA_GET_EMPTY_STS() ((uint32_t)(PDMA->SCATSTS)) /** * @brief Clear Scatter-Gather Table Empty Interrupt Status * * @param[in] u32Mask The channel mask * * @return None * * @details Clear the scatter-gather table empty Interrupt status. */ #define PDMA_CLR_EMPTY_FLAG(u32Mask) ((uint32_t)(PDMA->SCATSTS = (u32Mask))) /** * @brief Clear Timeout Interrupt Status * * @param[in] u32Ch The selected channel * * @return None * * @details Clear the selected channel timeout interrupt status. * @note This function is only supported in M45xD/M45xC. */ #define PDMA_CLR_TMOUT_FLAG(u32Ch) ((uint32_t)(PDMA->INTSTS = (1 << ((u32Ch) + 8)))) /** * @brief Check Channel Status * * @param[in] u32Ch The selected channel * * @retval 0 Idle state * @retval 1 Busy state * * @details Check the selected channel is busy or not. */ #define PDMA_IS_CH_BUSY(u32Ch) ((uint32_t)(PDMA->TRGSTS & (1 << (u32Ch)))? 1 : 0) /** * @brief Set Source Address * * @param[in] u32Ch The selected channel * @param[in] u32Addr The selected address * * @return None * * @details This macro set the selected channel source address. */ #define PDMA_SET_SRC_ADDR(u32Ch, u32Addr) ((uint32_t)(PDMA->DSCT[(u32Ch)].SA = (u32Addr))) /** * @brief Set Destination Address * * @param[in] u32Ch The selected channel * @param[in] u32Addr The selected address * * @return None * * @details This macro set the selected channel destination address. */ #define PDMA_SET_DST_ADDR(u32Ch, u32Addr) ((uint32_t)(PDMA->DSCT[(u32Ch)].DA = (u32Addr))) /** * @brief Set Transfer Count * * @param[in] u32Ch The selected channel * @param[in] u32TransCount Transfer Count * * @return None * * @details This macro set the selected channel transfer count. */ #define PDMA_SET_TRANS_CNT(u32Ch, u32TransCount) ((uint32_t)(PDMA->DSCT[(u32Ch)].CTL=(PDMA->DSCT[(u32Ch)].CTL&~PDMA_DSCT_CTL_TXCNT_Msk)|((u32TransCount-1) << PDMA_DSCT_CTL_TXCNT_Pos))) /** * @brief Set Scatter-gather descriptor Address * * @param[in] u32Ch The selected channel * @param[in] u32Addr The descriptor address * * @return None * * @details This macro set the selected channel scatter-gather descriptor address. */ #define PDMA_SET_SCATTER_DESC(u32Ch, u32Addr) ((uint32_t)(PDMA->DSCT[(u32Ch)].NEXT = (u32Addr) - (PDMA->SCATBA))) /** * @brief Stop the channel * * @param[in] u32Ch The selected channel * * @return None * * @details This macro stop the selected channel. */ #define PDMA_STOP(u32Ch) ((uint32_t)(PDMA->STOP = (1 << (u32Ch)))) /*---------------------------------------------------------------------------------------------------------*/ /* Define PWM functions prototype */ /*---------------------------------------------------------------------------------------------------------*/ void PDMA_Open(uint32_t u32Mask); void PDMA_Close(void); void PDMA_SetTransferCnt(uint32_t u32Ch, uint32_t u32Width, uint32_t u32TransCount); void PDMA_SetTransferAddr(uint32_t u32Ch, uint32_t u32SrcAddr, uint32_t u32SrcCtrl, uint32_t u32DstAddr, uint32_t u32DstCtrl); void PDMA_SetTransferMode(uint32_t u32Ch, uint32_t u32Peripheral, uint32_t u32ScatterEn, uint32_t u32DescAddr); void PDMA_SetBurstType(uint32_t u32Ch, uint32_t u32BurstType, uint32_t u32BurstSize); void PDMA_EnableTimeout(uint32_t u32Mask); void PDMA_DisableTimeout(uint32_t u32Mask); void PDMA_SetTimeOut(uint32_t u32Ch, uint32_t u32OnOff, uint32_t u32TimeOutCnt); void PDMA_Trigger(uint32_t u32Ch); void PDMA_EnableInt(uint32_t u32Ch, uint32_t u32Mask); void PDMA_DisableInt(uint32_t u32Ch, uint32_t u32Mask); /*@}*/ /* end of group PDMA_EXPORTED_FUNCTIONS */ /*@}*/ /* end of group PDMA_Driver */ /*@}*/ /* end of group Standard_Driver */ #ifdef __cplusplus } #endif #endif //__PDMA_H__ /*** (C) COPYRIGHT 2014~2015 Nuvoton Technology Corp. ***/