1 /* 2 * Copyright (c) 2020-2022, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #include <stdint.h> 9 10 /* 11 * The address of Partition metadata, stored in TFM_SP_META_PTR region. 12 * All privilege RW. Gets updated by Scheduler when scheduling. 13 */ 14 __attribute__((section(".bss.SP_META_PTR_SPRTL_INST"))) 15 uintptr_t p_partition_metadata; 16