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
14	partitions {
15		compatible = "fixed-partitions";
16		#address-cells = <1>;
17		#size-cells = <1>;
18
19		storage: partition@0 {
20			reg = <0x00000000 0x08000000>;
21		};
22	};
23};
24
25/ {
26	storage_disk {
27		compatible = "zephyr,flash-disk";
28		partition = <&storage>;
29		disk-name = "NAND";
30		cache-size = <4096>;
31	};
32};
33