ald_pmu.h 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
/**
  *********************************************************************************
  *
  * @file    ald_pmu.h
  * @brief   Header file of PMU module driver.
  *
  * @version V1.0
  * @date    04 Dec 2017
  * @author  AE Team
  * @note
  *
  * Copyright (C) Shanghai Eastsoft Microelectronics Co. Ltd. All rights reserved.
  *
  ********************************************************************************
  */

#ifndef __ALD_PMU_H__
#define __ALD_PMU_H__

#ifdef __cplusplus
extern "C" {
#endif

#include "utils.h"
#include "ald_syscfg.h"


/** @addtogroup ES32FXXX_ALD
  * @{
  */

/** @addtogroup PMU
  * @{
  */

/** @defgroup PMU_Public_Macros PMU Public Macros
  * @{
  */
#define PMU_SRAM0_ENABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        SET_BIT(PMU->PWRCR, BIT(PMU_PWRCR_SRAM_POSS));	\
        SYSCFG_LOCK();					\
    } while (0)
#define PMU_SRAM0_DISABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        CLEAR_BIT(PMU->PWRCR, BIT(PMU_PWRCR_SRAM_POSS));\
        SYSCFG_LOCK();					\
    } while (0)
#define PMU_SRAM1_ENABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        SET_BIT(PMU->PWRCR, BIT(PMU_PWRCR_SRAM_POSE));	\
        SYSCFG_LOCK();					\
    } while (0)
#define PMU_SRAM1_DISABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        CLEAR_BIT(PMU->PWRCR, BIT(PMU_PWRCR_SRAM_POSE));\
        SYSCFG_LOCK();					\
    } while (0)
#define PMU_BXCAN_ENABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        SET_BIT(PMU->PWRCR, PMU_PWRCR_BXCAN_MSK);	\
        SYSCFG_LOCK();					\
    } while (0)
#define PMU_BXCAN_DISABLE()				\
    do {							\
        SYSCFG_UNLOCK();				\
        CLEAR_BIT(PMU->PWRCR, PMU_PWRCR_BXCAN_MSK);	\
        SYSCFG_LOCK();					\
    } while (0)

#define PMU_GET_LVD_STATUS()	(READ_BITS(PMU->LVDCR, PMU_LVDCR_LVDO_MSK, PMU_LVDCR_LVDO_POS))
/**
  * @}
  */


/** @defgroup PMU_Public_Types PMU Public Types
  * @{
  */
/**
  * @brief Low power mode
  */
typedef enum
{
    PMU_LP_STOP1   = 0x0,	/**< Stop1 */
    PMU_LP_STOP2   = 0x1,	/**< Stop2 */
} pmu_lp_mode_t;

typedef enum
{
    PMU_SR_WUF      = (1U << 0),
} pmu_status_t;

/**
  * @brief LVD voltage select
  */
typedef enum
{
    PMU_LVD_VOL_SEL_2_0 = 0x0,	/**< 2.0V ~ 2.05V */
    PMU_LVD_VOL_SEL_2_1 = 0x1,	/**< 2.1V ~ 2.15V */
    PMU_LVD_VOL_SEL_2_2 = 0x2,	/**< 2.2V ~ 2.25V */
    PMU_LVD_VOL_SEL_2_4 = 0x3,	/**< 2.4V ~ 2.45V */
    PMU_LVD_VOL_SEL_2_6 = 0x4,	/**< 2.6V ~ 2.65V */
    PMU_LVD_VOL_SEL_2_8 = 0x5,	/**< 2.8V ~ 2.85V */
    PMU_LVD_VOL_SEL_3_0 = 0x6,	/**< 3.0V ~ 3.05V */
    PMU_LVD_VOL_SEL_3_6 = 0x7,	/**< 3.6V ~ 3.65V */
    PMU_LVD_VOL_SEL_4_0 = 0x8,	/**< 4.0V ~ 4.05V */
    PMU_LVD_VOL_SEL_4_6 = 0x9,	/**< 4.6V ~ 4.65V */
    PMU_LVD_VOL_SEL_2_3 = 0xA,	/**< 2.3V ~ 2.35V */
    PMU_LVD_VOL_SEL_EXT = 0xF,	/**< Select external input. It must be 1.2V */
} pmu_lvd_voltage_sel_t;

/**
  * @brief LVD trigger mode
  */
typedef enum
{
    PMU_LVD_TRIGGER_RISING_EDGE    = 0x0,	/**< Rising edge */
    PMU_LVD_TRIGGER_FALLING_EDGE   = 0x1,	/**< Falling edge */
    PMU_LVD_TRIGGER_HIGH_LEVEL     = 0x2,	/**< High level */
    PMU_LVD_TRIGGER_LOW_LEVEL      = 0x3,	/**< Low level */
    PMU_LVD_TRIGGER_RISING_FALLING = 0x4,	/**< Rising and falling edge */
} pmu_lvd_trigger_mode_t;

/**
  * @}
  */

/**
  * @defgroup PMU_Private_Macros PMU Private Macros
  * @{
  */
#define IS_PMU_LP_MODE(x)		(((x) == PMU_LP_STOP1) || \
                                 ((x) == PMU_LP_STOP2))
#define IS_PMU_STATUS(x)		((x) == PMU_SR_WUF)
#define IS_PMU_LVD_VOL_SEL(x)		(((x) == PMU_LVD_VOL_SEL_2_0) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_1) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_2) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_4) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_6) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_8) || \
                                     ((x) == PMU_LVD_VOL_SEL_3_0) || \
                                     ((x) == PMU_LVD_VOL_SEL_3_6) || \
                                     ((x) == PMU_LVD_VOL_SEL_4_0) || \
                                     ((x) == PMU_LVD_VOL_SEL_4_6) || \
                                     ((x) == PMU_LVD_VOL_SEL_2_3) || \
                                     ((x) == PMU_LVD_VOL_SEL_EXT))
#define IS_PMU_LVD_TRIGGER_MODE(x)	(((x) == PMU_LVD_TRIGGER_RISING_EDGE)  || \
                                     ((x) == PMU_LVD_TRIGGER_FALLING_EDGE) || \
                                     ((x) == PMU_LVD_TRIGGER_HIGH_LEVEL)   || \
                                     ((x) == PMU_LVD_TRIGGER_LOW_LEVEL)    || \
                                     ((x) == PMU_LVD_TRIGGER_RISING_FALLING))
/**
  * @}
  */

/** @addtogroup PMU_Public_Functions
  * @{
  */
/** @addtogroup PMU_Public_Functions_Group1
  * @{
  */
/* Low power mode select */
__STATIC_INLINE__ void ald_pmu_sleep()
{
    __WFI();
}

__STATIC_INLINE__ void ald_pmu_sleep_deep()
{
    SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
    __WFI();
}

void ald_pmu_stop1_enter(void);
void ald_pmu_stop2_enter(void);
flag_status_t ald_pmu_get_status(pmu_status_t sr);
void ald_pmu_clear_status(pmu_status_t sr);
/**
  * @}
  */
/** @addtogroup PMU_Public_Functions_Group2
  * @{
  */
/* LVD configure */
void ald_pmu_lvd_config(pmu_lvd_voltage_sel_t sel, pmu_lvd_trigger_mode_t mode, type_func_t state);
void ald_lvd_irq_handler(void);
/**
  * @}
  */
/**
  * @}
  */

/**
  * @}
  */

/**
  * @}
  */
#ifdef __cplusplus
}
#endif

#endif /* __ALD_PMU_H__ */