/* * Copyright 1997-2016 Freescale Semiconductor, Inc. * Copyright 2016-2021 NXP * * SPDX-License-Identifier: BSD-3-Clause */ /*! * @file S32K344_TEMPSENSE.h * @version 1.9 * @date 2021-10-27 * @brief Peripheral Access Layer for S32K344_TEMPSENSE * * This file contains register definitions and macros for easy access to their * bit fields. * * This file assumes LITTLE endian system. */ /** * @page misra_violations MISRA-C:2012 violations * * @section [global] * Violates MISRA 2012 Advisory Rule 2.3, local typedef not referenced * The SoC header defines typedef for all modules. * * @section [global] * Violates MISRA 2012 Advisory Rule 2.5, local macro not referenced * The SoC header defines macros for all modules and registers. * * @section [global] * Violates MISRA 2012 Advisory Directive 4.9, Function-like macro * These are generated macros used for accessing the bit-fields from registers. * * @section [global] * Violates MISRA 2012 Required Rule 5.1, identifier clash * The supported compilers use more than 31 significant characters for identifiers. * * @section [global] * Violates MISRA 2012 Required Rule 5.2, identifier clash * The supported compilers use more than 31 significant characters for identifiers. * * @section [global] * Violates MISRA 2012 Required Rule 5.4, identifier clash * The supported compilers use more than 31 significant characters for identifiers. * * @section [global] * Violates MISRA 2012 Required Rule 5.5, identifier clash * The supported compilers use more than 31 significant characters for identifiers. * * @section [global] * Violates MISRA 2012 Required Rule 21.1, defined macro '__I' is reserved to the compiler * This type qualifier is needed to ensure correct I/O access and addressing. */ /* Prevention from multiple including the same memory map */ #if !defined(S32K344_TEMPSENSE_H_) /* Check if memory map has not been already included */ #define S32K344_TEMPSENSE_H_ #include "S32K344_COMMON.h" /* ---------------------------------------------------------------------------- -- TEMPSENSE Peripheral Access Layer ---------------------------------------------------------------------------- */ /*! * @addtogroup TEMPSENSE_Peripheral_Access_Layer TEMPSENSE Peripheral Access Layer * @{ */ /** TEMPSENSE - Register Layout Typedef */ typedef struct { __IO uint32_t ETSCTL; /**< ETS Control, offset: 0x0 */ uint8_t RESERVED_0[4]; __I uint32_t TCA0; /**< Temperature Coefficient, offset: 0x8 */ __I uint32_t TCA1; /**< Temperature Coefficient, offset: 0xC */ __I uint32_t TCA2; /**< Temperature Coefficient, offset: 0x10 */ } TEMPSENSE_Type, *TEMPSENSE_MemMapPtr; /** Number of instances of the TEMPSENSE module. */ #define TEMPSENSE_INSTANCE_COUNT (1u) /* TEMPSENSE - Peripheral instance base addresses */ /** Peripheral TEMPSENSE base address */ #define IP_TEMPSENSE_BASE (0x4037C000u) /** Peripheral TEMPSENSE base pointer */ #define IP_TEMPSENSE ((TEMPSENSE_Type *)IP_TEMPSENSE_BASE) /** Array initializer of TEMPSENSE peripheral base addresses */ #define IP_TEMPSENSE_BASE_ADDRS { IP_TEMPSENSE_BASE } /** Array initializer of TEMPSENSE peripheral base pointers */ #define IP_TEMPSENSE_BASE_PTRS { IP_TEMPSENSE } /* ---------------------------------------------------------------------------- -- TEMPSENSE Register Masks ---------------------------------------------------------------------------- */ /*! * @addtogroup TEMPSENSE_Register_Masks TEMPSENSE Register Masks * @{ */ /*! @name ETSCTL - ETS Control */ /*! @{ */ #define TEMPSENSE_ETSCTL_ETS_EN_MASK (0x1U) #define TEMPSENSE_ETSCTL_ETS_EN_SHIFT (0U) #define TEMPSENSE_ETSCTL_ETS_EN_WIDTH (1U) #define TEMPSENSE_ETSCTL_ETS_EN(x) (((uint32_t)(((uint32_t)(x)) << TEMPSENSE_ETSCTL_ETS_EN_SHIFT)) & TEMPSENSE_ETSCTL_ETS_EN_MASK) #define TEMPSENSE_ETSCTL_GNDSEL_MASK (0x2U) #define TEMPSENSE_ETSCTL_GNDSEL_SHIFT (1U) #define TEMPSENSE_ETSCTL_GNDSEL_WIDTH (1U) #define TEMPSENSE_ETSCTL_GNDSEL(x) (((uint32_t)(((uint32_t)(x)) << TEMPSENSE_ETSCTL_GNDSEL_SHIFT)) & TEMPSENSE_ETSCTL_GNDSEL_MASK) /*! @} */ /*! @name TCA0 - Temperature Coefficient */ /*! @{ */ #define TEMPSENSE_TCA0_TCA0_MASK (0xFFFFU) #define TEMPSENSE_TCA0_TCA0_SHIFT (0U) #define TEMPSENSE_TCA0_TCA0_WIDTH (16U) #define TEMPSENSE_TCA0_TCA0(x) (((uint32_t)(((uint32_t)(x)) << TEMPSENSE_TCA0_TCA0_SHIFT)) & TEMPSENSE_TCA0_TCA0_MASK) /*! @} */ /*! @name TCA1 - Temperature Coefficient */ /*! @{ */ #define TEMPSENSE_TCA1_TCA1_MASK (0xFFFFU) #define TEMPSENSE_TCA1_TCA1_SHIFT (0U) #define TEMPSENSE_TCA1_TCA1_WIDTH (16U) #define TEMPSENSE_TCA1_TCA1(x) (((uint32_t)(((uint32_t)(x)) << TEMPSENSE_TCA1_TCA1_SHIFT)) & TEMPSENSE_TCA1_TCA1_MASK) /*! @} */ /*! @name TCA2 - Temperature Coefficient */ /*! @{ */ #define TEMPSENSE_TCA2_TCA2_MASK (0xFFFFU) #define TEMPSENSE_TCA2_TCA2_SHIFT (0U) #define TEMPSENSE_TCA2_TCA2_WIDTH (16U) #define TEMPSENSE_TCA2_TCA2(x) (((uint32_t)(((uint32_t)(x)) << TEMPSENSE_TCA2_TCA2_SHIFT)) & TEMPSENSE_TCA2_TCA2_MASK) /*! @} */ /*! * @} */ /* end of group TEMPSENSE_Register_Masks */ /*! * @} */ /* end of group TEMPSENSE_Peripheral_Access_Layer */ #endif /* #if !defined(S32K344_TEMPSENSE_H_) */