1# Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_FVP_AEMV8R
5
6config SOC_SERIES
7	default "fvp_aemv8r"
8
9config SYS_CLOCK_HW_CYCLES_PER_SEC
10	default 100000000
11
12config NUM_IRQS
13	default 128
14
15if SOC_FVP_AEMV8R_AARCH64
16
17config SOC
18	default "fvp_aemv8r_aarch64"
19
20# Workaround for not being able to have commas in macro arguments
21DT_CHOSEN_Z_FLASH := zephyr,flash
22
23config FLASH_SIZE
24	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
25
26config FLASH_BASE_ADDRESS
27	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
28
29endif # SOC_FVP_AEMV8R_AARCH64
30
31endif # SOC_SERIES_FVP_AEMV8R
32