1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2009 SoftPLC Corporation *
12 * Copyright (C) 2009 Zachary T Welch *
13 * zw@superlucidity.net *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
20 * This program is distributed in the hope that it will be useful, *
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
23 * GNU General Public License for more details. *
25 * You should have received a copy of the GNU General Public License *
26 * along with this program; if not, write to the *
27 * Free Software Foundation, Inc., *
28 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
29 ***************************************************************************/
36 struct cmd_queue_page
{
39 struct cmd_queue_page
*next
;
42 #define CMD_QUEUE_PAGE_SIZE (1024 * 1024)
43 static struct cmd_queue_page
*cmd_queue_pages
= NULL
;
45 struct jtag_command
*jtag_command_queue
= NULL
;
46 static struct jtag_command
**next_command_pointer
= &jtag_command_queue
;
48 void jtag_queue_command(struct jtag_command
* cmd
)
50 // this command goes on the end, so ensure the queue terminates
53 struct jtag_command
**last_cmd
= next_command_pointer
;
54 assert(NULL
!= last_cmd
);
55 assert(NULL
== *last_cmd
);
58 // store location where the next command pointer will be stored
59 next_command_pointer
= &cmd
->next
;
62 void* cmd_queue_alloc(size_t size
)
64 struct cmd_queue_page
**p_page
= &cmd_queue_pages
;
70 * We align/round the *SIZE* per below
71 * so that all pointers returned by
72 * this function are reasonably well
75 * If we did not, then an "odd-length" request would cause the
76 * *next* allocation to be at an *odd* address, and because
77 * this function has the same type of api as malloc() - we
78 * must also return pointers that have the same type of
81 * What I do not/have is a reasonable portable means
84 * The solution here, is based on these suggestions.
85 * http://gcc.gnu.org/ml/gcc-help/2008-12/msg00041.html
88 union worse_case_align
{
94 #define ALIGN_SIZE (sizeof(union worse_case_align))
96 /* The alignment process. */
97 size
= (size
+ ALIGN_SIZE
-1) & (~(ALIGN_SIZE
-1));
102 while ((*p_page
)->next
)
103 p_page
= &((*p_page
)->next
);
104 if (CMD_QUEUE_PAGE_SIZE
- (*p_page
)->used
< size
)
105 p_page
= &((*p_page
)->next
);
110 *p_page
= malloc(sizeof(struct cmd_queue_page
));
112 (*p_page
)->address
= malloc(CMD_QUEUE_PAGE_SIZE
);
113 (*p_page
)->next
= NULL
;
116 offset
= (*p_page
)->used
;
117 (*p_page
)->used
+= size
;
119 t
= (uint8_t *)((*p_page
)->address
);
123 void cmd_queue_free(void)
125 struct cmd_queue_page
*page
= cmd_queue_pages
;
129 struct cmd_queue_page
*last
= page
;
135 cmd_queue_pages
= NULL
;
138 void jtag_command_queue_reset(void)
142 jtag_command_queue
= NULL
;
143 next_command_pointer
= &jtag_command_queue
;
146 enum scan_type
jtag_scan_type(const struct scan_command
*cmd
)
151 for (i
= 0; i
< cmd
->num_fields
; i
++)
153 if (cmd
->fields
[i
].in_value
)
155 if (cmd
->fields
[i
].out_value
)
162 int jtag_scan_size(const struct scan_command
*cmd
)
167 /* count bits in scan command */
168 for (i
= 0; i
< cmd
->num_fields
; i
++)
170 bit_count
+= cmd
->fields
[i
].num_bits
;
176 int jtag_build_buffer(const struct scan_command
*cmd
, uint8_t **buffer
)
181 bit_count
= jtag_scan_size(cmd
);
182 *buffer
= calloc(1,CEIL(bit_count
, 8));
186 DEBUG_JTAG_IO("%s num_fields: %i",
187 cmd
->ir_scan
? "IRSCAN" : "DRSCAN",
190 for (i
= 0; i
< cmd
->num_fields
; i
++)
192 if (cmd
->fields
[i
].out_value
)
194 #ifdef _DEBUG_JTAG_IO_
195 char *char_buf
= buf_to_str(cmd
->fields
[i
].out_value
,
196 (cmd
->fields
[i
].num_bits
> DEBUG_JTAG_IOZ
)
198 : cmd
->fields
[i
].num_bits
, 16);
200 LOG_DEBUG("fields[%i].out_value[%i]: 0x%s", i
,
201 cmd
->fields
[i
].num_bits
, char_buf
);
204 buf_set_buf(cmd
->fields
[i
].out_value
, 0, *buffer
,
205 bit_count
, cmd
->fields
[i
].num_bits
);
209 DEBUG_JTAG_IO("fields[%i].out_value[%i]: NULL",
210 i
, cmd
->fields
[i
].num_bits
);
213 bit_count
+= cmd
->fields
[i
].num_bits
;
216 //DEBUG_JTAG_IO("bit_count totalling: %i", bit_count);
221 int jtag_read_buffer(uint8_t *buffer
, const struct scan_command
*cmd
)
227 /* we return ERROR_OK, unless a check fails, or a handler reports a problem */
230 for (i
= 0; i
< cmd
->num_fields
; i
++)
232 /* if neither in_value nor in_handler
233 * are specified we don't have to examine this field
235 if (cmd
->fields
[i
].in_value
)
237 int num_bits
= cmd
->fields
[i
].num_bits
;
238 uint8_t *captured
= buf_set_buf(buffer
, bit_count
, malloc(CEIL(num_bits
, 8)), 0, num_bits
);
240 #ifdef _DEBUG_JTAG_IO_
241 char *char_buf
= buf_to_str(captured
,
242 (num_bits
> DEBUG_JTAG_IOZ
)
246 LOG_DEBUG("fields[%i].in_value[%i]: 0x%s",
247 i
, num_bits
, char_buf
);
251 if (cmd
->fields
[i
].in_value
)
253 buf_cpy(captured
, cmd
->fields
[i
].in_value
, num_bits
);
258 bit_count
+= cmd
->fields
[i
].num_bits
;