1 /* 2 * Renesas SCP/MCP Software 3 * Copyright (c) 2020-2021, Renesas Electronics Corporation. All rights 4 * reserved. 5 * 6 * SPDX-License-Identifier: BSD-3-Clause 7 */ 8 9 #ifndef RCAR_CORE_H 10 #define RCAR_CORE_H 11 12 #define RCAR_CORE_PER_CLUSTER_MAX 8 13 14 unsigned int rcar_core_get_count(void); 15 unsigned int rcar_cluster_get_count(void); 16 17 #endif /* RCAR_CORE_H */ 18