]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
feat(psci): introduce 'pwr_domain_off_early' hook
authorVarun Wadekar <vwadekar@nvidia.com>
Tue, 25 Apr 2023 13:03:27 +0000 (14:03 +0100)
committerVarun Wadekar <vwadekar@nvidia.com>
Wed, 26 Apr 2023 08:53:10 +0000 (09:53 +0100)
This patch introduces the 'pwr_domain_off_early'  hook for
platforms wanting to perform housekeeping steps before the
PSCI framework starts the CPU power off sequence. Platforms
might also want to use ths opportunity to ensure that the
CPU off sequence can proceed.

The PSCI framework expects a return code of PSCI_E_DENIED,
if the platform wants to halt the CPU off sequence.

Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
Change-Id: I6980e84fc4d6cb80537a178d0d3d26fb28a13853

docs/porting-guide.rst
include/lib/psci/psci.h
lib/psci/psci_off.c

index 25b55e8135d2be3e96a178a60caedb6a139a16ab..fc7266eced1cb5a973a603bf7ba330ffebb8eb61 100644 (file)
@@ -2785,6 +2785,22 @@ Perform the platform specific actions to power on a CPU, specified
 by the ``MPIDR`` (first argument). The generic code expects the platform to
 return PSCI_E_SUCCESS on success or PSCI_E_INTERN_FAIL for any failure.
 
+plat_psci_ops.pwr_domain_off_early() [optional]
+...............................................
+
+This optional function performs the platform specific actions to check if
+powering off the calling CPU and its higher parent power domain levels as
+indicated by the ``target_state`` (first argument) is possible or allowed.
+
+The ``target_state`` encodes the platform coordinated target local power states
+for the CPU power domain and its parent power domain levels.
+
+For this handler, the local power state for the CPU power domain will be a
+power down state where as it could be either power down, retention or run state
+for the higher power domain levels depending on the result of state
+coordination. The generic code expects PSCI_E_DENIED return code if the
+platform thinks that CPU_OFF should not proceed on the calling CPU.
+
 plat_psci_ops.pwr_domain_off()
 ..............................
 
index 6d27b7b61a586784248f7a7bb337c70ba85b3fa5..4d7e58e93ad1e4b4ad406cddbe4bc67ba32b6a5e 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2023, NVIDIA Corporation. All rights reserved.
  *
  * SPDX-License-Identifier: BSD-3-Clause
  */
@@ -317,6 +318,7 @@ typedef struct plat_psci_ops {
        void (*cpu_standby)(plat_local_state_t cpu_state);
        int (*pwr_domain_on)(u_register_t mpidr);
        void (*pwr_domain_off)(const psci_power_state_t *target_state);
+       int (*pwr_domain_off_early)(const psci_power_state_t *target_state);
        void (*pwr_domain_suspend_pwrdown_early)(
                                const psci_power_state_t *target_state);
 #if PSCI_OS_INIT_MODE
index 637adb97e1a2721353c88064d6bfad89f3496924..9f36ac719efe25da6d7079cc10e22d5bb80dd111 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2023, NVIDIA Corporation. All rights reserved.
  *
  * SPDX-License-Identifier: BSD-3-Clause
  */
@@ -56,6 +57,19 @@ int psci_do_cpu_off(unsigned int end_pwrlvl)
        /* Construct the psci_power_state for CPU_OFF */
        psci_set_power_off_state(&state_info);
 
+       /*
+        * Call the platform provided early CPU_OFF handler to allow
+        * platforms to perform any housekeeping activities before
+        * actually powering the CPU off. PSCI_E_DENIED indicates that
+        * the CPU off sequence should be aborted at this time.
+        */
+       if (psci_plat_pm_ops->pwr_domain_off_early) {
+               rc = psci_plat_pm_ops->pwr_domain_off_early(&state_info);
+               if (rc == PSCI_E_DENIED) {
+                       return rc;
+               }
+       }
+
        /*
         * Get the parent nodes here, this is important to do before we
         * initiate the power down sequence as after that point the core may