1/*
2 * Copyright (c) 2019 Peter Bigot Consulting, LLC
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&mx25r64 {
8	partitions {
9		compatible = "fixed-partitions";
10		#address-cells = <1>;
11		#size-cells = <1>;
12
13		small_partition: partition@0 {
14			label = "small";
15			reg = <0x00000000 0x00010000>;
16		};
17		medium_partition: partition@10000 {
18			label = "medium";
19			reg = <0x00010000 0x000F0000>;
20		};
21		large_partition: partition@100000 {
22			label = "large";
23			reg = <0x00100000 0x00300000>;
24		};
25	};
26};
27