cross compile fix
[openocd.git] / src / target / arm_jtag.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "arm_jtag.h"
25
26 #include "binarybuffer.h"
27 #include "log.h"
28 #include "jtag.h"
29
30 #include <stdlib.h>
31
32 #if 0
33 #define _ARM_JTAG_SCAN_N_CHECK_
34 #endif
35
36 int arm_jtag_set_instr(arm_jtag_t *jtag_info, u32 new_instr, in_handler_t handler)
37 {
38 jtag_device_t *device = jtag_get_device(jtag_info->chain_pos);
39
40 if (buf_get_u32(device->cur_instr, 0, device->ir_length) != new_instr)
41 {
42 scan_field_t field;
43 u8 t[4];
44
45 field.device = jtag_info->chain_pos;
46 field.num_bits = device->ir_length;
47 field.out_value = t;
48 buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
49 field.out_mask = NULL;
50 field.in_value = NULL;
51 field.in_check_value = NULL;
52 field.in_check_mask = NULL;
53 field.in_handler = handler;
54 field.in_handler_priv = NULL;
55 jtag_add_ir_scan(1, &field, -1);
56 }
57
58 return ERROR_OK;
59 }
60
61 int arm_jtag_scann(arm_jtag_t *jtag_info, u32 new_scan_chain)
62 {
63 if(jtag_info->cur_scan_chain != new_scan_chain)
64 {
65 u32 values[1];
66 int num_bits[1];
67
68 values[0]=new_scan_chain;
69 num_bits[0]=jtag_info->scann_size;
70
71 arm_jtag_set_instr(jtag_info, jtag_info->scann_instr, NULL);
72 jtag_add_dr_out(jtag_info->chain_pos,
73 1,
74 num_bits,
75 values,
76 -1);
77
78 jtag_info->cur_scan_chain = new_scan_chain;
79 }
80
81 return ERROR_OK;
82 }
83
84 int arm_jtag_reset_callback(enum jtag_event event, void *priv)
85 {
86 arm_jtag_t *jtag_info = priv;
87
88 if (event == JTAG_TRST_ASSERTED)
89 {
90 jtag_info->cur_scan_chain = 0;
91 }
92
93 return ERROR_OK;
94 }
95
96 int arm_jtag_setup_connection(arm_jtag_t *jtag_info)
97 {
98 jtag_info->scann_instr = 0x2;
99 jtag_info->cur_scan_chain = 0;
100 jtag_info->intest_instr = 0xc;
101
102 jtag_register_event_callback(arm_jtag_reset_callback, jtag_info);
103
104 return ERROR_OK;
105 }
106
107 /* read JTAG buffer into host-endian u32, flipping bit-order */
108 int arm_jtag_buf_to_u32_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
109 {
110 u32 *dest = priv;
111 *dest = flip_u32(le_to_h_u32(in_buf), 32);
112 return ERROR_OK;
113 }
114
115 /* read JTAG buffer into little-endian u32, flipping bit-order */
116 int arm_jtag_buf_to_le32_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
117 {
118 h_u32_to_le(((u8*)priv), flip_u32(le_to_h_u32(in_buf), 32));
119 return ERROR_OK;
120 }
121
122 /* read JTAG buffer into little-endian u16, flipping bit-order */
123 int arm_jtag_buf_to_le16_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
124 {
125 h_u16_to_le(((u8*)priv), flip_u32(le_to_h_u32(in_buf), 32) & 0xffff);
126 return ERROR_OK;
127 }
128
129 /* read JTAG buffer into big-endian u32, flipping bit-order */
130 int arm_jtag_buf_to_be32_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
131 {
132 h_u32_to_be(((u8*)priv), flip_u32(le_to_h_u32(in_buf), 32));
133 return ERROR_OK;
134 }
135
136 /* read JTAG buffer into big-endian u16, flipping bit-order */
137 int arm_jtag_buf_to_be16_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
138 {
139 h_u16_to_be(((u8*)priv), flip_u32(le_to_h_u32(in_buf), 32) & 0xffff);
140 return ERROR_OK;
141 }
142
143 /* read JTAG buffer into u8, flipping bit-order */
144 int arm_jtag_buf_to_8_flip(u8 *in_buf, void *priv, struct scan_field_s *field)
145 {
146 u8 *dest = priv;
147 *dest = flip_u32(le_to_h_u32(in_buf), 32) & 0xff;
148 return ERROR_OK;
149 }
150
151 /* not-flipping variants */
152 /* read JTAG buffer into host-endian u32 */
153 int arm_jtag_buf_to_u32(u8 *in_buf, void *priv, struct scan_field_s *field)
154 {
155 u32 *dest = priv;
156 *dest = le_to_h_u32(in_buf);
157 return ERROR_OK;
158 }
159
160 /* read JTAG buffer into little-endian u32 */
161 int arm_jtag_buf_to_le32(u8 *in_buf, void *priv, struct scan_field_s *field)
162 {
163 h_u32_to_le(((u8*)priv), le_to_h_u32(in_buf));
164 return ERROR_OK;
165 }
166
167 /* read JTAG buffer into little-endian u16 */
168 int arm_jtag_buf_to_le16(u8 *in_buf, void *priv, struct scan_field_s *field)
169 {
170 h_u16_to_le(((u8*)priv), le_to_h_u32(in_buf) & 0xffff);
171 return ERROR_OK;
172 }
173
174 /* read JTAG buffer into big-endian u32 */
175 int arm_jtag_buf_to_be32(u8 *in_buf, void *priv, struct scan_field_s *field)
176 {
177 h_u32_to_be(((u8*)priv), le_to_h_u32(in_buf));
178 return ERROR_OK;
179 }
180
181 /* read JTAG buffer into big-endian u16 */
182 int arm_jtag_buf_to_be16(u8 *in_buf, void *priv, struct scan_field_s *field)
183 {
184 h_u16_to_be(((u8*)priv), le_to_h_u32(in_buf) & 0xffff);
185 return ERROR_OK;
186 }
187
188 /* read JTAG buffer into u8 */
189 int arm_jtag_buf_to_8(u8 *in_buf, void *priv, struct scan_field_s *field)
190 {
191 u8 *dest = priv;
192 *dest = le_to_h_u32(in_buf) & 0xff;
193 return ERROR_OK;
194 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)