blob: de91c16597d0a3c5ebf34f443025b40685b029f8 [file] [log] [blame]
nabkah01002e5692022-10-10 12:36:46 +01001/*
AlexeiFedorov2f30f102023-03-13 19:37:46 +00002 * Copyright (c) 2022-2023, Arm Limited. All rights reserved.
nabkah01002e5692022-10-10 12:36:46 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
AlexeiFedorov2f30f102023-03-13 19:37:46 +00008#ifndef PLATFORM_H
9#define PLATFORM_H
nabkah01002e5692022-10-10 12:36:46 +010010
11/*
12 * Helper that returns a linear core ID from a MPID
13 * Need to provide a RSI_HOST_CALL to request this from Host platform.
14 */
15unsigned int platform_get_core_pos(u_register_t mpid)
16{
17 return 0U;
18}
19
AlexeiFedorov2f30f102023-03-13 19:37:46 +000020#endif /* PLATFORM_H */