1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2015 Oleksij Rempel *
5 * linux@rempel-privat.de *
6 ***************************************************************************/
8 #ifndef OPENOCD_TARGET_ARM7A_CACHE_H
9 #define OPENOCD_TARGET_ARM7A_CACHE_H
12 #include "armv7a_cache_l2x.h"
14 int armv7a_l1_d_cache_clean_virt(struct target
*target
, uint32_t virt
,
16 int armv7a_l1_d_cache_inval_virt(struct target
*target
, uint32_t virt
,
18 int armv7a_l1_d_cache_flush_virt(struct target
*target
, uint32_t virt
,
20 int armv7a_l1_i_cache_inval_all(struct target
*target
);
21 int armv7a_l1_i_cache_inval_virt(struct target
*target
, uint32_t virt
,
23 int armv7a_cache_auto_flush_on_write(struct target
*target
, uint32_t virt
,
25 int armv7a_cache_auto_flush_all_data(struct target
*target
);
26 int armv7a_cache_flush_virt(struct target
*target
, uint32_t virt
,
28 extern const struct command_registration arm7a_cache_command_handlers
[];
30 /* CLIDR cache types */
31 #define CACHE_LEVEL_HAS_UNIFIED_CACHE 0x4
32 #define CACHE_LEVEL_HAS_D_CACHE 0x2
33 #define CACHE_LEVEL_HAS_I_CACHE 0x1
35 #endif /* OPENOCD_TARGET_ARM7A_CACHE_H */