1# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_FVP_AEMV8A
5
6config SYS_CLOCK_HW_CYCLES_PER_SEC
7	default 100000000
8
9config NUM_IRQS
10	default 16384 if GIC_V3_ITS
11	default 128 if !GIC_V3_ITS
12
13if SOC_FVP_BASE_REVC_2XAEMV8A
14
15# Workaround for not being able to have commas in macro arguments
16DT_CHOSEN_Z_FLASH := zephyr,flash
17
18config FLASH_SIZE
19	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
20
21config FLASH_BASE_ADDRESS
22	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
23
24endif # SOC_FVP_BASE_REVC_2XAEMV8A
25
26endif # SOC_SERIES_FVP_AEMV8A
27