1# Copyright (c) 2024 EPAM Systems
2# Copyright (c) 2024 Renesas Electronics Corporation
3# SPDX-License-Identifier: Apache-2.0
4
5if SOC_SERIES_RZG3S
6
7config NUM_IRQS
8	default 480
9
10config SYS_CLOCK_HW_CYCLES_PER_SEC
11	default	$(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency)
12
13config FLASH_SIZE
14	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
15
16config FLASH_BASE_ADDRESS
17	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
18
19config SYS_CLOCK_EXISTS
20	default y
21
22# This is required to support debug with xSPI boot when Zephyr already booted by TF-A
23config INIT_ARCH_HW_AT_BOOT
24	default y
25
26config BUILD_OUTPUT_S19
27	default y
28
29endif # SOC_SERIES_RZG3S
30