1 /*
2  * Copyright (C) 2024 Nordic Semiconductor ASA
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #include <zephyr/init.h>
7 #include <hal/nrf_vpr_csr.h>
8 
vpr_init(void)9 static int vpr_init(void)
10 {
11 	/* RT peripherals for VPR all share one enable.
12 	 * To prevent redundant calls, do it here once.
13 	 */
14 	nrf_vpr_csr_rtperiph_enable_set(true);
15 
16 	return 0;
17 }
18 
19 SYS_INIT(vpr_init, PRE_KERNEL_1, 0);
20