blob: 1be4fd320713be8eacc0fef7404006374049b677 [file] [log] [blame]
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
&flashcontroller0 {
reg = <0x00000000 DT_SIZE_K(2048)>;
};
&flash0 {
reg = <0x00000000 DT_SIZE_K(2048)>;
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
flashdisk_partition: partition@0 {
label = "flashdisk";
reg = <0x00000000 0x00200000>;
};
};
};
/ {
storage_disk {
compatible = "zephyr,flash-disk";
partition = <&flashdisk_partition>;
disk-name = "NAND";
cache-size = <4096>;
};
};