/*! \file gd32f3x0_syscfg.c \brief SYSCFG driver \version 2017-06-06, V1.0.0, firmware for GD32F3x0 \version 2019-06-01, V2.0.0, firmware for GD32F3x0 */ /* Copyright (c) 2019, GigaDevice Semiconductor Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. 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. 3. 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. 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. */ #include "gd32f3x0_syscfg.h" /*! \brief reset the SYSCFG registers \param[in] none \param[out] none \retval none */ void syscfg_deinit(void) { rcu_periph_reset_enable(RCU_CFGCMPRST); rcu_periph_reset_disable(RCU_CFGCMPRST); } /*! \brief enable the DMA channels remapping \param[in] syscfg_dma_remap: specify the DMA channels to remap one or more parameters can be selected which is shown as below: \arg SYSCFG_DMA_REMAP_TIMER16: remap TIMER16 channel0 and UP DMA requests to channel1(defaut channel0) \arg SYSCFG_DMA_REMAP_TIMER15: remap TIMER15 channel2 and UP DMA requests to channel3(defaut channel2) \arg SYSCFG_DMA_REMAP_USART0RX: remap USART0 Rx DMA request to channel4(default channel2) \arg SYSCFG_DMA_REMAP_USART0TX: remap USART0 Tx DMA request to channel3(default channel1) \arg SYSCFG_DMA_REMAP_ADC: remap ADC DMA requests from channel0 to channel1 \param[out] none \retval none */ void syscfg_dma_remap_enable(uint32_t syscfg_dma_remap) { SYSCFG_CFG0 |= syscfg_dma_remap; } /*! \brief disable the DMA channels remapping \param[in] syscfg_dma_remap: specify the DMA channels to remap one or more parameters can be selected which is shown as below: \arg SYSCFG_DMA_REMAP_TIMER16: remap TIMER16 channel0 and UP DMA requests to channel1(defaut channel0) \arg SYSCFG_DMA_REMAP_TIMER15: remap TIMER15 channel2 and UP DMA requests to channel3(defaut channel2) \arg SYSCFG_DMA_REMAP_USART0RX: remap USART0 Rx DMA request to channel4(default channel2) \arg SYSCFG_DMA_REMAP_USART0TX: remap USART0 Tx DMA request to channel3(default channel1) \arg SYSCFG_DMA_REMAP_ADC: remap ADC DMA requests from channel0 to channel1 \param[out] none \retval none */ void syscfg_dma_remap_disable(uint32_t syscfg_dma_remap) { SYSCFG_CFG0 &= ~syscfg_dma_remap; } /*! \brief enable PB9 high current capability \param[in] none \param[out] none \retval none */ void syscfg_high_current_enable(void) { SYSCFG_CFG0 |= SYSCFG_HIGH_CURRENT_ENABLE; } /*! \brief disable PB9 high current capability \param[in] none \param[out] none \retval none */ void syscfg_high_current_disable(void) { SYSCFG_CFG0 &= SYSCFG_HIGH_CURRENT_DISABLE; } /*! \brief configure the GPIO pin as EXTI Line \param[in] exti_port: specify the GPIO port used in EXTI only one parameter can be selected which is shown as below: \arg EXTI_SOURCE_GPIOx(x = A,B,C,D,F): EXTI GPIO port \param[in] exti_pin: specify the EXTI line only one parameter can be selected which is shown as below: \arg EXTI_SOURCE_PINx(x = 0..15): EXTI GPIO pin \param[out] none \retval none */ void syscfg_exti_line_config(uint8_t exti_port, uint8_t exti_pin) { uint32_t clear_exti_mask = ~((uint32_t)EXTI_SS_MASK << (EXTI_SS_MSTEP(exti_pin))); uint32_t config_exti_mask = ((uint32_t)exti_port) << (EXTI_SS_MSTEP(exti_pin)); switch(exti_pin / EXTI_SS_JSTEP){ case EXTISS0: /* clear EXTI source line(0..3) */ SYSCFG_EXTISS0 &= clear_exti_mask; /* configure EXTI soure line(0..3) */ SYSCFG_EXTISS0 |= config_exti_mask; break; case EXTISS1: /* clear EXTI soure line(4..7) */ SYSCFG_EXTISS1 &= clear_exti_mask; /* configure EXTI soure line(4..7) */ SYSCFG_EXTISS1 |= config_exti_mask; break; case EXTISS2: /* clear EXTI soure line(8..11) */ SYSCFG_EXTISS2 &= clear_exti_mask; /* configure EXTI soure line(8..11) */ SYSCFG_EXTISS2 |= config_exti_mask; break; case EXTISS3: /* clear EXTI soure line(12..15) */ SYSCFG_EXTISS3 &= clear_exti_mask; /* configure EXTI soure line(12..15) */ SYSCFG_EXTISS3 |= config_exti_mask; break; default: break; } } /*! \brief connect TIMER0/14/15/16 break input to the selected parameter \param[in] syscfg_lock: Specify the parameter to be connected one or more parameters can be selected which is shown as below: \arg SYSCFG_LOCK_LOCKUP: Cortex-M4 lockup output connected to the break input \arg SYSCFG_LOCK_SRAM_PARITY_ERROR: SRAM_PARITY check error connected to the break input \arg SYSCFG_LOCK_LVD: LVD interrupt connected to the break input \param[out] none \retval none */ void syscfg_lock_config(uint32_t syscfg_lock) { SYSCFG_CFG2 |= syscfg_lock; } /*! \brief check if the specified flag in SYSCFG_CFG2 is set or not. \param[in] syscfg_flag: specify the flag in SYSCFG_CFG2 to check. \arg SYSCFG_SRAM_PCEF: SRAM parity check error flag. \param[out] none \retval the syscfg_flag state returned (SET or RESET). */ FlagStatus syscfg_flag_get(uint32_t syscfg_flag) { if((SYSCFG_CFG2 & syscfg_flag) != (uint32_t)RESET){ return SET; }else{ return RESET; } } /*! \brief clear the flag in SYSCFG_CFG2 by writing 1. \param[in] syscfg_flag: Specify the flag in SYSCFG_CFG2 to clear. \arg SYSCFG_SRAM_PCEF: SRAM parity check error flag. \param[out] none \retval none */ void syscfg_flag_clear(uint32_t syscfg_flag) { SYSCFG_CFG2 |= (uint32_t) syscfg_flag; } /*! \brief configure the I/O compensation cell \param[in] syscfg_compensation: specifies the I/O compensation cell mode only one parameter can be selected which is shown as below: \arg SYSCFG_COMPENSATION_ENABLE: I/O compensation cell is enabled \arg SYSCFG_COMPENSATION_DISABLE: I/O compensation cell is disabled \param[out] none \retval none */ void syscfg_compensation_config(uint32_t syscfg_compensation) { uint32_t reg; reg = SYSCFG_CPSCTL; /* reset the SYSCFG_CPSCTL_CPS_EN bit and set according to syscfg_compensation */ reg &= ~SYSCFG_CPSCTL_CPS_EN; SYSCFG_CPSCTL = (reg | syscfg_compensation); } /*! \brief check if the I/O compensation cell ready flag is set or not \param[in] none \param[out] none \retval FlagStatus: SET or RESET */ FlagStatus syscfg_cps_rdy_flag_get(void) { if(((uint32_t)RESET) != (SYSCFG_CPSCTL & SYSCFG_CPSCTL_CPS_RDY)){ return SET; }else{ return RESET; } }