1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2017-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #include "sgm776_core.h" 9 #include "sgm776_pik.h" 10 #include "sgm776_pik_cpu.h" 11 sgm776_core_get_count(void)12unsigned int sgm776_core_get_count(void) 13 { 14 return (PIK_CLUS0->PCL_CONFIG & PIK_CPU_PCL_CONFIG_NO_OF_PPU) - 1; 15 } 16 sgm776_cluster_get_count(void)17unsigned int sgm776_cluster_get_count(void) 18 { 19 return SGM776_CLUSTER_COUNT; 20 } 21