1/* 2 *================================================================================================== 3 * Copyright (c) 2025 Cypress Semiconductor Corporation (an Infineon company) or 4 * an affiliate of Cypress Semiconductor Corporation 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 *================================================================================================== 8 */ 9 10/ { 11 chosen { 12 zephyr,code-partition = &slot0_partition; 13 }; 14}; 15 16&slot0_partition { 17 label = "image-0"; 18 reg = <0x12000000 DT_SIZE_K(150)>; /* 150k for secure test application */ 19}; 20 21&slot0_ns_partition { 22 label = "image-1"; 23 reg = <0x2025800 DT_SIZE_K(106)>; /* 106k for nonsecure test application */ 24}; 25