1/*
2 * Copyright (c) 2023, BrainCo Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flash0 {
8	partitions {
9		compatible = "fixed-partitions";
10		#address-cells = <1>;
11		#size-cells = <1>;
12
13		/* Set 2KB of storage at the end of 128KB flash */
14		storage_partition: partition@1f800 {
15			label = "storage";
16			reg = <0x0001f800 DT_SIZE_K(2)>;
17		};
18	};
19};
20
21/* To avoid test on nor_flash, disable it. */
22&nor_flash {
23	status = "disabled";
24};
25