1# Copyright 2022-2024 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_MIMX8MN6_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 15config NUM_IRQS 16 default 240 17 18config SYS_CLOCK_HW_CYCLES_PER_SEC 19 default 8000000 20 21endif 22