plat/arm: remove weak implemention of 'plat_arm_psci_override_pm_ops' function
authorChandni Cherukuri <chandni.cherukuri@arm.com>
Wed, 14 Nov 2018 08:13:59 +0000 (13:43 +0530)
committerChandni Cherukuri <chandni.cherukuri@arm.com>
Thu, 29 Nov 2018 09:35:59 +0000 (15:05 +0530)
In order to allow Arm platforms to override the default list of PSCI
callbacks, remove the existing weak implementation of
'plat_arm_psci_override_pm_ops' function and let all the Arm platforms
implement their own 'plat_arm_psci_override_pm_ops' function.

For platforms that support SCMI protocol, the function
'css_scmi_override_pm_ops' can be additionally used as well to
override the default PSCI callbacks.

Change-Id: If7c27468bd51a00ea9c2a3716b5894163f5a9f3c
Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com>
plat/arm/board/fvp/fvp_pm.c
plat/arm/board/juno/juno_pm.c [new file with mode: 0644]
plat/arm/board/juno/platform.mk
plat/arm/board/juno/sp_min/sp_min-juno.mk
plat/arm/board/n1sdp/n1sdp_bl31_setup.c
plat/arm/common/arm_pm.c
plat/arm/css/drivers/scmi/scmi.h
plat/arm/css/drivers/scp/css_pm_scmi.c
plat/arm/css/sgi/sgi_bl31_setup.c
plat/arm/css/sgm/sgm_bl31_setup.c

index 7b85043bcb8f6cf176559c84b5702885b5f6eaac..78d30255599624370f09d6d4eaf614947f2c6e5e 100644 (file)
@@ -416,3 +416,8 @@ plat_psci_ops_t plat_arm_psci_pm_ops = {
        .read_mem_protect       = arm_psci_read_mem_protect,
        .write_mem_protect      = arm_nor_psci_write_mem_protect,
 };
+
+const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+{
+       return ops;
+}
diff --git a/plat/arm/board/juno/juno_pm.c b/plat/arm/board/juno/juno_pm.c
new file mode 100644 (file)
index 0000000..da2e92b
--- /dev/null
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <plat_arm.h>
+#include <scmi.h>
+
+const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+{
+       return css_scmi_override_pm_ops(ops);
+}
index ba1acd425f0ac71b969d117fc90e60d3e751358a..ad955f6760cbf9dd9dbbe1f37a6ef9fec4931c97 100644 (file)
@@ -27,6 +27,7 @@ endif
 CSS_USE_SCMI_SDS_DRIVER                :=      1
 
 PLAT_INCLUDES          :=      -Iplat/arm/board/juno/include           \
+                               -Iplat/arm/css/drivers/scmi             \
                                -Iplat/arm/css/drivers/sds
 
 PLAT_BL_COMMON_SOURCES :=      plat/arm/board/juno/${ARCH}/juno_helpers.S \
@@ -79,6 +80,7 @@ BL31_SOURCES          +=      drivers/cfi/v2m/v2m_flash.c             \
                                lib/cpus/aarch64/cortex_a57.S           \
                                lib/cpus/aarch64/cortex_a72.S           \
                                lib/utils/mem_region.c                  \
+                               plat/arm/board/juno/juno_pm.c           \
                                plat/arm/board/juno/juno_topology.c     \
                                plat/arm/common/arm_nor_psci_mem_protect.c \
                                ${JUNO_GIC_SOURCES}                     \
index 52781093f125a6d2b0176aa42ee9f174851a9a9a..b3471c1fbc97db576a67a70aff3f15aa72719b17 100644 (file)
@@ -10,6 +10,7 @@ BL32_SOURCES  +=      drivers/cfi/v2m/v2m_flash.c             \
                        lib/cpus/aarch32/cortex_a57.S           \
                        lib/cpus/aarch32/cortex_a72.S           \
                        lib/utils/mem_region.c                  \
