Transform 'u8' to 'uint8_t'
[openocd.git] / src / jtag / minidriver.h
blob9f5d8b015caf21546a8e7fbb3ec2de0bed0ce0ef
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2009 Zachary T Welch *
9 * zw@superlucidity.net *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
26 #ifndef MINIDRIVER_H
27 #define MINIDRIVER_H
29 /* @page jtagminidriver JTAG Mini-Driver
31 * The JTAG minidriver interface allows the definition of alternate
32 * interface functions, instead of the built-in asynchronous driver
33 * module that is used by the standard JTAG interface drivers.
35 * In addtion to the functions defined in the c minidriver.h file, the
36 * @c jtag_minidriver.h file must declare the following functions (or
37 * define static inline versions of them):
38 * - jtag_add_callback
39 * - jtag_add_callback4
40 * - interface_jtag_add_dr_out
42 * The following core functions are declared in this file for use by
43 * the minidriver and do @b not need to be defined by an implementation:
44 * - default_interface_jtag_execute_queue()
47 #ifdef HAVE_JTAG_MINIDRIVER_H
49 #include "jtag_minidriver.h"
51 static inline void interface_jtag_alloc_in_value32(scan_field_t *field)
53 field->in_value = field->intmp;
56 static inline void interface_jtag_add_scan_check_alloc(scan_field_t *field)
58 /* We're executing this synchronously, so try to use local storage. */
59 if (field->num_bits > 32)
61 unsigned num_bytes = TAP_SCAN_BYTES(field->num_bits);
62 field->in_value = (uint8_t *)malloc(num_bytes);
63 field->allocated = 1;
65 else
66 field->in_value = field->intmp;
69 #else
71 #include "commands.h"
73 static inline void interface_jtag_alloc_in_value32(scan_field_t *field)
75 field->in_value = (uint8_t *)cmd_queue_alloc(4);
78 static inline void interface_jtag_add_scan_check_alloc(scan_field_t *field)
80 unsigned num_bytes = TAP_SCAN_BYTES(field->num_bits);
81 field->in_value = (uint8_t *)cmd_queue_alloc(num_bytes);
84 extern void interface_jtag_add_dr_out(jtag_tap_t* tap,
85 int num_fields, const int* num_bits, const u32* value,
86 tap_state_t end_state);
88 extern void interface_jtag_add_callback(jtag_callback1_t f, uint8_t *in);
90 extern void interface_jtag_add_callback4(jtag_callback_t f, uint8_t *in,
91 jtag_callback_data_t data1, jtag_callback_data_t data2,
92 jtag_callback_data_t data3);
94 #endif
96 extern int interface_jtag_add_ir_scan(
97 int num_fields, const scan_field_t* fields,
98 tap_state_t endstate);
99 extern int interface_jtag_add_plain_ir_scan(
100 int num_fields, const scan_field_t* fields,
101 tap_state_t endstate);
103 extern int interface_jtag_add_dr_scan(
104 int num_fields, const scan_field_t* fields,
105 tap_state_t endstate);
106 extern int interface_jtag_add_plain_dr_scan(
107 int num_fields, const scan_field_t* fields,
108 tap_state_t endstate);
110 extern int interface_jtag_add_tlr(void);
111 extern int interface_jtag_add_pathmove(int num_states, const tap_state_t* path);
112 extern int interface_jtag_add_runtest(int num_cycles, tap_state_t endstate);
115 * This drives the actual srst and trst pins. srst will always be 0
116 * if jtag_reset_config & RESET_SRST_PULLS_TRST != 0 and ditto for
117 * trst.
119 * the higher level jtag_add_reset will invoke jtag_add_tlr() if
120 * approperiate
122 extern int interface_jtag_add_reset(int trst, int srst);
123 extern int interface_jtag_set_end_state(tap_state_t endstate);
124 extern int interface_jtag_add_sleep(u32 us);
125 extern int interface_jtag_add_clocks(int num_cycles);
126 extern int interface_jtag_execute_queue(void);
129 * Calls the interface callback to execute the queue. This routine
130 * is used by the JTAG driver layer and should not be called directly.
132 extern int default_interface_jtag_execute_queue(void);
135 #endif // MINIDRIVER_H