K74B/87400/drivers/hdf/sfrs/pmua_sfr.h

176 lines
6.1 KiB
C
Raw Normal View History

2024-01-25 14:22:18 +08:00
/**
* @copyright 2023 indie Semiconductor
*
* This file is proprietary to indie Semiconductor.
* All rights reserved. Reproduction or distribution, in whole
* or in part, is forbidden except by express written permission
* of indie Semiconductor.
*
* @file pmua_sfr.h
*/
#ifndef PMUA_SFR_H__
#define PMUA_SFR_H__
#include <stdint.h>
/* ------- Start of section using anonymous unions and disabling warnings ------- */
#if defined (__CC_ARM)
#pragma push
#pragma anon_unions
#elif defined (__ICCARM__)
#pragma language=extended
#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wc11-extensions"
#pragma clang diagnostic ignored "-Wreserved-id-macro"
#elif defined (__GNUC__)
/* anonymous unions are enabled by default */
#elif defined (__TMS470__)
/* anonymous unions are enabled by default */
#elif defined (__TASKING__)
#pragma warning 586
#elif defined (__CSMC__)
/* anonymous unions are enabled by default */
#else
#warning Not supported compiler type
#endif
/**
* @brief A structure to represent Special Function Registers for PMUA.
*/
typedef struct {
union {
struct {
uint8_t HIBERNATE : 1;
uint8_t FASTBOOT : 1; /*!< Fast boot */
uint8_t : 6; /* (reserved) */
uint32_t : 24; /* (reserved) */
};
uint32_t WORD;
} CTRL; /* +0x000 */
union {
struct {
uint8_t ENABLE_1V5 : 4; /*!< Enable 1.5V dwell time */
uint8_t ATTACH_1V5 : 4; /*!< Attach 1.5V dwell time */
uint8_t ATTACH_3V3 : 4; /*!< Attach 3.3V dwell time */
uint8_t POWER_DOWN_MCU : 4; /*!< Power down MCU dwell time */
uint16_t : 16; /* (reserved) */
};
uint32_t WORD;
} DWELL; /* +0x004 */
union {
struct {
uint8_t : 2; /* (reserved) */
uint8_t UV_POL : 1; /*!< Reserved */
uint8_t OV_POL : 1; /*!< Reserved */
uint8_t : 4; /* (reserved) */
uint8_t : 8; /* (reserved) */
uint8_t : 8; /* (reserved) */
uint8_t LOW : 1; /*!< Battery Voltage Low Status */
uint8_t HIGH : 1; /*!< Battery Voltage High Status */
/*
uint8_t LOW_DBNC : 1; !< Battery Voltage Low Status after debouncing
uint8_t HIGH_DBNC : 1; !< Battery Voltage High Status after deboucing
*/
uint8_t BAT_STATE : 2;
uint8_t : 4; /* (reserved) */
};
uint32_t WORD;
} VBATCTRL; /* +0x008 */
union {
struct {
uint8_t UV : 1; /*!< under voltage signal debounce enable */
uint8_t OV : 1; /*!< over voltage signal debounce enable */
uint8_t UVSTRB0SEL : 1; /*!< Clock select for UV low debouncing */
uint8_t UVSTRB1SEL : 1; /*!< Clock select for UV high debouncing */
uint8_t OVSTRB0SEL : 1; /*!< Clock select for OV low debouncing */
uint8_t OVSTRB1SEL : 1; /*!< Clock select for OV high debouncing */
uint8_t : 2; /* (reserved) */
uint32_t : 24; /* (reserved) */
};
uint32_t WORD;
} VBATDBNC; /* +0x00C */
union {
struct {
uint8_t UVTHRES1 : 8; /*!< Under Voltage debouncing threshold for 0to1 Transition */
uint8_t OVTHRES1 : 8; /*!< Over Voltage debouncing threshold for 0to1 Transition */
uint8_t UVTHRES0 : 8; /*!< Under Voltage debouncing threshold for 1to0 Transition */
uint8_t OVTHRES0 : 8; /*!< Over Voltage debouncing threshold for 1to0 Transition */
};
uint32_t WORD;
} VBATDBNCTHRES; /* +0x010 */
union {
struct {
union {
struct {
uint8_t UV_ENA : 1; /*!< under voltage interrupt enable */
uint8_t OV_ENA : 1; /*!< over voltage interrupt enable */
uint8_t : 6; /* (reserved) */
};
uint8_t BYTE;
} ENABLE;
union {
struct {
uint8_t UV_CLR : 1; /*!< under voltage interrupt clear */
uint8_t OV_CLR : 1; /*!< over voltage interrupt clear */
uint8_t : 6; /* (reserved) */
};
uint8_t BYTE;
} CLEAR;
union {
struct {
uint8_t UV_STS : 1; /*!< under voltage interrupt status */
uint8_t OV_STS : 1; /*!< over voltage interrupt status */
uint8_t : 6; /* (reserved) */
};
uint8_t BYTE;
} STATUS;
union {
struct {
uint8_t UV_ACT : 1; /*!< under voltage interrupt active */
uint8_t OV_ACT : 1; /*!< over voltage interrupt active */
uint8_t : 6; /* (reserved) */
};
uint8_t BYTE;
} IRQ;
};
uint32_t WORD;
} PMUIRQ; /* +0x014 */
} PMUA_SFRS_t;
/* -------- End of section using anonymous unions and disabling warnings -------- */
#if defined (__CC_ARM)
#pragma pop
#elif defined (__ICCARM__)
/* leave anonymous unions enabled */
#elif (__ARMCC_VERSION >= 6010050)
#pragma clang diagnostic pop
#elif defined (__GNUC__)
/* anonymous unions are enabled by default */
#elif defined (__TMS470__)
/* anonymous unions are enabled by default */
#elif defined (__TASKING__)
#pragma warning restore
#elif defined (__CSMC__)
/* anonymous unions are enabled by default */
#else
#warning Not supported compiler type
#endif
/**
* @brief The starting address of PMUA SFRS.
*/
#define PMUA_SFRS ((__IO PMUA_SFRS_t *)0x40000400)
#endif /* end of __PMUA_SFR_H__ section */