1/*
2 * Copyright (c) 2019 Jan Van Winkel <jan.van_winkel@dxplore.eu>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flashcontroller0 {
8	reg = <0x00000000 DT_SIZE_K(4096)>;
9};
10
11&flash0 {
12	reg = <0x00000000 DT_SIZE_K(4096)>;
13	partitions {
14		compatible = "fixed-partitions";
15		#address-cells = <1>;
16		#size-cells = <1>;
17
18		small_partition: partition@0 {
19			label = "small";
20			reg = <0x00000000 0x00010000>;
21		};
22		medium_partition: partition@10000 {
23			label = "medium";
24			reg = <0x00010000 0x000F0000>;
25		};
26		large_partition: partition@100000 {
27			label = "large";
28			reg = <0x00100000 0x00300000>;
29		};
30	};
31};
32