+                       plat/arm/board/juno/juno_pm.c           \
                        plat/arm/board/juno/juno_topology.c     \
                        plat/arm/common/arm_nor_psci_mem_protect.c      \
                        plat/arm/soc/common/soc_css_security.c  \
index 65aad9cf23fa143b51351b1299332f0f86212690..cdd0b63da79de85bb89552ad6284c43cc6b69b69 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "../../css/drivers/scmi/scmi.h"
 #include "../../css/drivers/mhu/css_mhu_doorbell.h"
+#include <plat_arm.h>
 #include <platform_def.h>
 
 static scmi_channel_plat_info_t n1sdp_scmi_plat_info = {
@@ -20,3 +21,8 @@ scmi_channel_plat_info_t *plat_css_get_scmi_info()
 {
        return &n1sdp_scmi_plat_info;
 }
+
+const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+{
+       return css_scmi_override_pm_ops(ops);
+}
index 6394bfb5c456d6ec52e8155e42f9393cc69a455a..3be1b5d3935143e0330bfb501f5043fbea9b42b1 100644 (file)
@@ -14,7 +14,6 @@
 #include <psci.h>
 
 /* Allow ARM Standard platforms to override these functions */
-#pragma weak plat_arm_psci_override_pm_ops
 #pragma weak plat_arm_program_trusted_mailbox
 
 #if !ARM_RECOM_STATE_ID_ENC
@@ -132,14 +131,6 @@ int arm_validate_psci_entrypoint(uintptr_t entrypoint)
                PSCI_E_INVALID_ADDRESS;
 }
 
-/******************************************************************************
- * Default definition on ARM standard platforms to override the plat_psci_ops.
- *****************************************************************************/
-const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
-{
-       return ops;
-}
-
 /******************************************************************************
  * Helper function to save the platform state before a system suspend. Save the
  * state of the system components which are not in the Always ON power domain.
index e1358bfa4f73a1f8bd0e391bc41f372804943241..28dfc9ac6a150a1508a34432c119ea81a9763575 100644 (file)
@@ -8,6 +8,7 @@
 #define SCMI_H
 
 #include <bakery_lock.h>
+#include <psci.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <spinlock.h>
@@ -162,4 +163,7 @@ int scmi_ap_core_get_reset_addr(void *p, uint64_t *reset_addr, uint32_t *attr);
 /* API to get the platform specific SCMI channel information. */
 scmi_channel_plat_info_t *plat_css_get_scmi_info();
 
+/* API to override default PSCI callbacks for platforms that support SCMI. */
+const plat_psci_ops_t *css_scmi_override_pm_ops(plat_psci_ops_t *ops);
+
 #endif /* SCMI_H */
index 956f583c0fb5ce10c07674315f9e4eba39d1466e..1397fd80ccccd5e8872fe9189a27260e727d99b2 100644 (file)
@@ -339,7 +339,7 @@ void __init plat_arm_pwrc_setup(void)
  * the SCMI driver, query capability via SCMI and modify the PSCI capability
  * based on that.
  *****************************************************************************/
-const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+const plat_psci_ops_t *css_scmi_override_pm_ops(plat_psci_ops_t *ops)
 {
        uint32_t msg_attr;
        int ret;
index ce850269952bf74240b4b87660d4a283049b8268..d44f89c76b4df26fa790b7549a15171fb4da017c 100644 (file)
@@ -101,3 +101,8 @@ void bl31_platform_setup(void)
        sgi_ras_intr_handler_setup();
 #endif
 }
+
+const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+{
+       return css_scmi_override_pm_ops(ops);
+}
index 29c32e7cf7e4df59b38a5b6eae8d05ad9c127f95..952572e3ad8a3c29533483dba41f180ba80edc80 100644 (file)
@@ -47,3 +47,8 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
 
        arm_bl31_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3);
 }
+
+const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
+{
+       return css_scmi_override_pm_ops(ops);
+}