aboutsummaryrefslogtreecommitdiff
path: root/hal_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'hal_io.c')
-rw-r--r--hal_io.c114
1 files changed, 114 insertions, 0 deletions
diff --git a/hal_io.c b/hal_io.c
new file mode 100644
index 0000000..f885712
--- /dev/null
+++ b/hal_io.c
@@ -0,0 +1,114 @@
+/*
+ * hal_io.c
+ * --------
+ * This module contains common code to talk to the FPGA over the bus du jour.
+ *
+ * Author: Paul Selkirk, Rob Austein
+ * Copyright (c) 2014-2017, NORDUnet A/S All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ * - Redistributions of source code must retain the above copyright notice,
+ * this list of conditions and the following disclaimer.
+ *
+ * - Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * - Neither the name of the NORDUnet nor the names of its contributors may
+ * be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdio.h>
+#include <stdint.h>
+
+#include "hal.h"
+#include "hal_internal.h"
+
+#ifndef HAL_IO_TIMEOUT
+#define HAL_IO_TIMEOUT 100000000
+#endif
+
+static inline hal_error_t test_status(const hal_core_t *core,
+ const uint8_t status,
+ int *done)
+{
+ if (done == NULL)
+ return HAL_ERROR_IMPOSSIBLE;
+
+ if (*done || core == NULL)
+ return HAL_OK;
+
+ uint8_t buf[4];
+
+ const hal_error_t err = hal_io_read(core, ADDR_STATUS, buf, sizeof(buf));
+
+ if (err == HAL_OK)
+ *done = (buf[3] & status) != 0;
+
+ return err;
+}
+
+hal_error_t hal_io_wait2(const hal_core_t *core1,
+ const hal_core_t *core2,
+ const uint8_t status,
+ int *count)
+{
+ int done1 = 0, done2 = 0;
+ hal_error_t err;
+
+ if (core1 == NULL)
+ return HAL_ERROR_BAD_ARGUMENTS;
+
+ if (core2 == NULL)
+ done2 = 1;
+
+ if (count && *count == -1)
+ *count = HAL_IO_TIMEOUT;
+
+ for (int i = 1; ; ++i) {
+
+ if (count && (*count > 0) && (i >= *count))
+ return HAL_ERROR_IO_TIMEOUT;
+
+ hal_task_yield();
+
+ if ((err = test_status(core1, status, &done1)) != HAL_OK ||
+ (err = test_status(core2, status, &done2)) != HAL_OK)
+ return err;
+
+ if (done1 && done2) {
+ if (count)
+ *count = i;
+ return HAL_OK;
+ }
+ }
+}
+
+hal_error_t hal_io_wait(const hal_core_t *core,
+ const uint8_t status,
+ int *count)
+{
+ return hal_io_wait2(core, NULL, status, count);
+}
+
+/*
+ * Local variables:
+ * indent-tabs-mode: nil
+ * c-basic-offset: 2
+ * End:
+ */
b Austein <sra@hactrn.net> 2015-09-02 19:39:40 -0400 Identify PBKDF2 tests.' href='/sw/libhal/commit/tests/test-pbkdf2.c?h=sha3_mode&id=56f48e74c1a1078cc13c3e39d4174f06d10ceca0'>56f48e7
1655dbf


b3bbd3d
1655dbf
























b3bbd3d

1655dbf



ca84af5
1655dbf
30f8e4e
1655dbf

b3bbd3d

4dd62d6
b3bbd3d
4dd62d6





4dd62d6
1655dbf
4dd62d6
1655dbf






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223