123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /*
- * The Clear BSD License
- * Copyright (c) 2016, Freescale Semiconductor, Inc.
- * Copyright (c) 2016, 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 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_RESET_H_
- #define _FSL_RESET_H_
- #include <assert.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include <string.h>
- #include "fsl_device_registers.h"
- /*!
- * @addtogroup ksdk_common
- * @{
- */
- /*******************************************************************************
- * Definitions
- ******************************************************************************/
- /*! @name Driver version */
- /*@{*/
- /*! @brief reset driver version 2.0.0. */
- #define FSL_RESET_DRIVER_VERSION (MAKE_VERSION(2, 0, 0))
- /*@}*/
- /*!
- * @brief Enumeration for peripheral reset control bits
- *
- * Defines the enumeration for peripheral reset control bits in PRESETCTRL/ASYNCPRESETCTRL registers
- */
- typedef enum _SYSCON_RSTn
- {
- kFLASH_RST_SHIFT_RSTn = 0 | 7U, /**< Flash controller reset control */
- kFMC_RST_SHIFT_RSTn = 0 | 8U, /**< Flash accelerator reset control */
- kMUX_RST_SHIFT_RSTn = 0 | 11U, /**< Input mux reset control */
- kIOCON_RST_SHIFT_RSTn = 0 | 13U, /**< IOCON reset control */
- kGPIO0_RST_SHIFT_RSTn = 0 | 14U, /**< GPIO0 reset control */
- kGPIO1_RST_SHIFT_RSTn = 0 | 15U, /**< GPIO1 reset control */
- kPINT_RST_SHIFT_RSTn = 0 | 18U, /**< Pin interrupt (PINT) reset control */
- kGINT_RST_SHIFT_RSTn = 0 | 19U, /**< Grouped interrupt (PINT) reset control. */
- kDMA_RST_SHIFT_RSTn = 0 | 20U, /**< DMA reset control */
- kCRC_RST_SHIFT_RSTn = 0 | 21U, /**< CRC reset control */
- kWWDT_RST_SHIFT_RSTn = 0 | 22U, /**< Watchdog timer reset control */
- kADC0_RST_SHIFT_RSTn = 0 | 27U, /**< ADC0 reset control */
- kMRT_RST_SHIFT_RSTn = 65536 | 0U, /**< Multi-rate timer (MRT) reset control */
- kSCT0_RST_SHIFT_RSTn = 65536 | 2U, /**< SCTimer/PWM 0 (SCT0) reset control */
- kUTICK_RST_SHIFT_RSTn = 65536 | 10U, /**< Micro-tick timer reset control */
- kFC0_RST_SHIFT_RSTn = 65536 | 11U, /**< Flexcomm Interface 0 reset control */
- kFC1_RST_SHIFT_RSTn = 65536 | 12U, /**< Flexcomm Interface 1 reset control */
- kFC2_RST_SHIFT_RSTn = 65536 | 13U, /**< Flexcomm Interface 2 reset control */
- kFC3_RST_SHIFT_RSTn = 65536 | 14U, /**< Flexcomm Interface 3 reset control */
- kFC4_RST_SHIFT_RSTn = 65536 | 15U, /**< Flexcomm Interface 4 reset control */
- kFC5_RST_SHIFT_RSTn = 65536 | 16U, /**< Flexcomm Interface 5 reset control */
- kFC6_RST_SHIFT_RSTn = 65536 | 17U, /**< Flexcomm Interface 6 reset control */
- kFC7_RST_SHIFT_RSTn = 65536 | 18U, /**< Flexcomm Interface 7 reset control */
- kDMIC_RST_SHIFT_RSTn = 65536 | 19U, /**< Digital microphone interface reset control */
- kCT32B2_RST_SHIFT_RSTn = 65536 | 22U, /**< CT32B2 reset control */
- kUSB_RST_SHIFT_RSTn = 65536 | 25U, /**< USB reset control */
- kCT32B0_RST_SHIFT_RSTn = 65536 | 26U, /**< CT32B0 reset control */
- kCT32B1_RST_SHIFT_RSTn = 65536 | 27U, /**< CT32B1 reset control */
- kCT32B3_RST_SHIFT_RSTn = 67108864 | 13U, /**< CT32B3 reset control */
- kCT32B4_RST_SHIFT_RSTn = 67108864 | 14U, /**< CT32B4 reset control */
- } SYSCON_RSTn_t;
- /** Array initializers with peripheral reset bits **/
- #define ADC_RSTS \
- { \
- kADC0_RST_SHIFT_RSTn \
- } /* Reset bits for ADC peripheral */
- #define CRC_RSTS \
- { \
- kCRC_RST_SHIFT_RSTn \
- } /* Reset bits for CRC peripheral */
- #define DMA_RSTS \
- { \
- kDMA_RST_SHIFT_RSTn \
- } /* Reset bits for DMA peripheral */
- #define DMIC_RSTS \
- { \
- kDMIC_RST_SHIFT_RSTn \
- } /* Reset bits for ADC peripheral */
- #define FLEXCOMM_RSTS \
- { \
- kFC0_RST_SHIFT_RSTn, kFC1_RST_SHIFT_RSTn, kFC2_RST_SHIFT_RSTn, kFC3_RST_SHIFT_RSTn, kFC4_RST_SHIFT_RSTn, \
- kFC5_RST_SHIFT_RSTn, kFC6_RST_SHIFT_RSTn, kFC7_RST_SHIFT_RSTn \
- } /* Reset bits for FLEXCOMM peripheral */
- #define GINT_RSTS \
- { \
- kGINT_RST_SHIFT_RSTn, kGINT_RST_SHIFT_RSTn \
- } /* Reset bits for GINT peripheral. GINT0 & GINT1 share same slot */
- #define GPIO_RSTS \
- { \
- kGPIO0_RST_SHIFT_RSTn, kGPIO1_RST_SHIFT_RSTn \
- } /* Reset bits for GPIO peripheral */
- #define INPUTMUX_RSTS \
- { \
- kMUX_RST_SHIFT_RSTn \
- } /* Reset bits for INPUTMUX peripheral */
- #define IOCON_RSTS \
- { \
- kIOCON_RST_SHIFT_RSTn \
- } /* Reset bits for IOCON peripheral */
- #define FLASH_RSTS \
- { \
- kFLASH_RST_SHIFT_RSTn, kFMC_RST_SHIFT_RSTn \
- } /* Reset bits for Flash peripheral */
- #define MRT_RSTS \
- { \
- kMRT_RST_SHIFT_RSTn \
- } /* Reset bits for MRT peripheral */
- #define PINT_RSTS \
- { \
- kPINT_RST_SHIFT_RSTn \
- } /* Reset bits for PINT peripheral */
- #define SCT_RSTS \
- { \
- kSCT0_RST_SHIFT_RSTn \
- } /* Reset bits for SCT peripheral */
- #define CTIMER_RSTS \
- { \
- kCT32B0_RST_SHIFT_RSTn, kCT32B1_RST_SHIFT_RSTn, kCT32B2_RST_SHIFT_RSTn, kCT32B3_RST_SHIFT_RSTn, \
- kCT32B4_RST_SHIFT_RSTn \
- } /* Reset bits for TIMER peripheral */
- #define USB_RSTS \
- { \
- kUSB_RST_SHIFT_RSTn \
- } /* Reset bits for USB peripheral */
- #define UTICK_RSTS \
- { \
- kUTICK_RST_SHIFT_RSTn \
- } /* Reset bits for UTICK peripheral */
- #define WWDT_RSTS \
- { \
- kWWDT_RST_SHIFT_RSTn \
- } /* Reset bits for WWDT peripheral */
- typedef SYSCON_RSTn_t reset_ip_name_t;
- /*******************************************************************************
- * API
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif
- /*!
- * @brief Assert reset to peripheral.
- *
- * Asserts reset signal to specified peripheral module.
- *
- * @param peripheral Assert reset to this peripheral. The enum argument contains encoding of reset register
- * and reset bit position in the reset register.
- */
- void RESET_SetPeripheralReset(reset_ip_name_t peripheral);
- /*!
- * @brief Clear reset to peripheral.
- *
- * Clears reset signal to specified peripheral module, allows it to operate.
- *
- * @param peripheral Clear reset to this peripheral. The enum argument contains encoding of reset register
- * and reset bit position in the reset register.
- */
- void RESET_ClearPeripheralReset(reset_ip_name_t peripheral);
- /*!
- * @brief Reset peripheral module.
- *
- * Reset peripheral module.
- *
- * @param peripheral Peripheral to reset. The enum argument contains encoding of reset register
- * and reset bit position in the reset register.
- */
- void RESET_PeripheralReset(reset_ip_name_t peripheral);
- /*!
- * @brief Set slave core to reset state and hold.
- */
- void RESET_SetSlaveCoreReset(void);
- /*!
- * @brief Release slave core from reset state.
- */
- void RESET_ClearSlaveCoreReset(void);
- /*!
- * @brief Reset slave core with the boot entry.
- */
- void RESET_SlaveCoreReset(uint32_t bootAddr, uint32_t bootStackPointer);
- #if defined(__cplusplus)
- }
- #endif
- /*! @} */
- #endif /* _FSL_RESET_H_ */
|