1# i.MX 6SoloX 2 3# Copyright 2018,2024 NXP 4# SPDX-License-Identifier: Apache-2.0 5 6if SOC_MCIMX6X_M4 7 8config FPU 9 default y 10 11 12#-By default ROM_START is relocated to address 0 in a 1K region, allowing imx_rproc 13# to translate it to TCM_L address 14#-Select the relocation if the chosen flash is not the TCML 15#-Disable this option if you use the bin format as this choice will enlarge it. 16# This is due to relocation of the irq-vectors in a different memory region than 17# the chosen zephyr,flash and all the address span in between 18# will be filled in the bin file. 19config ROMSTART_RELOCATION_ROM 20 default n 21 22config ROMSTART_REGION_ADDRESS 23 default $(dt_nodelabel_reg_addr_hex,tcml) 24 25endif # SOC_MCIMX6X_M4 26