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 #ifndef SGM775_CORE_H
9 #define SGM775_CORE_H
10 
11 #define SGM775_CORE_PER_CLUSTER_MAX 8
12 #define SGM775_CLUSTER_COUNT 1
13 
14 unsigned int sgm775_core_get_count(void);
15 unsigned int sgm775_cluster_get_count(void);
16 
17 #endif /* SGM775_CORE_H */
18