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 SGM776_CORE_H 9 #define SGM776_CORE_H 10 11 #define SGM776_CORE_PER_CLUSTER_MAX 8 12 #define SGM776_CLUSTER_COUNT 1 13 14 unsigned int sgm776_core_get_count(void); 15 unsigned int sgm776_cluster_get_count(void); 16 17 #endif /* SGM776_CORE_H */ 18