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 512KB of storage at the end of 3072KB flash */ 14 storage_partition: partition@280000 { 15 label = "storage"; 16 reg = <0x00280000 DT_SIZE_K(512)>; 17 }; 18 }; 19}; 20 21/* To avoid test on nor_flash, disable it. */ 22&nor_flash { 23 status = "disabled"; 24}; 25