blob: 4864f488b97d1d1bb16558e2251d1635abbb2a3b [file] [log] [blame]
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +05301/*
Joel Hutton8aaa4f52019-01-08 15:18:28 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +05303 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +00007#include <plat/arm/common/plat_arm.h>
8
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +05309#include <scmi.h>
10
11const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
12{
Joel Hutton8aaa4f52019-01-08 15:18:28 +000013#if CSS_USE_SCMI_SDS_DRIVER
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053014 return css_scmi_override_pm_ops(ops);
Joel Hutton8aaa4f52019-01-08 15:18:28 +000015#else
16 return ops;
17#endif /* CSS_USE_SCMI_SDS_DRIVER */
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053018}