arm-trusted-firmware/plat/mediatek/drivers/emi/common/emi.h
Gavin Liu 39f5e27820 feat(mt8196): add Mediatek EMI stub implementation for mt8196
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>
2025-01-09 09:16:00 +02:00

16 lines
307 B
C

/*
* Copyright (c) 2025, Mediatek Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef EMI_H
#define EMI_H
#include <stdint.h>
#define EMI_MPU_ALIGN_BITS 12
uint64_t sip_emi_mpu_set_protection(u_register_t start, u_register_t end, u_register_t region);
#endif /* EMI_H */