1 /* 2 * Copyright (c) 2024, Altera Corporation. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef AGX5_CACHE_H 8 #define AGX5_CACHE_H 9 10 void invalidate_dcache_all(void); 11 void invalidate_cache_low_el(void); 12 13 #endif /* AGX5_CACHE_H */ 14