1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <mem.h> 8#include <arm/armv8-m.dtsi> 9 10/ { 11 soc { 12 sram: sram@14000000 { 13 ranges = <0x4000000 0x14000000 0x20000000>; 14 }; 15 16 peripheral: peripheral@50000000 { 17 ranges = <0x0 0x50000000 0x10000000>; 18 19 ftfe: flash-controller@43000 { 20 ranges = <0x0 0x10000000 0x4000000>; 21 }; 22 }; 23 24 flexspi: spi@500c8000 { 25 reg = <0x500c8000 0x1000>, <0x90000000 DT_SIZE_M(8)>; 26 }; 27 }; 28}; 29 30#include "nxp_mcxn94x_common.dtsi" 31 32/* 33 * Explicitly enable FMU after we include the common dtsi file, 34 * which will set it to disabled. 35 */ 36&fmu { 37 status = "okay"; 38}; 39