1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include "frdm_mcxn947_mcxn947_cpu0.dtsi" 10 11/delete-node/ &slot0_partition; 12/delete-node/ &slot1_partition; 13/delete-node/ &storage_partition; 14 15/ { 16 model = "NXP FRDM_N94 board, QSPI variant"; 17 compatible = "nxp,mcxn947", "nxp,mcx"; 18 19 chosen { 20 zephyr,flash = &w25q64jvssiq; 21 }; 22 23}; 24 25&w25q64jvssiq { 26 partitions { 27 compatible = "fixed-partitions"; 28 #address-cells = <1>; 29 #size-cells = <1>; 30 31 slot0_partition: partition@0 { 32 label = "image-0"; 33 reg = <0x00000000 DT_SIZE_M(3)>; 34 }; 35 slot1_partition: partition@300000 { 36 label = "image-1"; 37 reg = <0x00300000 DT_SIZE_M(3)>; 38 }; 39 storage_partition: partition@600000 { 40 label = "storage"; 41 reg = <0x00600000 DT_SIZE_M(2)>; 42 }; 43 }; 44}; 45