/**************************************************************************//** * @file sc.h * @version V3.00 * $Revision: 11 $ * $Date: 15/05/12 2:18p $ * @brief Smartcard (SC) driver header file * * @note * SPDX-License-Identifier: Apache-2.0 * Copyright (C) 2013 Nuvoton Technology Corp. All rights reserved. *****************************************************************************/ #ifndef __SC_H__ #define __SC_H__ #ifdef __cplusplus extern "C" { #endif /** @addtogroup Standard_Driver Standard Driver @{ */ /** @addtogroup SC_Driver SC Driver @{ */ /** @addtogroup SC_EXPORTED_CONSTANTS SC Exported Constants @{ */ #define SC_INTERFACE_NUM 3 /*!< Smartcard interface numbers */ #define SC_PIN_STATE_HIGH 1 /*!< Smartcard pin status high */ #define SC_PIN_STATE_LOW 0 /*!< Smartcard pin status low */ #define SC_PIN_STATE_IGNORE 0xFFFFFFFF /*!< Ignore pin status */ #define SC_CLK_ON 1 /*!< Smartcard clock on */ #define SC_CLK_OFF 0 /*!< Smartcard clock off */ #define SC_TMR_MODE_0 (0ul << SC_TMR0_MODE_Pos) /*!IER |= (u32Mask)) /** * @brief Disable smartcard interrupt. * @param[in] sc The pointer of smartcard module. * @param[in] u32Mask Interrupt mask to be disabled. A combination of * - \ref SC_IER_ACON_ERR_IE_Msk * - \ref SC_IER_RTMR_IE_Msk * - \ref SC_IER_INIT_IE_Msk * - \ref SC_IER_CD_IE_Msk * - \ref SC_IER_BGT_IE_Msk * - \ref SC_IER_TMR2_IE_Msk * - \ref SC_IER_TMR1_IE_Msk * - \ref SC_IER_TMR0_IE_Msk * - \ref SC_IER_TERR_IE_Msk * - \ref SC_IER_TBE_IE_Msk * - \ref SC_IER_RDA_IE_Msk * @return None * @details The macro is used to disable Auto-convention error interrupt, Receiver buffer time-out interrupt, Initial end interrupt, * Card detect interrupt, Block guard time interrupt, Timer2 interrupt, Timer1 interrupt, Timer0 interrupt, * Transfer error interrupt, Transmit buffer empty interrupt or Receive data reach trigger level interrupt. * \hideinitializer */ #define SC_DISABLE_INT(sc, u32Mask) ((sc)->IER &= ~(u32Mask)) /** * @brief This macro set VCC pin state of smartcard interface. * @param[in] sc The pointer of smartcard module. * @param[in] u32State Pin state of VCC pin, valid parameters are: * \ref SC_PIN_STATE_HIGH :Smartcard pin status high. * \ref SC_PIN_STATE_LOW :Smartcard pin status low. * @return None * @details User can set POW_EN (SC_PINCSR[0]) and POW_INV (SC_PINCSR[11])to decide SC_PWR pin is in high or low level. * \hideinitializer */ #define SC_SET_VCC_PIN(sc, u32State) \ do {\ while((sc)->PINCSR & SC_PINCSR_SYNC_Msk);\ if((u32State))\ (sc)->PINCSR |= SC_PINCSR_POW_EN_Msk;\ else\ (sc)->PINCSR &= ~SC_PINCSR_POW_EN_Msk;\ }while(0) /** * @brief Set CLK output status. * @param[in] sc The pointer of smartcard module. * @param[in] u32OnOff Clock on or off for selected smartcard module, valid values are: * \ref SC_CLK_ON :Smartcard clock on. * \ref SC_CLK_OFF :Smartcard clock off. * @return None * @details User can set CLK_KEEP (SC_PINCSR[6]) to decide SC_CLK pin always keeps free running or not. * \hideinitializer */ #define SC_SET_CLK_PIN(sc, u32OnOff)\ do {\ while((sc)->PINCSR & SC_PINCSR_SYNC_Msk);\ if((u32OnOff))\ (sc)->PINCSR |= SC_PINCSR_CLK_KEEP_Msk;\ else\ (sc)->PINCSR &= ~(SC_PINCSR_CLK_KEEP_Msk);\ }while(0) /** * @brief Set I/O pin state. * @param[in] sc The pointer of smartcard module. * @param[in] u32State Pin state of I/O pin, valid parameters are: * \ref SC_PIN_STATE_HIGH :Smartcard pin status high. * \ref SC_PIN_STATE_LOW :Smartcard pin status low. * @return None * @details User can set SC_DATA_O(SC_PINCSR[9]) to decide SC_DATA_O pin to high or low. * \hideinitializer */ #define SC_SET_IO_PIN(sc, u32State)\ do {\ while((sc)->PINCSR & SC_PINCSR_SYNC_Msk);\ if((u32State))\ (sc)->PINCSR |= SC_PINCSR_SC_DATA_O_Msk;\ else\ (sc)->PINCSR &= ~SC_PINCSR_SC_DATA_O_Msk;\ }while(0) /** * @brief Set RST pin state. * @param[in] sc The pointer of smartcard module. * @param[in] u32State Pin state of RST pin, valid parameters are: * \ref SC_PIN_STATE_HIGH :Smartcard pin status high. * \ref SC_PIN_STATE_LOW :Smartcard pin status low. * @return None * @details User can set SC_RST(SC_PINCSR[1]) to decide SC_RST pin to high or low. * \hideinitializer */ #define SC_SET_RST_PIN(sc, u32State)\ do {\ while((sc)->PINCSR & SC_PINCSR_SYNC_Msk);\ if((u32State))\ (sc)->PINCSR |= SC_PINCSR_SC_RST_Msk;\ else\ (sc)->PINCSR &= ~SC_PINCSR_SC_RST_Msk;\ }while(0) /** * @brief Read one byte from smartcard module receive FIFO. * @param[in] sc The pointer of smartcard module. * @return One byte read from receive FIFO. * @details By reading RBR register, the SC will return an 8-bit received data. * \hideinitializer */ #define SC_READ(sc) ((char)((sc)->RBR)) /** * @brief Write one byte to smartcard module transmit FIFO. * @param[in] sc The pointer of smartcard module. * @param[in] u8Data Data to write to transmit FIFO. * @return None * @details By writing data to THR register, the SC will send out an 8-bit data. * \hideinitializer */ #define SC_WRITE(sc, u8Data) ((sc)->THR = (u8Data)) /** * @brief This macro set smartcard stop bit length. * @param[in] sc The pointer of smartcard module. * @param[in] u32Len Stop bit length, ether 1 or 2. * @return None * @details Stop bit length must be 1 for T = 1 protocol and 2 for T = 0 protocol. * \hideinitializer */ #define SC_SET_STOP_BIT_LEN(sc, u32Len) ((sc)->CTL = ((sc)->CTL & ~SC_CTL_SLEN_Msk) | ((u32Len) == 1 ? SC_CTL_SLEN_Msk : 0)) /** * @brief Enable/Disable Tx error retry, and set Tx error retry count. * @param[in] sc The pointer of smartcard module. * @param[in] u32Count The number of times of Tx error retry count, between 0~8. 0 means disable Tx error retry. * @return None * @details This macro enable/disable transmitter retry function when parity error has occurred, and set error retry count. */ __STATIC_INLINE void SC_SetTxRetry(SC_T *sc, uint32_t u32Count) { while((sc)->CTL & SC_CTL_SYNC_Msk); if((u32Count) == 0) // disable Tx error retry { (sc)->CTL &= ~(SC_CTL_TX_ERETRY_Msk | SC_CTL_TX_ERETRY_EN_Msk); } else { (sc)->CTL = ((sc)->CTL & ~SC_CTL_TX_ERETRY_Msk) | (((u32Count) - 1) << SC_CTL_TX_ERETRY_Pos) | SC_CTL_TX_ERETRY_EN_Msk; } } /** * @brief Enable/Disable Rx error retry, and set Rx error retry count. * @param[in] sc The pointer of smartcard module. * @param[in] u32Count The number of times of Rx error retry count, between 0~8. 0 means disable Rx error retry. * @return None * @details This macro enable/disable receiver retry function when parity error has occurred, and set error retry count. */ __STATIC_INLINE void SC_SetRxRetry(SC_T *sc, uint32_t u32Count) { while((sc)->CTL & SC_CTL_SYNC_Msk); if((u32Count) == 0) // disable Rx error retry { (sc)->CTL &= ~(SC_CTL_RX_ERETRY_Msk | SC_CTL_RX_ERETRY_EN_Msk); } else { (sc)->CTL = ((sc)->CTL & ~SC_CTL_RX_ERETRY_Msk) | (((u32Count) - 1) << SC_CTL_RX_ERETRY_Pos) | SC_CTL_RX_ERETRY_EN_Msk; } } uint32_t SC_IsCardInserted(SC_T *sc); void SC_ClearFIFO(SC_T *sc); void SC_Close(SC_T *sc); void SC_Open(SC_T *sc, uint32_t u32CardDet, uint32_t u32PWR); void SC_ResetReader(SC_T *sc); void SC_SetBlockGuardTime(SC_T *sc, uint32_t u32BGT); void SC_SetCharGuardTime(SC_T *sc, uint32_t u32CGT); void SC_StopAllTimer(SC_T *sc); void SC_StartTimer(SC_T *sc, uint32_t u32TimerNum, uint32_t u32Mode, uint32_t u32ETUCount); void SC_StopTimer(SC_T *sc, uint32_t u32TimerNum); /*@}*/ /* end of group SC_EXPORTED_FUNCTIONS */ /*@}*/ /* end of group SC_Driver */ /*@}*/ /* end of group Device_Driver */ #ifdef __cplusplus } #endif #endif //__SC_H__ /*** (C) COPYRIGHT 2013 Nuvoton Technology Corp. ***/