1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flashcontroller0 {
8	reg = <0x00000000 DT_SIZE_K(1024)>;
9};
10
11&flash0 {
12	reg = <0x00000000 DT_SIZE_K(1024)>;
13	erase-block-size = <512>;
14
15	partitions {
16		compatible = "fixed-partitions";
17		#address-cells = <1>;
18		#size-cells = <1>;
19
20		flashdisk_partition: partition@0 {
21			label = "flashdisk";
22			reg = <0x00000000 DT_SIZE_K(1024)>;
23		};
24	};
25};
26
27/ {
28	test_disk: storage_disk {
29		compatible = "zephyr,flash-disk";
30		partition = <&flashdisk_partition>;
31		disk-name = "NAND";
32		cache-size = <4096>;
33	};
34
35	ramdisk0 {
36		compatible = "zephyr,ram-disk";
37		disk-name = "RAM";
38		sector-size = <512>;
39		sector-count = <192>;
40	};
41};
42