1 /****************************************************************************** 2 * Copyright (c) 2015 - 2020 Xilinx, Inc. All rights reserved. 3 * SPDX-License-Identifier: MIT 4 ******************************************************************************/ 5 6 /*****************************************************************************/ 7 /** 8 * @file xil_mmu.h 9 * This file only includes xil_mpu.h which contains Xil_SetTlbAttributes API 10 * defined for MPU in R5. R5 does not have mmu and for usage of similar API 11 * the file has been created. 12 * 13 * 14 * 15 * <pre> 16 * MODIFICATION HISTORY: 17 * 18 * Ver Who Date Changes 19 * ----- ---- -------- --------------------------------------------------- 20 * 5.0 pkp 2/12/15 Initial version 21 * </pre> 22 * 23 * @note 24 * 25 * None. 26 * 27 ******************************************************************************/ 28 29 #ifndef XIL_MMU_H 30 #define XIL_MMU_H 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif /* __cplusplus */ 35 36 /***************************** Include Files *********************************/ 37 38 #include "xil_mpu.h" 39 40 /***************** Macros (Inline Functions) Definitions *********************/ 41 42 /**************************** Type Definitions *******************************/ 43 44 /************************** Constant Definitions *****************************/ 45 46 /************************** Variable Definitions *****************************/ 47 48 /************************** Function Prototypes ******************************/ 49 50 #ifdef __cplusplus 51 } 52 #endif /* __cplusplus */ 53 54 #endif /* XIL_MMU_H */ 55