1/* 2 * Copyright (c) 2019 Nordic Semiconductor ASA 3 * Copyright (c) 2019 Intel Corporation 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8/* Copied from linker.ld */ 9 10/* Non-cached region of RAM */ 11SECTION_DATA_PROLOGUE(_NOCACHE_SECTION_NAME,(NOLOAD),) 12{ 13 MPU_ALIGN(_nocache_ram_size); 14 _nocache_ram_start = .; 15 *(.nocache) 16 *(".nocache.*") 17 MPU_ALIGN(_nocache_ram_size); 18 _nocache_ram_end = .; 19} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION) 20_nocache_ram_size = _nocache_ram_end - _nocache_ram_start; 21