flash/nor/stm32l4x: Remove redundant error messages
[openocd.git] / src / target / arm966e.h
blobbe2b3391e877500f043bbb91ea9abf2629420f67
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2005 by Dominic Rath *
5 * Dominic.Rath@gmx.de *
6 * *
7 * Copyright (C) 2008 by Spencer Oliver *
8 * spen@spen-soft.co.uk *
9 ***************************************************************************/
11 #ifndef OPENOCD_TARGET_ARM966E_H
12 #define OPENOCD_TARGET_ARM966E_H
14 #include "arm9tdmi.h"
16 #define ARM966E_COMMON_MAGIC 0x20f920f9U
18 struct arm966e_common {
19 unsigned int common_magic;
21 struct arm7_9_common arm7_9_common;
22 uint32_t cp15_control_reg;
25 static inline struct arm966e_common *
26 target_to_arm966(struct target *target)
28 return container_of(target->arch_info, struct arm966e_common,
29 arm7_9_common.arm);
32 int arm966e_init_arch_info(struct target *target,
33 struct arm966e_common *arm966e, struct jtag_tap *tap);
34 int arm966e_write_cp15(struct target *target, int reg_addr, uint32_t value);
36 extern const struct command_registration arm966e_command_handlers[];
38 #endif /* OPENOCD_TARGET_ARM966E_H */