1 /* 2 * Copyright (c) 2025-2026, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef SOC_H 8 #define SOC_H 9 10 #include <stdint.h> 11 12 uint32_t get_soc_part_no(void); 13 uint32_t get_plat_cluster_start_id(void); 14 15 #endif /* SOC_H */ 16