mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 00:47:02 +02:00
EMI MPU stands for external memory interface memory protect unit. MT8188 supports 32 regions and 16 domains. Signed-off-by: Dawei Chien <dawei.chien@mediatek.com> Change-Id: I9bbeb355665401cc71dda6db22157d9d751570d1
15 lines
300 B
C
15 lines
300 B
C
/*
|
|
* Copyright (c) 2022, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <common/debug.h>
|
|
#include <emi_mpu.h>
|
|
|
|
void set_emi_mpu_regions(void)
|
|
{
|
|
/* TODO: set emi mpu region */
|
|
INFO("%s, emi mpu is not setting currently\n", __func__);
|
|
}
|