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