blob: 2d02d94be445a2b7776bba98cdbac14d9e56e87f [file] [log] [blame]
Ghennadi Procopciuc1e38cff2024-01-26 15:29:08 +02001/*
2 * Copyright 2024 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <lib/psci/psci.h>
8#include <plat/common/platform.h>
9
10int plat_setup_psci_ops(uintptr_t sec_entrypoint,
11 const plat_psci_ops_t **psci_ops)
12{
13 static const plat_psci_ops_t s32g2_psci_ops = {
14 };
15
16 *psci_ops = &s32g2_psci_ops;
17
18 return 0;
19}
20