1/* 2 * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6#include <stmm_common.dtsi> 7 8&image_fvb { 9 base-address = <ADDR_INIT(STMM_IMAGE_BASE)>; 10 pages-count = <PAGE_COUNT(STMM_IMAGE_SIZE)>; 11 attributes = <SECURE_EXECUTE_RO>; 12}; 13 14&shared_buf { 15 base-address = <ADDR_INIT(STMM_SSBUF_BASE)>; 16 pages-count = <PAGE_COUNT(STMM_SSBUF_SIZE)>; 17 attributes = <SECURE_RW>; 18}; 19 20&ns_shared_buf { 21 base-address = <ADDR_INIT(STMM_NSBUF_BASE)>; 22 pages-count = <PAGE_COUNT(STMM_NSBUF_SIZE)>; 23 attributes = <NON_SECURE_RW>; 24}; 25 26&stmm_heap { 27 base-address = <ADDR_INIT(STMM_HEAP_BASE)>; 28 pages-count = <PAGE_COUNT(STMM_HEAP_SIZE)>; 29 attributes = <SECURE_RW>; 30}; 31