/* * @brief LPC8xx PMU chip driver * * @note * Copyright(C) NXP Semiconductors, 2012 * All rights reserved. * * @par * Software that is described herein is for illustrative purposes only * which provides customers with programming information regarding the * LPC products. This software is supplied "AS IS" without any warranties of * any kind, and NXP Semiconductors and its licensor disclaim any and * all warranties, express or implied, including all implied warranties of * merchantability, fitness for a particular purpose and non-infringement of * intellectual property rights. NXP Semiconductors assumes no responsibility * or liability for the use of the software, conveys no license or rights under any * patent, copyright, mask work right, or any other intellectual property rights in * or to any products. NXP Semiconductors reserves the right to make changes * in the software without notification. NXP Semiconductors also makes no * representation or warranty that such application will be suitable for the * specified use without further testing or modification. * * @par * Permission to use, copy, modify, and distribute this software and its * documentation is hereby granted, under NXP Semiconductors' and its * licensor's relevant copyrights in the software, without fee, provided that it * is used in conjunction with NXP Semiconductors microcontrollers. This * copyright, permission, and disclaimer notice must appear in all copies of * this code. */ #ifndef __PMU_8XX_H_ #define __PMU_8XX_H_ #ifdef __cplusplus extern "C" { #endif /** @defgroup PMU_8XX CHIP: LPC8xx PMU driver * @ingroup CHIP_8XX_Drivers * @{ */ /** * @brief LPC8xx Power Management Unit register block structure */ typedef struct { __IO uint32_t PCON; /*!< Offset: 0x000 Power control Register (R/W) */ __IO uint32_t GPREG[4]; /*!< Offset: 0x004 General purpose Registers 0..3 (R/W) */ __IO uint32_t DPDCTRL; /*!< Offset: 0x014 Deep power-down control register (R/W) */ } LPC_PMU_T; /* Reserved bits masks for registers */ #define PMU_PCON_RESERVED ((0xf<<4)|(0x6<<8)|0xfffff000) #define PMU_DPDCTRL_RESERVED (~0xf) /** * @brief LPC8xx low power mode type definitions */ typedef enum CHIP_PMU_MCUPOWER { PMU_MCU_SLEEP = 0, /*!< Sleep mode */ PMU_MCU_DEEP_SLEEP, /*!< Deep Sleep mode */ PMU_MCU_POWER_DOWN, /*!< Power down mode */ PMU_MCU_DEEP_PWRDOWN /*!< Deep power down mode */ } CHIP_PMU_MCUPOWER_T; /** * PMU PCON register bit fields & masks */ #define PMU_PCON_PM_SLEEP (0x0) /*!< ARM WFI enter sleep mode */ #define PMU_PCON_PM_DEEPSLEEP (0x1) /*!< ARM WFI enter Deep-sleep mode */ #define PMU_PCON_PM_POWERDOWN (0x2) /*!< ARM WFI enter Power-down mode */ #define PMU_PCON_PM_DEEPPOWERDOWN (0x3) /*!< ARM WFI enter Deep Power-down mode */ #define PMU_PCON_NODPD (1 << 3) /*!< Disable deep power-down mode */ #define PMU_PCON_SLEEPFLAG (1 << 8) /*!< Sleep mode flag */ #define PMU_PCON_DPDFLAG (1 << 11) /*!< Deep power-down flag */ /** * PMU DPDCTRL register bit fields & masks */ #define PMU_DPDCTRL_WAKEUPPHYS (1 << 0) /** Enable wake-up pin hysteresis */ #define PMU_DPDCTRL_WAKEPAD (1 << 1) /** Disable the Wake-up */ #define PMU_DPDCTRL_LPOSCEN (1 << 2) /** Enable the low-power oscillator (10 khz self wk) */ #define PMU_DPDCTRL_LPOSCDPDEN (1 << 3) /** Enable the low-power oscillator in deep power-down*/ /** * @brief Write a value to a GPREG register * @param pPMU : Pointer to PMU register block * @param regIndex : Register index to write to, must be 0..3 * @param value : Value to write * @return None */ STATIC INLINE void Chip_PMU_WriteGPREG(LPC_PMU_T *pPMU, uint8_t regIndex, uint32_t value) { pPMU->GPREG[regIndex] = value; } /** * @brief Read a value to a GPREG register * @param pPMU : Pointer to PMU register block * @param regIndex : Register index to read from, must be 0..3 * @return Value read from the GPREG register */ STATIC INLINE uint32_t Chip_PMU_ReadGPREG(LPC_PMU_T *pPMU, uint8_t regIndex) { return pPMU->GPREG[regIndex]; } /** * @brief Enter MCU Sleep mode * @param pPMU : Pointer to PMU register block * @return None * @note The sleep mode affects the ARM Cortex-M0+ core only. Peripherals * and memories are active. */ void Chip_PMU_SleepState(LPC_PMU_T *pPMU); /** * @brief Enter MCU Deep Sleep mode * @param pPMU : Pointer to PMU register block * @return None * @note In Deep-sleep mode, the peripherals receive no internal clocks. * The flash is in stand-by mode. The SRAM memory and all peripheral registers * as well as the processor maintain their internal states. The WWDT, WKT, * and BOD can remain active to wake up the system on an interrupt. */ void Chip_PMU_DeepSleepState(LPC_PMU_T *pPMU); /** * @brief Enter MCU Power down mode * @param pPMU : Pointer to PMU register block * @return None * @note In Power-down mode, the peripherals receive no internal clocks. * The internal SRAM memory and all peripheral registers as well as the * processor maintain their internal states. The flash memory is powered * down. The WWDT, WKT, and BOD can remain active to wake up the system * on an interrupt. */ void Chip_PMU_PowerDownState(LPC_PMU_T *pPMU); /** * @brief Enter MCU Deep Power down mode * @param pPMU : Pointer to PMU register block * @return None * @note For maximal power savings, the entire system is shut down * except for the general purpose registers in the PMU and the self * wake-up timer. Only the general purpose registers in the PMU maintain * their internal states. The part can wake up on a pulse on the WAKEUP * pin or when the self wake-up timer times out. On wake-up, the part * reboots. */ void Chip_PMU_DeepPowerDownState(LPC_PMU_T *pPMU); /** * @brief Place the MCU in a low power state * @param pPMU : Pointer to PMU register block * @param SleepMode : Sleep mode * @return None */ void Chip_PMU_Sleep(LPC_PMU_T *pPMU, CHIP_PMU_MCUPOWER_T SleepMode); /** * @brief Disables deep power-down mode * @param pPMU : Pointer to PMU register block * @return None * @note Calling this functions prevents entry to Deep power-down * mode. Once set, this can only be cleared by power-on reset. */ STATIC INLINE void Chip_PMU_DisableDeepPowerDown(LPC_PMU_T *pPMU) { pPMU->PCON = PMU_PCON_NODPD | (pPMU->PCON & ~PMU_PCON_RESERVED); } /** * @brief Returns sleep/power-down flags * @param pPMU : Pointer to PMU register block * @return Or'ed values of PMU_PCON_SLEEPFLAG and PMU_PCON_DPDFLAG * @note These indicate that the PMU is setup for entry into a low * power state on the next WFI() instruction. */ STATIC INLINE uint32_t Chip_PMU_GetSleepFlags(LPC_PMU_T *pPMU) { return (pPMU->PCON & (PMU_PCON_SLEEPFLAG | PMU_PCON_DPDFLAG)); } /** * @brief Clears sleep/power-down flags * @param pPMU : Pointer to PMU register block * @param flags : Or'ed value of PMU_PCON_SLEEPFLAG and PMU_PCON_DPDFLAG * @return Nothing * @note Use this function to clear a low power state prior to calling * WFI(). */ STATIC INLINE void Chip_PMU_ClearSleepFlags(LPC_PMU_T *pPMU, uint32_t flags) { pPMU->PCON |= (flags & (~PMU_PCON_RESERVED)); } /** * @brief Sets deep power-down functions * @param pPMU : Pointer to PMU register block * @param flags : Or'ed value of PMU_DPDCTRL_* values * @return Nothing * @note Some of these functions may need to be set prior to going * into a low power mode. Note that some calls to this function enable * functions while others disable it based on the PMU_DPDCTRL_* * definitions. */ STATIC INLINE void Chip_PMU_SetPowerDownControl(LPC_PMU_T *pPMU, uint32_t flags) { pPMU->DPDCTRL = flags | (pPMU->DPDCTRL & ~PMU_DPDCTRL_RESERVED); } /** * @brief Cleats deep power-down functions * @param pPMU : Pointer to PMU register block * @param flags : Or'ed value of PMU_DPDCTRL_* values * @return Nothing * @note Some of these functions may need to be cleared prior to going * into a low power mode. Note that some calls to this function enable * functions while others disable it based on the PMU_DPDCTRL_* * definitions. */ STATIC INLINE void Chip_PMU_ClearPowerDownControl(LPC_PMU_T *pPMU, uint32_t flags) { pPMU->DPDCTRL &= ~(flags | PMU_DPDCTRL_RESERVED); } /** * @} */ #ifdef __cplusplus } #endif #endif /* __PMU_8XX_H_ */