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 "sgm775_core.h"
9 #include "sgm775_pik.h"
10 #include "sgm775_pik_cpu.h"
11 
sgm775_core_get_count(void)12 unsigned int sgm775_core_get_count(void)
13 {
14     return (PIK_CLUS0->PIK_CONFIG & PIK_CPU_V8_2_PIK_CONFIG_NO_OF_PPU) - 1;
15 }
16 
sgm775_cluster_get_count(void)17 unsigned int sgm775_cluster_get_count(void)
18 {
19     return SGM775_CLUSTER_COUNT;
20 }
21