123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*!
- \file gd32e23x_fwdgt.h
- \brief definitions for the FWDGT
-
- \version 2019-02-19, V1.0.0, firmware for GD32E23x
- \version 2020-12-12, V1.1.0, firmware for GD32E23x
- */
- /*
- Copyright (c) 2020, GigaDevice Semiconductor Inc.
- All rights reserved.
- 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.
- */
- #ifndef GD32E23X_FWDGT_H
- #define GD32E23X_FWDGT_H
- #include "gd32e23x.h"
- /* FWDGT definitions */
- #define FWDGT FWDGT_BASE
- /* registers definitions */
- #define FWDGT_CTL REG32((FWDGT) + 0x00000000U) /*!< FWDGT control register */
- #define FWDGT_PSC REG32((FWDGT) + 0x00000004U) /*!< FWDGT prescaler register */
- #define FWDGT_RLD REG32((FWDGT) + 0x00000008U) /*!< FWDGT reload register */
- #define FWDGT_STAT REG32((FWDGT) + 0x0000000CU) /*!< FWDGT status register */
- #define FWDGT_WND REG32((FWDGT) + 0x00000010U) /*!< FWDGT window register */
- /* bits definitions */
- /* FWDGT_CTL */
- #define FWDGT_CTL_CMD BITS(0,15) /*!< FWDGT command value */
- /* FWDGT_PSC */
- #define FWDGT_PSC_PSC BITS(0,2) /*!< FWDGT prescaler divider value */
- /* FWDGT_RLD */
- #define FWDGT_RLD_RLD BITS(0,11) /*!< FWDGT counter reload value */
- /* FWDGT_STAT */
- #define FWDGT_STAT_PUD BIT(0) /*!< FWDGT prescaler divider value update */
- #define FWDGT_STAT_RUD BIT(1) /*!< FWDGT counter reload value update */
- #define FWDGT_STAT_WUD BIT(2) /*!< FWDGT counter window value update */
- /* FWDGT_WND */
- #define FWDGT_WND_WND BITS(0,11) /*!< FWDGT counter window value */
- /* constants definitions */
- /* FWDGT_PSC register value */
- #define PSC_PSC(regval) (BITS(0,2) & ((uint32_t)(regval) << 0U))
- #define FWDGT_PSC_DIV4 ((uint8_t)PSC_PSC(0)) /*!< FWDGT prescaler set to 4 */
- #define FWDGT_PSC_DIV8 ((uint8_t)PSC_PSC(1)) /*!< FWDGT prescaler set to 8 */
- #define FWDGT_PSC_DIV16 ((uint8_t)PSC_PSC(2)) /*!< FWDGT prescaler set to 16 */
- #define FWDGT_PSC_DIV32 ((uint8_t)PSC_PSC(3)) /*!< FWDGT prescaler set to 32 */
- #define FWDGT_PSC_DIV64 ((uint8_t)PSC_PSC(4)) /*!< FWDGT prescaler set to 64 */
- #define FWDGT_PSC_DIV128 ((uint8_t)PSC_PSC(5)) /*!< FWDGT prescaler set to 128 */
- #define FWDGT_PSC_DIV256 ((uint8_t)PSC_PSC(6)) /*!< FWDGT prescaler set to 256 */
- /* control value */
- #define FWDGT_WRITEACCESS_ENABLE ((uint16_t)0x00005555U) /*!< FWDGT_CTL bits write access enable value */
- #define FWDGT_WRITEACCESS_DISABLE ((uint16_t)0x00000000U) /*!< FWDGT_CTL bits write access disable value */
- #define FWDGT_KEY_RELOAD ((uint16_t)0x0000AAAAU) /*!< FWDGT_CTL bits fwdgt counter reload value */
- #define FWDGT_KEY_ENABLE ((uint16_t)0x0000CCCCU) /*!< FWDGT_CTL bits fwdgt counter enable value */
- /* FWDGT timeout value */
- #define FWDGT_WND_TIMEOUT ((uint32_t)0x000FFFFFU) /*!< FWDGT_WND register write operation state flag timeout */
- #define FWDGT_PSC_TIMEOUT ((uint32_t)0x000FFFFFU) /*!< FWDGT_PSC register write operation state flag timeout */
- #define FWDGT_RLD_TIMEOUT ((uint32_t)0x000FFFFFU) /*!< FWDGT_RLD register write operation state flag timeout */
- /* FWDGT flag definitions */
- #define FWDGT_FLAG_PUD FWDGT_STAT_PUD /*!< a write operation to FWDGT_PSC register is on going */
- #define FWDGT_FLAG_RUD FWDGT_STAT_RUD /*!< a write operation to FWDGT_RLD register is on going */
- #define FWDGT_FLAG_WUD FWDGT_STAT_WUD /*!< a write operation to FWDGT_WND register is on going */
- /* write value to FWDGT_RLD_RLD bit field */
- #define RLD_RLD(regval) (BITS(0,11) & ((uint32_t)(regval) << 0))
- /* write value to FWDGT_WND_WND bit field */
- #define WND_WND(regval) (BITS(0,11) & ((uint32_t)(regval) << 0U))
- /* function declarations */
- /* enable write access to FWDGT_PSC and FWDGT_RLD and FWDGT_WND */
- void fwdgt_write_enable(void);
- /* disable write access to FWDGT_PSC,FWDGT_RLD and FWDGT_WND */
- void fwdgt_write_disable(void);
- /* start the free watchdog timer counter */
- void fwdgt_enable(void);
- /* configure the free watchdog timer counter prescaler value */
- ErrStatus fwdgt_prescaler_value_config(uint16_t prescaler_value);
- /* configure the free watchdog timer counter reload value */
- ErrStatus fwdgt_reload_value_config(uint16_t reload_value);
- /* configure the free watchdog timer counter window value */
- ErrStatus fwdgt_window_value_config(uint16_t window_value);
- /* reload the counter of FWDGT */
- void fwdgt_counter_reload(void);
- /* configure counter reload value, and prescaler divider value */
- ErrStatus fwdgt_config(uint16_t reload_value, uint8_t prescaler_div);
- /* get flag state of FWDGT */
- FlagStatus fwdgt_flag_get(uint16_t flag);
- #endif /* GD32E23X_FWDGT_H */
|