jtag: linuxgpiod: drop extra parenthesis
[openocd.git] / src / helper / binarybuffer.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 /***************************************************************************
4 * Copyright (C) 2004, 2005 by Dominic Rath *
5 * Dominic.Rath@gmx.de *
6 * *
7 * Copyright (C) 2007,2008 Øyvind Harboe *
8 * oyvind.harboe@zylin.com *
9 ***************************************************************************/
10
11 #ifndef OPENOCD_HELPER_BINARYBUFFER_H
12 #define OPENOCD_HELPER_BINARYBUFFER_H
13
14 #include <helper/list.h>
15 #include <helper/types.h>
16
17 /** @file
18 * Support functions to access arbitrary bits in a byte array
19 */
20
21 /**
22 * Sets @c num bits in @c _buffer, starting at the @c first bit,
23 * using the bits in @c value. This routine fast-paths writes
24 * of little-endian, byte-aligned, 32-bit words.
25 * @param _buffer The buffer whose bits will be set.
26 * Do not use uninitialized buffer or clang static analyzer emits a warning.
27 * @param first The bit offset in @c _buffer to start writing (0-31).
28 * @param num The number of bits from @c value to copy (1-32).
29 * @param value Up to 32 bits that will be copied to _buffer.
30 */
31 static inline void buf_set_u32(uint8_t *_buffer,
32 unsigned first, unsigned num, uint32_t value)
33 {
34 uint8_t *buffer = _buffer;
35
36 if ((num == 32) && (first == 0)) {
37 buffer[3] = (value >> 24) & 0xff;
38 buffer[2] = (value >> 16) & 0xff;
39 buffer[1] = (value >> 8) & 0xff;
40 buffer[0] = (value >> 0) & 0xff;
41 } else {
42 for (unsigned i = first; i < first + num; i++) {
43 if (((value >> (i - first)) & 1) == 1)
44 buffer[i / 8] |= 1 << (i % 8);
45 else
46 buffer[i / 8] &= ~(1 << (i % 8));
47 }
48 }
49 }
50
51 /**
52 * Sets @c num bits in @c _buffer, starting at the @c first bit,
53 * using the bits in @c value. This routine fast-paths writes
54 * of little-endian, byte-aligned, 64-bit words.
55 * @param _buffer The buffer whose bits will be set.
56 * Do not use uninitialized buffer or clang static analyzer emits a warning.
57 * @param first The bit offset in @c _buffer to start writing (0-63).
58 * @param num The number of bits from @c value to copy (1-64).
59 * @param value Up to 64 bits that will be copied to _buffer.
60 */
61 static inline void buf_set_u64(uint8_t *_buffer,
62 unsigned first, unsigned num, uint64_t value)
63 {
64 uint8_t *buffer = _buffer;
65
66 if ((num == 32) && (first == 0)) {
67 buffer[3] = (value >> 24) & 0xff;
68 buffer[2] = (value >> 16) & 0xff;
69 buffer[1] = (value >> 8) & 0xff;
70 buffer[0] = (value >> 0) & 0xff;
71 } else if ((num == 64) && (first == 0)) {
72 buffer[7] = (value >> 56) & 0xff;
73 buffer[6] = (value >> 48) & 0xff;
74 buffer[5] = (value >> 40) & 0xff;
75 buffer[4] = (value >> 32) & 0xff;
76 buffer[3] = (value >> 24) & 0xff;
77 buffer[2] = (value >> 16) & 0xff;
78 buffer[1] = (value >> 8) & 0xff;
79 buffer[0] = (value >> 0) & 0xff;
80 } else {
81 for (unsigned i = first; i < first + num; i++) {
82 if (((value >> (i - first)) & 1) == 1)
83 buffer[i / 8] |= 1 << (i % 8);
84 else
85 buffer[i / 8] &= ~(1 << (i % 8));
86 }
87 }
88 }
89
90 /**
91 * Retrieves @c num bits from @c _buffer, starting at the @c first bit,
92 * returning the bits in a 32-bit word. This routine fast-paths reads
93 * of little-endian, byte-aligned, 32-bit words.
94 * @param _buffer The buffer whose bits will be read.
95 * @param first The bit offset in @c _buffer to start reading (0-31).
96 * @param num The number of bits from @c _buffer to read (1-32).
97 * @returns Up to 32-bits that were read from @c _buffer.
98 */
99 static inline uint32_t buf_get_u32(const uint8_t *_buffer,
100 unsigned first, unsigned num)
101 {
102 const uint8_t *buffer = _buffer;
103
104 if ((num == 32) && (first == 0)) {
105 return (((uint32_t)buffer[3]) << 24) |
106 (((uint32_t)buffer[2]) << 16) |
107 (((uint32_t)buffer[1]) << 8) |
108 (((uint32_t)buffer[0]) << 0);
109 } else {
110 uint32_t result = 0;
111 for (unsigned i = first; i < first + num; i++) {
112 if (((buffer[i / 8] >> (i % 8)) & 1) == 1)
113 result |= 1U << (i - first);
114 }
115 return result;
116 }
117 }
118
119 /**
120 * Retrieves @c num bits from @c _buffer, starting at the @c first bit,
121 * returning the bits in a 64-bit word. This routine fast-paths reads
122 * of little-endian, byte-aligned, 64-bit words.
123 * @param _buffer The buffer whose bits will be read.
124 * @param first The bit offset in @c _buffer to start reading (0-63).
125 * @param num The number of bits from @c _buffer to read (1-64).
126 * @returns Up to 64-bits that were read from @c _buffer.
127 */
128 static inline uint64_t buf_get_u64(const uint8_t *_buffer,
129 unsigned first, unsigned num)
130 {
131 const uint8_t *buffer = _buffer;
132
133 if ((num == 32) && (first == 0)) {
134 return 0 + ((((uint32_t)buffer[3]) << 24) | /* Note - zero plus is to avoid a checkpatch bug */
135 (((uint32_t)buffer[2]) << 16) |
136 (((uint32_t)buffer[1]) << 8) |
137 (((uint32_t)buffer[0]) << 0));
138 } else if ((num == 64) && (first == 0)) {
139 return 0 + ((((uint64_t)buffer[7]) << 56) | /* Note - zero plus is to avoid a checkpatch bug */
140 (((uint64_t)buffer[6]) << 48) |
141 (((uint64_t)buffer[5]) << 40) |
142 (((uint64_t)buffer[4]) << 32) |
143 (((uint64_t)buffer[3]) << 24) |
144 (((uint64_t)buffer[2]) << 16) |
145 (((uint64_t)buffer[1]) << 8) |
146 (((uint64_t)buffer[0]) << 0));
147 } else {
148 uint64_t result = 0;
149 for (unsigned i = first; i < first + num; i++) {
150 if (((buffer[i / 8] >> (i % 8)) & 1) == 1)
151 result = result | ((uint64_t)1 << (uint64_t)(i - first));
152 }
153 return result;
154 }
155 }
156
157
158 /**
159 * Inverts the ordering of bits inside a 32-bit word (e.g. 31..0 -> 0..31).
160 * This routine can be used to flip smaller data types by using smaller
161 * values for @c width.
162 * @param value The word to flip.
163 * @param width The number of bits in value (2-32).
164 * @returns A 32-bit word with @c value in reversed bit-order.
165 */
166 uint32_t flip_u32(uint32_t value, unsigned width);
167
168 bool buf_cmp(const void *buf1, const void *buf2, unsigned size);
169 bool buf_cmp_mask(const void *buf1, const void *buf2,
170 const void *mask, unsigned size);
171
172 /**
173 * Copies @c size bits out of @c from and into @c to. Any extra
174 * bits in the final byte will be set to zero.
175 * @param from The buffer to copy into @c to.
176 * @param to The buffer that will receive the copy of @c from.
177 * @param size The number of bits to copy.
178 */
179 void *buf_cpy(const void *from, void *to, unsigned size);
180
181 /**
182 * Set the contents of @c buf with @c count bits, all set to 1.
183 * @param buf The buffer to fill with ones.
184 * @param size The number of bits.
185 * @returns The original buffer (@c buf).
186 */
187 void *buf_set_ones(void *buf, unsigned size);
188
189 void *buf_set_buf(const void *src, unsigned src_start,
190 void *dst, unsigned dst_start, unsigned len);
191
192 int str_to_buf(const char *str, unsigned len,
193 void *bin_buf, unsigned buf_size, unsigned radix);
194 char *buf_to_hex_str(const void *buf, unsigned size);
195
196 /* read a uint32_t from a buffer in target memory endianness */
197 static inline uint32_t fast_target_buffer_get_u32(const void *p, bool le)
198 {
199 return le ? le_to_h_u32(p) : be_to_h_u32(p);
200 }
201
202 static inline void bit_copy(uint8_t *dst, unsigned dst_offset, const uint8_t *src,
203 unsigned src_offset, unsigned bit_count)
204 {
205 buf_set_buf(src, src_offset, dst, dst_offset, bit_count);
206 }
207
208 struct bit_copy_queue {
209 struct list_head list;
210 };
211
212 struct bit_copy_queue_entry {
213 uint8_t *dst;
214 unsigned dst_offset;
215 const uint8_t *src;
216 unsigned src_offset;
217 unsigned bit_count;
218 struct list_head list;
219 };
220
221 void bit_copy_queue_init(struct bit_copy_queue *q);
222 int bit_copy_queued(struct bit_copy_queue *q, uint8_t *dst, unsigned dst_offset, const uint8_t *src,
223 unsigned src_offset, unsigned bit_count);
224 void bit_copy_execute(struct bit_copy_queue *q);
225 void bit_copy_discard(struct bit_copy_queue *q);
226
227 /* functions to convert to/from hex encoded buffer
228 * used in ti-icdi driver and gdb server */
229 size_t unhexify(uint8_t *bin, const char *hex, size_t count);
230 size_t hexify(char *hex, const uint8_t *bin, size_t count, size_t out_maxlen);
231 void buffer_shr(void *_buf, unsigned buf_len, unsigned count);
232
233 #endif /* OPENOCD_HELPER_BINARYBUFFER_H */

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)