blob: 199abf7820014e353c70019af9f52a4bd6ff0da0 [file] [log] [blame]
Gavin Liu6c609012024-11-11 09:32:19 +08001/*
2 * Copyright (c) 2025, MediaTek Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdint.h>
8
9#include <mtk_mmap_pool.h>
10#include <platform_def.h>
11
12static const mmap_region_t plat_mmap[] = {
13 MAP_REGION_FLAT(MTK_DEV_RNG0_BASE, MTK_DEV_RNG0_SIZE,
14 MT_DEVICE | MT_RW | MT_SECURE),
15 MAP_REGION_FLAT(MTK_DEV_RNG1_BASE, MTK_DEV_RNG1_SIZE,
16 MT_DEVICE | MT_RW | MT_SECURE),
17 { 0 }
18};
19DECLARE_MTK_MMAP_REGIONS(plat_mmap);