1/* 2 * Copyright (c) 2022 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&flashcontroller0 { 8 reg = <0x00000000 DT_SIZE_K(2048)>; 9}; 10 11&flash0 { 12 reg = <0x00000000 DT_SIZE_K(2048)>; 13 partitions { 14 compatible = "fixed-partitions"; 15 #address-cells = <1>; 16 #size-cells = <1>; 17 18 flashdisk_partition: partition@0 { 19 label = "flashdisk"; 20 reg = <0x00000000 0x00200000>; 21 }; 22 }; 23}; 24 25/ { 26 test_disk: storage_disk { 27 compatible = "zephyr,flash-disk"; 28 partition = <&flashdisk_partition>; 29 disk-name = "NAND"; 30 cache-size = <4096>; 31 }; 32}; 33