1# Copyright 2020-2024 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_MIMX8MM6_A53
5
6# Workaround for not being able to have commas in macro arguments
7DT_CHOSEN_Z_FLASH := zephyr,flash
8
9config FLASH_SIZE
10	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
11
12config FLASH_BASE_ADDRESS
13	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
14
15# Enable GIC Safe Configuration to run multiple OSes on Cortex-A Cores
16config GIC_SAFE_CONFIG
17	default y
18
19config NUM_IRQS
20	default 240
21
22config SYS_CLOCK_HW_CYCLES_PER_SEC
23	default 8000000
24
25endif
26