]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
fix(morello): add platform-specific power domain functions
authorWerner Lewis <werner.lewis@arm.com>
Wed, 15 Feb 2023 16:03:27 +0000 (16:03 +0000)
committerManish Pandey <manish.pandey2@arm.com>
Wed, 3 May 2023 15:00:50 +0000 (17:00 +0200)
Commit 4d8c18196378824e388cf31ef991ba8fbbb09cbf added a redistributor
power off to resolve an error on N1SDP/Morello. Prior to this fix,
turning off both cores in a cluster would cause a hang when powering
back on either core. This change introduced issues on other platforms
with a different GIC implementation, and was reverted in commit
60719e4e0965aead49d927f12bf2a37bd2629012.

This commit uses the previous fix in platform-specific implementations
of power domain off/suspend functions.

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
Change-Id: Ib7689a5e08ada3862406fa92019a6f0bcfb48d79

plat/arm/board/morello/morello_bl31_setup.c
plat/arm/board/morello/morello_pm.c [new file with mode: 0644]
plat/arm/board/morello/morello_private.h [new file with mode: 0644]
plat/arm/board/morello/platform.mk

index cef42f46cbc3f3e87cc8987a16a737fb8604bdc2..e13a38b3269ecdef047a92a13777c90c3c326d48 100644 (file)
@@ -12,6 +12,7 @@
 #include <services/arm_arch_svc.h>
 
 #include "morello_def.h"
+#include "morello_private.h"
 #include <platform_def.h>
 
 #ifdef TARGET_PLATFORM_SOC
@@ -33,6 +34,8 @@ scmi_channel_plat_info_t *plat_css_get_scmi_info(unsigned int channel_id)
 
 const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
 {
+       ops->pwr_domain_off = morello_pwr_domain_off;
+       ops->pwr_domain_suspend = morello_pwr_domain_suspend;
        return css_scmi_override_pm_ops(ops);
 }
 
diff --git a/plat/arm/board/morello/morello_pm.c b/plat/arm/board/morello/morello_pm.c
new file mode 100644 (file)
index 0000000..dda006e
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2023, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <lib/psci/psci.h>
+#include <plat/arm/common/plat_arm.h>
+#include <plat/arm/css/common/css_pm.h>
+
+#include "morello_private.h"
+
+/*******************************************************************************
+ * Morello specific functions called when turning off or suspending a power
+ * domain. Both additionally disable the GIC redistributor interface as cores
+ * are disabled to let cluster-PPU state transition to completion when a
+ * cluster is powered down.
+ ******************************************************************************/
+void morello_pwr_domain_off(const psci_power_state_t *target_state)
+{
+       css_pwr_domain_off(target_state);
+       plat_arm_gic_redistif_off();
+}
+
+void morello_pwr_domain_suspend(const psci_power_state_t *target_state)
+{
+       css_pwr_domain_suspend(target_state);
+       plat_arm_gic_redistif_off();
+}
diff --git a/plat/arm/board/morello/morello_private.h b/plat/arm/board/morello/morello_private.h
new file mode 100644 (file)
index 0000000..ea2fce9
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * Copyright (c) 2023, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef MORELLO_PRIVATE_H
+#define MORELLO_PRIVATE_H
+
+#include <lib/psci/psci.h>
+
+void morello_pwr_domain_off(const psci_power_state_t *target_state);
+void morello_pwr_domain_suspend(const psci_power_state_t *target_state);
+
+#endif /* MORELLO_PRIVATE_H */
index 0f0cabbad8df6354d72997f87a0a4df2173080fc..0ae7693380fc9a6de8ada36ef353ec9afa600372 100644 (file)
@@ -49,6 +49,7 @@ BL31_SOURCES          :=      ${MORELLO_CPU_SOURCES}                  \
                                ${INTERCONNECT_SOURCES}                 \
                                ${MORELLO_GIC_SOURCES}                  \
                                ${MORELLO_BASE}/morello_bl31_setup.c    \
+                               ${MORELLO_BASE}/morello_pm.c            \
                                ${MORELLO_BASE}/morello_topology.c      \
                                ${MORELLO_BASE}/morello_security.c      \
                                drivers/arm/css/sds/sds.c