1/ {
2	sim_flash_controller: sim_flash_controller {
3		compatible = "zephyr,sim-flash";
4
5		#address-cells = <1>;
6		#size-cells = <1>;
7		erase-value = <0x00>;
8
9		flash_sim0: flash_sim@0 {
10			compatible = "soc-nv-flash";
11			reg = <0x00000000 0x2000>;
12
13			erase-block-size = <1024>;
14			write-block-size = <4>;
15
16			partitions {
17				compatible = "fixed-partitions";
18				#address-cells = <1>;
19				#size-cells = <1>;
20
21				storage_partition: partition@0 {
22					label = "storage_partition";
23					reg = <0x00000000 0x2000>;
24				};
25			};
26		};
27	};
28};
29