3.3.7. S/W Architecture of System Suspend

3.3.7.1. Overview

TI AM62 family of devices support multiple Suspend-to-RAM modes, including Deep Sleep and MCU Only as described in Low Power Modes section. The SoC consumes very low power overall yet it is not completely shut off in these modes. For example, During Deep Sleep, Certain IPs (depending on the power domain to which then belong) will lose context on suspend. S/W should save and restore the context as required across state transitions. DDR is in self- refresh to allow context saving.

This section explains the high-level Software Flow of low power modes in AM62 family of devices. It also introduces the LPM constraints framework that enables seamless management of multiple Suspend-to-RAM modes.

3.3.7.2. System diagram and components

../../../_images/AM62x_Deep_Sleep_Flow.png

Above diagram has software sequence for how deep sleep (ie. Suspend to RAM) works on SK-AM62 ( Read more on the Starter Kit here ).

3.3.7.2.1. Deep Sleep Entry

  1. The user first instructs the System to Suspend. This triggers a suspend sequence from linux side (which runs on the A53 cluster of the SoC).

  2. As part of the TI_SCI driver’s suspend hook, I/O isolation is invoked which isolates all the pads from their respective pinmuxed controllers. Refer to Wakeup sources Documentation to understand more on this.

  3. Linux then suspends all the drivers in the order that they are probed. After ensuring that there were no faults in suspending the drivers, linux then issues core system suspend which ultimately is a PSCI system suspend call. Read more about PSCI here

  4. At this point only ATF is running on A53 cores and it does the job of sending a TISCI Message to the TIFS Core telling it to enter deep sleep and then it puts A53 into standby.

  5. The TIFS Core then encrypts and writes the contents of it’s own SRAM to DDR.

  6. Further it stops tick timer, disables interrupts that are not needed, and suspends local drivers. After the above steps it sends TISCI To DM for Suspend Finish and enters WFI.

  7. The DM (Device Manager) is the final entity in this entire deep sleep sequence. It does the following:

    1. Saves own context to DDR

    2. Disables Security IP LPSCs, such as LPSC_SAUL.

    3. Disables non-critical “IP-less” LPSCs, such as LPSC_main_test.

    4. Saves MAIN PADCONF MMRs

    5. Saves GTC counter and Disable it.

    6. Finally, Suspends OS.

    The OS in this case is the Free RTOS based Device Manager firmware itself. After this step, it starts performing the final few steps toward completion of Suspend to RAM.

  8. These steps include the following:

    1. Place DDR into Self Refresh

    2. Place USB into reset isolation

    3. Disable all LPSCs in MAIN except Debug, Always ON

    4. Disable all HSDIVs in MAIN_PLL.

    5. Bypass all MAIN PLLs.

    6. Configure selected wake sources, Enable MAIN IO Isolation.

    7. Disable MCU Core LPSCs, PDs

    8. Bypass MCU PLL

  9. Finally, DM R5 Enters WFI with all the other power domains turned OFF except WKUP Always ON. DM in WFI will basically wait for the configured wakeup source to trigger an interrupt that will act as the wakeup signal.

3.3.7.2.2. Deep Sleep Exit

  1. External async wakeup from wake source triggers the DM to resume.

  2. The DM brings MAIN Domain out of reset.

  3. Secure (TIFS) ROM begins to boot.

  4. A small piece of code called the FS Stub is required to restore the remaining context and resume the TIFS firmware.

    The TIFS Stub is loaded into the ATCM (Tightly Coupled Memory A of the DM R5) during device boot. The R5 SPL loads the TIFS Stub (which is a part of tispl.bin) onto DDR at address 0x9dc00000. The DM Firmware pulls in this TIFS Stub from DDR RAM to it’s ATCM where it then resides as long as the device is not shutdown.

  5. Then, the rest of the resume sequence is a mirror image of the deep sleep entry sequence.

  6. As the A53 core resumes, and subsequently the linux TI_SCI driver’s resume hook is called, I/O isolation is disabled. This allows the pads to be re-connected to their respective controllers and allow the device to function normally post resume.

3.3.7.3. LPM constraints framework

Starting with 10.0 DM firmware and ti-linux-6.6.y kernel, TI is offering an updated LPM Software Architecture that seamlessly manages the various Suspend-to-RAM modes supported by AM62 family of devices. The first part of this architecture is the introduction of “DM Managed” mode []. In this mode, the DM will by default attempt the deepest low power mode available during system wide suspend/resume.

