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 SYS_CLOCK_HW_CYCLES_PER_SEC 7 default 100000000 8 9config NUM_IRQS 10 default 128 11 12# Workaround for not being able to have commas in macro arguments 13DT_CHOSEN_Z_FLASH := zephyr,flash 14 15config FLASH_SIZE 16 default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K) 17 18config FLASH_BASE_ADDRESS 19 default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH)) 20 21config MAX_DOMAIN_PARTITIONS 22 default 8 if SOC_FVP_AEMV8R_AARCH64 23 default 24 if USERSPACE && SOC_FVP_AEMV8R_AARCH32 24 25endif # SOC_SERIES_FVP_AEMV8R 26