mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

Implement stub functions for the EMI driver to ensure that the build can pass when a prebuilt library is not available. Change-Id: I296945a3df6766a3a133cd385a1e5038ca979403 Signed-off-by: Gavin Liu <gavin.liu@mediatek.corp-partner.google.com>
15 lines
326 B
C
15 lines
326 B
C
/*
|
|
* Copyright (c) 2025, Mediatek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <common/debug.h>
|
|
|
|
#include "common/emi.h"
|
|
#include <mtk_sip_svc.h>
|
|
|
|
uint64_t sip_emi_mpu_set_protection(u_register_t start, u_register_t end,
|
|
u_register_t region)
|
|
{
|
|
return MTK_SIP_E_NOT_SUPPORTED;
|
|
}
|