However, Linux (or OSes running on remote cores) may want to constrain the DM for certain use cases. For example, the deepest state may have a resume latency that is too long for certain use cases, or a host OS may want certain wakeup-capable devices to stay enabled during suspend/resume.

To communicate these constraints to the DM, TI SCI has added new constraint APIs. On the Linux side, existing per-device PM QoS framework is used to collect these constraints and then pass them to the DM. Remote cores can directly register their constraints with DM using the new constraint APIs.

3.3.7.3.1. Types of Constraints

  1. Device Constraint: The LPM constraint can be set on behalf of a device. By setting this constraint, the host ensures that the device will not be powered off or reset in the selected mode.

  2. Resume Latency Constraint: The LPM resume latency constraint can be set to specify the maximum system resume latency value. By setting this constraint, the host ensures that the resume time from selected mode will be less than the constraint value.

For more detailed explanation of these constraints, refer to TISCI_MSG_LPM_SET_DEVICE_CONSTRAINT and TISCI_MSG_LPM_SET_LATENCY_CONSTRAINT of TISCI documentation.

On the Linux side, the constraints framework is managed within TI SCI code. No new APIs are needed by Linux drivers. Any device that is managed by TI SCI will be checked for QoS constraints or wakeup capability and the constraints will be sent to the DM (via the new SCI APIs.)

Specifically, checking of constraints is done at two levels: 1) Runtime PM suspend 2) System-wide suspend

The code enabling the constraints framework can be found in:

  1. TISCI PM Domain driver: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/tree/drivers/pmdomain/ti/ti_sci_pm_domains.c?h=10.00.07

  2. TISCI driver: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/tree/drivers/pmdomain/ti/ti_sci_pm_domains.c?h=10.00.07

Examples of adding constraints from the remote core side are being implemented and will be enabled in future release.

3.3.7.3.2. How to set constraints

Constraints can be placed from the Linux side in the following ways:

3.3.7.3.2.1. Device Constraint

These are automatically placed on behalf of any device that is wakeup-capable or wakeup-enabled by the TISCI PM domain driver. No additional driver-level changes are required.

Note

Some devices may disable the wakeup property by default. These can be enabled via the sysfs interface (e.g., /sys/bus/platform/devices/*/power/wakeup)

If a device wants to put a constraint to be not powered-off, it can use the Linux QoS framework and set the DEV_PM_QOS_RESUME_LATENCY equal to 0. An example is shown in the following RemoteProc driver: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/tree/drivers/remoteproc/ti_k3_r5_remoteproc.c?h=10.00.07#n535

3.3.7.3.2.2. Resume Latency Constraint

This constraint is exposed to the user-level through the existing sysfs PM QoS interface for CPU Cores. Default constraint is “no constraint”, but it can be changed as shown in the examples below:

  1. To set 100 usec resume latency for the SoC, a constraint can be placed for CPU0 (or any other CPU core):

root@evm:~# echo 100 > /sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us
  1. To clear the constraint, 0 has to be written to the same parameter:

root@evm:~# echo 0 > /sys/devices/system/cpu/cpu0/power/pm_qos_resume_latency_us

Setting a resume latency constraint impacts the deepest low power mode system can enter. The various modes and their latencies are documented here: https://downloads.ti.com/tisci/esd/latest/2_tisci_msgs/pm/lpm.html#tisci-msg-lpm-set-latency-constraint

Note

The constraints need to be set before each system suspend as DM firmware clears all constraints at resume time.

3.3.7.3.3. Constraints and mode selection explained

By default, if no constraint is set, then the deepest low power mode for SOC is selected. Otherwise, the mode selection is done as described below:

Device Constraint:

../../../_images/AM62_LPM_Dev_Cons.png

Above diagram shows the mode selection if constraints are set on MCU_WAKEUP devgroup devices. As shown, if the constraints are set on WAKEUP Domain devices or Always ON MCU domain devices, deep sleep mode will be selected. Otherwise, MCU Only mode will be selected.

If constraint is put on MAIN devgroup devices, then no low power mode is possible.

Important

USB devices are an exception in MAIN devgroup as there is extra hardware logic preventing reset of USB devices in Deep Sleep and MCU Only mode. If constraints are set on USB devices, deep sleep mode will be selected even though it’s technically part of MAIN devgroup.

For detailed description for devgroup of these devices, refer to Devgroup section of TISCI documentation.

Resume Latency Constraint:

The mode selection is done using resume latencies as mentioned in TI SCI LPM Documentation: Latency Table

3.3.7.4. Learning Resources

  1. AM62x Technical Reference Manual

  2. Technical White Paper on Enabling Low Power on AM62x

  3. Low Power Modes Documentation