mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #9521 from OTAkeys/pr/stm32f0_pm
cpu/stm32f0: add periph_pm support
This commit is contained in:
commit
d7b3091abc
@ -74,12 +74,17 @@ extern "C" {
|
||||
#define PERIPH_SPI_NEEDS_TRANSFER_REGS
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name PM definitions
|
||||
* @{
|
||||
*/
|
||||
#if defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F1) || \
|
||||
defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4) || \
|
||||
defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1) || \
|
||||
defined(DOXYGEN)
|
||||
/**
|
||||
* @brief Number of usable low power modes
|
||||
*/
|
||||
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
||||
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || \
|
||||
defined(CPU_FAM_STM32L1) || defined(DOXYGEN)
|
||||
#define PM_NUM_MODES (2U)
|
||||
|
||||
/**
|
||||
@ -89,7 +94,15 @@ extern "C" {
|
||||
#define STM32_PM_STOP (1U)
|
||||
#define STM32_PM_STANDBY (0U)
|
||||
/** @} */
|
||||
|
||||
#ifndef PM_EWUP_CONFIG
|
||||
/**
|
||||
* @brief Wake-up pins configuration (CSR register)
|
||||
*/
|
||||
#define PM_EWUP_CONFIG (0U)
|
||||
#endif
|
||||
#endif
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief Available peripheral buses
|
||||
|
@ -2,6 +2,7 @@
|
||||
* Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* 2015 Freie Universität Berlin
|
||||
* 2015 Engineering-Spirit
|
||||
* 2017-2019 OTA keys S.A.
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
@ -19,17 +20,14 @@
|
||||
* @author Nick v. IJzendoorn <nijzndoorn@engineering-spirit.nl>
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* @author Fabian Nack <nack@inf.fu-berlin.de>
|
||||
* @author Vincent Dupont <vincent@otakeys.com>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
#include "irq.h"
|
||||
#include "periph/pm.h"
|
||||
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
||||
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || \
|
||||
defined(CPU_FAM_STM32L1)
|
||||
#include "stmclk.h"
|
||||
#endif
|
||||
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
@ -40,81 +38,66 @@
|
||||
*
|
||||
* Available values can be found in reference manual, PWR section, register CR.
|
||||
*/
|
||||
#define PM_STOP_CONFIG (PWR_CR_LPDS | PWR_CR_FPDS)
|
||||
#if defined(CPU_FAM_STM32F0)
|
||||
#define PM_STOP_CONFIG (PWR_CR_LPDS)
|
||||
#elif defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
|
||||
#define PM_STOP_CONFIG (PWR_CR_LPSDSR | PWR_CR_ULP)
|
||||
#else
|
||||
#define PM_STOP_CONFIG (PWR_CR_LPDS | PWR_CR_FPDS)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef PM_STANDBY_CONFIG
|
||||
/**
|
||||
* @brief Define config flags for standby mode
|
||||
*
|
||||
* Available values can be found in reference manual, PWR section, register CR.
|
||||
*/
|
||||
#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
|
||||
#define PM_STANDBY_CONFIG (PWR_CR_PDDS | PWR_CR_CWUF | PWR_CR_CSBF | PWR_CR_ULP)
|
||||
#else
|
||||
#define PM_STANDBY_CONFIG (PWR_CR_PDDS | PWR_CR_CWUF | PWR_CR_CSBF)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
void pm_set(unsigned mode)
|
||||
{
|
||||
int deep = 0;
|
||||
int deep;
|
||||
|
||||
/* I just copied it from stm32f1/2/4, but I suppose it would work for the
|
||||
* others... /KS */
|
||||
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
||||
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || \
|
||||
defined(CPU_FAM_STM32L1)
|
||||
switch (mode) {
|
||||
#ifdef STM32_PM_STANDBY
|
||||
case STM32_PM_STANDBY:
|
||||
/* Set PDDS to enter standby mode on deepsleep and clear flags */
|
||||
PWR->CR |= (PWR_CR_PDDS | PWR_CR_CWUF | PWR_CR_CSBF);
|
||||
PWR->CR &= ~(PM_STOP_CONFIG | PM_STANDBY_CONFIG);
|
||||
PWR->CR |= PM_STANDBY_CONFIG;
|
||||
/* Enable WKUP pin to use for wakeup from standby mode */
|
||||
#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
|
||||
/* Enable Ultra Low Power mode */
|
||||
PWR->CR |= PWR_CR_ULP;
|
||||
|
||||
PWR->CSR |= PWR_CSR_EWUP1;
|
||||
#if !defined(CPU_LINE_STM32L053xx)
|
||||
/* STM32L053 only have 2 wake pins */
|
||||
PWR->CSR |= PWR_CSR_EWUP3;
|
||||
#endif
|
||||
#else
|
||||
PWR->CSR |= PWR_CSR_EWUP;
|
||||
#endif
|
||||
PWR->CSR |= PM_EWUP_CONFIG;
|
||||
/* Set SLEEPDEEP bit of system control block */
|
||||
deep = 1;
|
||||
break;
|
||||
case STM32_PM_STOP:
|
||||
#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
|
||||
/* Clear Wakeup flag */
|
||||
PWR->CR |= PWR_CR_CWUF;
|
||||
/* Clear PDDS to enter stop mode on */
|
||||
PWR->CR &= ~(PWR_CR_PDDS);
|
||||
/* Regulator in LP mode */
|
||||
PWR->CR |= PWR_CR_LPSDSR;
|
||||
|
||||
/* Enable Ultra Low Power mode*/
|
||||
PWR->CR |= PWR_CR_ULP;
|
||||
#else
|
||||
/* Clear PDDS and LPDS bits to enter stop mode on */
|
||||
/* deepsleep with voltage regulator on */
|
||||
PWR->CR &= ~(PWR_CR_PDDS | PWR_CR_LPDS);
|
||||
PWR->CR |= PM_STOP_CONFIG;
|
||||
#endif
|
||||
#ifdef STM32_PM_STOP
|
||||
case STM32_PM_STOP:
|
||||
PWR->CR &= ~(PM_STOP_CONFIG | PM_STANDBY_CONFIG);
|
||||
PWR->CR |= PM_STOP_CONFIG;
|
||||
/* Set SLEEPDEEP bit of system control block */
|
||||
deep = 1;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
deep = 0;
|
||||
break;
|
||||
}
|
||||
#else
|
||||
(void) mode;
|
||||
#endif
|
||||
|
||||
cortexm_sleep(deep);
|
||||
|
||||
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
||||
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || \
|
||||
defined(CPU_FAM_STM32L1)
|
||||
if (deep) {
|
||||
/* Re-init clock after STOP */
|
||||
stmclk_init_sysclk();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
||||
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || \
|
||||
defined(CPU_FAM_STM32L1)
|
||||
void pm_off(void)
|
||||
{
|
||||
irq_disable();
|
||||
pm_set(0);
|
||||
}
|
||||
#endif
|
||||
|
@ -1,5 +1,7 @@
|
||||
export CPU_ARCH = cortex-m0
|
||||
export CPU_FAM = stm32f0
|
||||
|
||||
USEMODULE += pm_layered
|
||||
|
||||
include $(RIOTCPU)/stm32_common/Makefile.include
|
||||
include $(RIOTMAKE)/arch/cortexm.inc.mk
|
||||
|
Loading…
Reference in New Issue
Block a user