zephyr/boards/ti/common/launchxl-flash.dtsi
Alexandre Bailon 200e8d481f boards: ti: Create a common folder to share code between boards
This creates a common folder in order to share code between similar
boards. This is mostly for the CC1352P1 and CC1352P7 launchpad which
are very similar but it could be probably useful for some other boards.

Signed-off-by: Alexandre Bailon <abailon@baylibre.com>
2024-07-28 07:31:52 +03:00

37 lines
762 B
Plaintext

/*
* Copyright (c) 2021 Florin Stancu
*
* SPDX-License-Identifier: Apache-2.0
*/
&flash0 {
partitions {
/* 40 KiB (0xa000) for MCUboot */
boot_partition: partition@0 {
label = "mcuboot";
reg = <0x00000000 0x0000a000>;
};
/* 136 KiB (0x22000) per slot for application */
slot0_partition: partition@a000 {
label = "image-0";
reg = <0x0000a000 0x00022000>;
};
slot1_partition: partition@2c000 {
label = "image-1";
reg = <0x0002c000 0x00022000>;
};
/* 32 KiB (0x8000) for storage */
storage_partition: partition@4e000 {
label = "storage";
reg = <0x0004e000 0x00008000>;
};
/* CCFG (customer configuration area) is located in uppermost
* flash sector (0x2000/8 KiB @ 0x56000), keep it unused.
*/
};
};