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}; 25 26#include "nxp_mcxn23x_common.dtsi" 27 28/* 29 * Explicitly enable FMU after we include the common dtsi file, 30 * which will set it to disabled. 31 */ 32&fmu { 33 status = "okay"; 34}; 35