1 /* 2 * Copyright (c) 2022, MediaTek Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <stdint.h> 8 #include <mtk_mmap_pool.h> 9 #include <platform_def.h> 10 11 static const mmap_region_t mcusys_mmap[] MTK_MMAP_SECTION = { 12 MAP_REGION_FLAT(MCUCFG_BASE, MCUCFG_REG_SIZE, MT_DEVICE | MT_RW | MT_SECURE), 13 {0} 14 }; 15 DECLARE_MTK_MMAP_REGIONS(mcusys_mmap); 16