Skip to content

Latest commit

 

History

History
134 lines (72 loc) · 6.96 KB

power_management.rst

File metadata and controls

134 lines (72 loc) · 6.96 KB

Power Management

Overview

Power management algorithm included in ESP-IDF can adjust APB frequency, CPU frequency, and put the chip into light sleep mode to run the application at smallest possible power consumption, given the requirements of application components.

Application components can express their requirements by creating and acquiring power management locks.

For instance, a driver for a peripheral clocked from APB can request the APB frequency to be set to 80 MHz, for the duration while the peripheral is used. Another example is that the RTOS will request the CPU to run at the highest configured frequency while there are tasks ready to run. Yet another example is a peripheral driver which needs interrupts to be enabled. Such driver can request light sleep to be disabled.

Naturally, requesting higher APB or CPU frequency or disabling light sleep causes higher current consumption. Components should try to limit usage of power management locks to the shortest amount of time possible.

Configuration

Power management can be enabled at compile time, using CONFIG_PM_ENABLE option.

Enabling power management features comes at the cost of increased interrupt latency. Extra latency depends on a number of factors, among which are CPU frequency, single/dual core mode, whether frequency switch needs to be performed or not. Minimal extra latency is 0.2us (when CPU frequency is 240MHz, and frequency scaling is not enabled), maximum extra latency is 40us (when frequency scaling is enabled, and a switch from 40MHz to 80MHz is performed on interrupt entry).

Dynamic frequency scaling (DFS) and automatic light sleep can be enabled in the application by calling :cppesp_pm_configure function. Its argument is a structure defining frequency scaling settings (for ESP32, minimum and maximum CPU frequencies). Alternatively, CONFIG_PM_DFS_INIT_AUTO option can be enabled in menuconfig. If enabled, maximal CPU frequency is determined by CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ setting, and minimal CPU frequency is set to the XTAL frequency.

Note

Automatic light sleep is based on FreeRTOS Tickless Idle functionality. :cppesp_pm_configure will return an ESP_ERR_NOT_SUPPORTED error if CONFIG_FREERTOS_USE_TICKLESS_IDLE option is not enabled in menuconfig, but automatic light sleep is requested.

Note

In light sleep, peripherals are clock gated, and interrupts (from GPIOs and internal peripherals) will not be generated. Wakeup source described in Sleep Modes <sleep_modes> documentation can be used to wake from light sleep state. For example, EXT0 and EXT1 wakeup source can be used to wake up from a GPIO.

Power Management Locks

As mentioned in the overview, applications can acquire/release locks to control the power management algorithm. When application takes a lock, power management algorithm operation is restricted in a way described below, for each lock. When the lock is released, such restriction is removed.

Different parts of the application can take the same lock. In this case, the lock must be released the same number of times as it was acquired, in order for power managment algorithm to resume.

In ESP32, three types of locks are supported:

ESP_PM_CPU_FREQ_MAX

Requests CPU frequency to be at the maximal value set via :cppesp_pm_configure. For ESP32, this value can be set to 80, 160, or 240MHz.

ESP_PM_APB_FREQ_MAX

Requests APB frequency to be at the maximal supported value. For ESP32, this is 80 MHz.

ESP_PM_NO_LIGHT_SLEEP

Prevents automatic light sleep from being used.

Power Management Algorithm for the ESP32

When dynamic frequency scaling is enabled, CPU frequency will be switched as follows:

  • If maximal CPU frequency (set using :cppesp_pm_configure or CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ) is 240 MHz:
    1. When ESP_PM_CPU_FREQ_MAX or ESP_PM_APB_FREQ_MAX locks are acquired, CPU frequency will be 240 MHz, and APB frequency will be 80 MHz.
    2. Otherwise, frequency will be switched to the minimal value set using :cppesp_pm_configure (usually, XTAL).
  • If maximal CPU frequency is 160 MHz:
    1. When ESP_PM_CPU_FREQ_MAX is acquired, CPU frequency is set to 160 MHz, and APB frequency to 80 MHz.
    2. When ESP_PM_CPU_FREQ_MAX is not acquired, but ESP_PM_APB_FREQ_MAX is, CPU and APB frequencies are set to 80 MHz.
    3. Otherwise, frequency will be switched to the minimal value set using :cppesp_pm_configure (usually, XTAL).
  • If maximal CPU frequency is 80 MHz:
    1. When ESP_PM_CPU_FREQ_MAX or ESP_PM_APB_FREQ_MAX locks are acquired, CPU and APB frequencies will be 80 MHz.
    2. Otherwise, frequency will be switched to the minimal value set using :cppesp_pm_configure (usually, XTAL).
  • When none of the locks are aquired, and light sleep is enabled in a call to :cppesp_pm_configure, the system will go into light sleep mode. The duration of light sleep will be determined by:

    • FreeRTOS tasks blocked with finite timeouts
    • Timers registered with High resolution timer <esp_timer> APIs

    Light sleep will duration will be chosen to wake up before the nearest event (task being unblocked, or timer elapses).

Dynamic Frequency Scaling and Peripheral Drivers

When DFS is enabled, APB frequency can be changed several times within a single RTOS tick. Some peripherals can work normally even when APB frequency changes; some can not.

The following peripherals can work even when APB frequency is changing:

  • UART: if REF_TICK is used as clock source (see use_ref_tick member of uart_config_t).
  • LEDC: if REF_TICK is used as clock source (see :cppledc_timer_config function).
  • RMT: if REF_TICK is used as clock source. Currently the driver does not support REF_TICK, but it can be enabled by clearing RMT_REF_ALWAYS_ON_CHx bit for the respective channel.

Currently, the following peripheral drivers are aware of DFS and will use ESP_PM_APB_FREQ_MAX lock for the duration of the transaction:

  • SPI master
  • SDMMC

The following drivers will hold ESP_PM_APB_FREQ_MAX lock while the driver is enabled:

  • SPI slave — between calls to :cppspi_slave_initialize and cppspi_slave_free.
  • Ethernet — between calls to :cppesp_eth_enable and :cppesp_eth_disable.
  • WiFi — between calls to :cppesp_wifi_start and :cppesp_wifi_stop. If modem sleep is enabled, lock will be released for thte periods of time when radio is disabled.
  • Bluetooth — between calls to :cppesp_bt_controller_enable and :cppesp_bt_controller_disable.

The following peripheral drivers are not aware of DFS yet. Applications need to acquire/release locks when necessary:

  • I2C
  • I2S
  • MCPWM
  • PCNT
  • Sigma-delta
  • Timer group

API Reference