27 lines
738 B
C
27 lines
738 B
C
/*
|
|
* Copyright (c) 2020-2022 EPAM Systems
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <zephyr/devicetree.h>
|
|
#include <zephyr/sys/util.h>
|
|
#include <zephyr/arch/arm64/arm_mmu.h>
|
|
|
|
static const struct arm_mmu_region mmu_regions[] = {
|
|
|
|
MMU_REGION_FLAT_ENTRY("GIC",
|
|
DT_REG_ADDR_BY_IDX(DT_INST(0, arm_gic), 0),
|
|
DT_REG_SIZE_BY_IDX(DT_INST(0, arm_gic), 0),
|
|
MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS),
|
|
|
|
MMU_REGION_FLAT_ENTRY("GIC",
|
|
DT_REG_ADDR_BY_IDX(DT_INST(0, arm_gic), 1),
|
|
DT_REG_SIZE_BY_IDX(DT_INST(0, arm_gic), 1),
|
|
MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS),
|
|
};
|
|
|
|
const struct arm_mmu_config mmu_config = {
|
|
.num_regions = ARRAY_SIZE(mmu_regions),
|
|
.mmu_regions = mmu_regions,
|
|
};
|