Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-License-Identifier: BSD-3-Clause |
| 3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | */ |
| 5 | |
| 6 | #include <arch_helpers.h> |
| 7 | |
| 8 | /******************************************************************************* |
| 9 | * Cache management |
| 10 | ******************************************************************************/ |
| 11 | void flush_dcache_range(uintptr_t addr, size_t size) |
| 12 | { |
| 13 | (void)addr; |
| 14 | (void)size; |
| 15 | } |
| 16 | void clean_dcache_range(uintptr_t addr, size_t size) |
| 17 | { |
| 18 | (void)addr; |
| 19 | (void)size; |
| 20 | } |
| 21 | void inv_dcache_range(uintptr_t addr, size_t size) |
| 22 | { |
| 23 | (void)addr; |
| 24 | (void)size; |
| 25 | } |
Jean-Philippe Brucker | 6cfd008 | 2025-01-22 17:15:56 +0000 | [diff] [blame^] | 26 | void flush_dcache_range_to_poe(uintptr_t paddr, size_t size) |
| 27 | { |
| 28 | (void)paddr; |
| 29 | (void)size; |
| 30 | } |