1 /* 2 * Copyright (c) 2023-2024, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __RSE_BRINGUP_HELPERS_HAL_H__ 9 #define __RSE_BRINGUP_HELPERS_HAL_H__ 10 11 #include <stdint.h> 12 #include <stddef.h> 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 uint32_t rse_bringup_helpers_hal_get_pins_offset(void); 19 20 void *rse_bringup_helpers_hal_get_vm0_exec_address(void); 21 void *rse_bringup_helpers_hal_get_qpsi_exec_address(void); 22 void *rse_bringup_helpers_hal_get_side_band_exec_address(void); 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif /* __RSE_BRINGUP_HELPERS_HAL_H__ */ 29