mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
MISRA Violation: MISRA-C:2012 R.4.6 - Using basic numerical type int rather than a typedef that includes size and signedness information. Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@xilinx.com> Change-Id: I4eccce7e238f283348a5013e2e45c91435b4ae4e
22 lines
426 B
C
22 lines
426 B
C
/*
|
|
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <plat_private.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
int32_t plat_core_pos_by_mpidr(u_register_t mpidr)
|
|
{
|
|
if ((mpidr & MPIDR_CLUSTER_MASK) != 0U) {
|
|
return -1;
|
|
}
|
|
|
|
if ((mpidr & MPIDR_CPU_MASK) >= PLATFORM_CORE_COUNT) {
|
|
return -1;
|
|
}
|
|
|
|
return (int32_t)versal_calc_core_pos(mpidr);
|
|
}
|