aboutsummaryrefslogtreecommitdiff
path: root/include/plat
diff options
context:
space:
mode:
authorRoberto Vargas <roberto.vargas@arm.com>2018-09-24 17:14:46 +0100
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>2018-09-28 15:31:52 +0100
commit871de5373dfc590ea8d3384094f6d5de570b9524 (patch)
tree8ca2c51cae7926b09fedd072c4bfa3717725bfc4 /include/plat
parentdadb16eac2692f9d43fcdc547650288d6aa9c9fa (diff)
downloadtrusted-firmware-a-871de5373dfc590ea8d3384094f6d5de570b9524.tar.gz
PSCI: Remove platform compatibility layer
Change-Id: I40d040aa05bcbf11536a96ce59827711456b93a8 Co-authored-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com> Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'include/plat')
-rw-r--r--include/plat/common/platform.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/plat/common/platform.h b/include/plat/common/platform.h
index e0297ae2e9..c0f1b1816f 100644
--- a/include/plat/common/platform.h
+++ b/include/plat/common/platform.h
@@ -370,34 +370,11 @@ void plat_flush_next_bl_params(void);
#endif /* LOAD_IMAGE_V2 */
-#if ENABLE_PLAT_COMPAT
-/*
- * The below declarations are to enable compatibility for the platform ports
- * using the old platform interface.
- */
-
-/*******************************************************************************
- * Optional common functions (may be overridden)
- ******************************************************************************/
-unsigned int platform_get_core_pos(unsigned long mpidr);
-
-/*******************************************************************************
- * Mandatory PSCI Compatibility functions (BL31)
- ******************************************************************************/
-int platform_setup_pm(const plat_pm_ops_t **);
-
-unsigned int plat_get_aff_count(unsigned int, unsigned long);
-unsigned int plat_get_aff_state(unsigned int, unsigned long);
-
-#else /* __ENABLE_PLAT_COMPAT__ */
/*
* The below function enable Trusted Firmware components like SPDs which
* haven't migrated to the new platform API to compile on platforms which
* have the compatibility layer disabled.
*/
unsigned int platform_core_pos_helper(unsigned long mpidr);
-unsigned int platform_get_core_pos(unsigned long mpidr) __deprecated;
-
-#endif /* __ENABLE_PLAT_COMPAT__ */
#endif /* PLATFORM_H */