blob: cc80651bc26e3311f095b53d49ac7e466d9cbfa4 [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 Diazc30db5b2019-01-23 20:37:32 +00007#include <drivers/arm/css/scmi.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +00008#include <plat/arm/common/plat_arm.h>
9
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053010const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
11{
Joel Hutton8aaa4f52019-01-08 15:18:28 +000012#if CSS_USE_SCMI_SDS_DRIVER
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053013 return css_scmi_override_pm_ops(ops);
Joel Hutton8aaa4f52019-01-08 15:18:28 +000014#else
15 return ops;
16#endif /* CSS_USE_SCMI_SDS_DRIVER */
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +053017}