| Gavin Liu | 39f5e27 | 2024-12-31 14:34:00 +0800 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2025, Mediatek Inc. All rights reserved. | ||||
| 3 | * | ||||
| 4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
| 5 | */ | ||||
| 6 | |||||
| 7 | #ifndef EMI_H | ||||
| 8 | #define EMI_H | ||||
| 9 | |||||
| 10 | #include <stdint.h> | ||||
| 11 | |||||
| 12 | #define EMI_MPU_ALIGN_BITS 12 | ||||
| 13 | |||||
| 14 | uint64_t sip_emi_mpu_set_protection(u_register_t start, u_register_t end, u_register_t region); | ||||
| 15 | |||||
| 16 | #endif /* EMI_H */ | ||||