target/xtensa: avoid IHI for writes to non-executable memory
[openocd.git] / src / jtag / drivers / rlink.h
blob38f8429b06cd48e4d53d3b384ccbd407fd604d49
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2008 Lou Deluxe *
5 * lou.openocd012@fixit.nospammail.net *
6 ***************************************************************************/
8 #ifndef OPENOCD_JTAG_DRIVERS_RLINK_H
9 #define OPENOCD_JTAG_DRIVERS_RLINK_H
11 #include "helper/types.h"
12 struct rlink_speed_table {
13 uint8_t const *dtc;
14 uint16_t dtc_size;
15 uint16_t khz;
16 uint8_t prescaler;
19 extern const struct rlink_speed_table rlink_speed_table[];
20 extern const size_t rlink_speed_table_size;
22 #endif /* OPENOCD_JTAG_DRIVERS_RLINK_H */