-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsim_task.cpp
637 lines (494 loc) · 14.6 KB
/
sim_task.cpp
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
// Copyright (c) 2020 FPGAcademy
// Please see license at https://github.com/fpgacademy/DESim
#include "sim_task.h"
#include "helper.h"
/* the following API can be used on either Linux or Windows:
* - poll can be used as normal, except for some subtle bug ms won't fix
* (see https://curl.haxx.se/mail/lib-2012-10/0038.html).
*
* - Save socket file descriptors into sockfd variables
* - Use closesocket() instead of close()
* - Use INVALID_SOCKET instead of -1
* - gettimeofday can be used as normal
*
* - Wrap all calls with fix_rc() because the winsock versions return
* INVALID_SOCKET rather than a meaningful error code. By the way,
* 0 means success and anything else is an error number that can be passed
* into sockstrerror()
*
* - Use sockerrno instead of errno
* - Use sockstrerr(x) instead of strerror(x)
*/
static float TIME_SCALE = (1.0 / 100e-6); //realtime seconds per simulation seconds
static struct timeval sim_start; //Keeps track of real time
static sockfd server = INVALID_SOCKET;
/**
* The start-up array of pointers to functions returning void type
* List all the registration functions and present them to the simulator
* The last element in this array should be NULL
*/
void (*vlog_startup_routines[])() = {
MyTaskRegister,
StartOfSimCbRegister,
NULL
};
/**
* Register the start-up process (function: StartOfSim) of the simulation
*/
void StartOfSimCbRegister() {
s_vpi_time time_type = {
.type = vpiSimTime
};
s_cb_data cbdat = {
.reason = cbStartOfSimulation,
.cb_rtn = StartOfSim,
.obj = NULL,
.time = &time_type
};
vpiHandle cb_handle = vpi_register_cb(&cbdat);
vpi_free_object(cb_handle);
}
/**
* Register a customized simulation task
*/
void MyTaskRegister() {
char *task_name = static_cast<char *>(malloc(sizeof(char) * 11));
if(!task_name){
std::cerr << "error: malloc" << std::endl;
exit(1);
}
strncpy(task_name, "$sim_fpga", 10);
s_vpi_systf_data tf_data = {
.type = vpiSysTask,
.sysfunctype = 0,
.tfname = task_name,
.calltf = MyCalltf,
.compiletf = MyCompiletf
// .user_data = 0
};
vpi_register_systf(&tf_data);
}
/**
* Helper function for MyCompiletf to check if this simulation task is called correctly
* @return return 1 if the argument is not proper, o/w return 0
*/
static int CheckArgs(vpiHandle handle, PLI_INT32 type, int size) {
if (handle == NULL || vpi_get(vpiType, handle) != type || vpi_get(vpiSize, handle) != size) {
PrintUsageError(handle);
return 1;
}
return 0;
}
/**
* Helper function for MyCompiletf specifically for VGA args, which have a legal range
* @return return 1 if the argument is not proper, o/w return 0
*/
static int CheckArgsRange(vpiHandle handle, PLI_INT32 type, int lsize, int hsize) {
int actual = vpi_get(vpiSize, handle);
if (handle == NULL || vpi_get(vpiType, handle) != type || (actual < lsize) || (actual > hsize)){
PrintUsageError(handle);
return 1;
}
return 0;
}
static void PrintUsageError(vpiHandle handle) {
vpi_printf_helper(USAGE "\n");
vpi_control(vpiFinish, 1);
vpi_put_userdata(handle, NULL);
}
/**
* "compiletf" for MyTaskRegister
* Parse the arguments to this simulation task and check if they are proper
*/
static int MyCompiletf(PLI_BYTE8 *user_data) {
//Get handle to this task call instance
vpiHandle self = vpi_handle(vpiSysTfCall, NULL);
//Iterate through arguments
vpiHandle args = vpi_iterate(vpiArgument, self);
if (args == NULL) {
PrintUsageError(self); //Error if no arguments
return 0;
}
//First argument is clock
vpiHandle clk_handle = vpi_scan(args);
if (CheckArgs(clk_handle, vpiReg, 1)) {
// stop parsing arguments if argument is incorrect
return 0;
}
//Second argument is switches
vpiHandle switch_handle = vpi_scan(args);
if (CheckArgs(switch_handle, vpiReg, NUM_SW)) {
return 0;
}
//Third argument is keys
vpiHandle key_handle = vpi_scan(args);
if (CheckArgs(key_handle, vpiReg, NUM_KEYS)) {
return 0;
}
//Fourth argument is led
vpiHandle led_handle = vpi_scan(args);
if (CheckArgs(led_handle, vpiNet, NUM_LEDS)) {
return 0;
}
//Fifth argument is hex displays
vpiHandle hex_handle = vpi_scan(args);
if (CheckArgs(hex_handle, vpiNet, 8 * NUM_HEX_DISPLAYS)) {
return 0;
}
// Arguments for PS2 Keyboard
vpiHandle key_action_handle = vpi_scan(args);
if (CheckArgs(key_action_handle, vpiReg, 1)) {
return 0;
}
vpiHandle scan_code_handle = vpi_scan(args);
if (CheckArgs(scan_code_handle, vpiReg, 8)) {
return 0;
}
vpiHandle ps2_lock_handle = vpi_scan(args);
if (CheckArgs(ps2_lock_handle, vpiNet, 3)) {
return 0;
}
// Arguments for VGA
vpiHandle x_handle = vpi_scan(args);
if(CheckArgsRange(x_handle, vpiNet, 8, 10)){
return 0;
}
vpiHandle y_handle = vpi_scan(args);
if(CheckArgsRange(y_handle, vpiNet, 7, 9)){
return 0;
}
vpiHandle color_handle =vpi_scan(args);
if(CheckArgs(color_handle, vpiNet, 24)){
return 0;
}
vpiHandle plot_handle = vpi_scan(args);
if(CheckArgs(plot_handle, vpiNet, 1)){
return 0;
}
// TODO: Add your own arguments
vpiHandle gpio_handle = vpi_scan(args);
if(CheckArgs(gpio_handle, vpiNet, NUM_GPIO)){
return 0;
}
//If extra arguments given, throw an error
if (vpi_scan(args) != NULL) {
vpi_free_object(args);
PrintUsageError(self);
return 0;
}
fpga *f = new fpga(clk_handle, switch_handle, key_handle, led_handle, hex_handle,
key_action_handle, scan_code_handle, ps2_lock_handle,
x_handle, y_handle, color_handle, plot_handle, gpio_handle);
//Attach the allocated FPGA to this task call instance
vpi_put_userdata(self, f);
//Callback info for end of sim cleanup (for freeing fpga)
s_cb_data dat = {
.reason = cbEndOfSimulation,
.cb_rtn = EndOfSimCleanup,
.obj = NULL,
.time = NULL,
.value = NULL,
.index = 0,
.user_data = (char *)f
};
//Register callback
vpiHandle cb_handle = vpi_register_cb(&dat);
//We don't need the handle (since we'll never cancel the callback)
vpi_free_object(cb_handle);
return 0;
}
/**
* "calltf" for MyTaskRegister
* The main function which implements the functionality of this simulation task
*/
static int MyCalltf(PLI_BYTE8 *user_data) {
//Get reference to the object representing this task call instance
vpiHandle self = vpi_handle(vpiSysTfCall, NULL);
//Get the saved data for this instance
fpga *f = static_cast<fpga *>(vpi_get_userdata(self));
//To get the value of signals later
RegVcCb(f->leds->device_handle, vpiBinStrVal, f, LedValueChange);
RegVcCb(f->hex_displays->device_handle, vpiHexStrVal, f, HexValueChange);
RegVcCb(f->ps2_locks->device_handle, vpiBinStrVal, f, PS2ValueChange);
RegVcCb(f->clk_handle, vpiIntVal, f, ClkValueChange);
// TODO: register callback for your output device
RegVcCb(f->gpio->device_handle, vpiBinStrVal, f, GpioValueChange);
//Apply initial input values immediately
f->SetInitialSimInput();
//Keep the communication between server and simulator
//make sure that the simulator stays open
RegKeepAliveCb(f);
return 0;
}
static int GpioValueChange(s_cb_data *dat){
fpga *f = (fpga *)dat->user_data;
f->UpdateOutputValue('g', dat->value);
RegRwSyncCb(f);
return 0;
}
//Value-change callback which registers a printer callback for the end of
//this sim time (so that values have "settled" by the time we print)
static int LedValueChange(s_cb_data *dat) {
//Grab FPGA state from callback user data
fpga *f = (fpga *)dat->user_data;
f->UpdateOutputValue('l', dat->value);
//Register I/O signal update callback
RegRwSyncCb(f);
return 0;
}
static int HexValueChange(s_cb_data *dat) {
fpga *f = (fpga *)dat->user_data;
f->UpdateOutputValue('h', dat->value);
RegRwSyncCb(f);
return 0;
}
static int PS2ValueChange(s_cb_data *dat) {
fpga *f = (fpga *)dat->user_data;
f->UpdateOutputValue('p', dat->value);
RegRwSyncCb(f);
return 0;
}
//Value-change callback for the clock. Handles VGA signals.
static int ClkValueChange(s_cb_data *dat) {
fpga *f = (fpga *)dat->user_data;
//Register fake I/O update callback if this is a rising edge
int clkval = dat->value->value.integer;
if (clkval) {
RegRoSyncCb(f);
}
return 0;
}
/**
* ReadWriteSynch callback that prints fpga state values and checks for input values
* Registered when signal values change
**/
static int RwSync(s_cb_data *dat) {
//Grab FPGA state from callback user data
fpga *f = (fpga *)dat->user_data;
//Mark that we've received the callback
f->rwsync_cb_reg = 0;
//Send output signals to GUI
f->SendOutputValue(server);
//Read messages from GUI and update input signals
struct pollfd pfd = {
.fd = server,
.events = POLLIN
};
int disparity_ms = GetTimeDisparityMs(dat); //max time to wait for msg
int rc = poll(&pfd, 1, disparity_ms);
if (fix_rc(rc) < 0) {
#ifndef _WIN32
//A rare situation where Linux is more complicated than Windows
if (errno == EINTR) return 0; //This is not an error
#endif
vpi_printf_helper("error with poll()\n");
vpi_mcd_flush(1);
vpi_control(vpiFinish, 1);
return 0;
} else if (rc > 0) {
char msg[15];
memset(msg, 0, 15);
int rc = recv(server, msg, sizeof(msg) - 1, 0);
if (rc < 0) {
vpi_printf_helper("Could not read network data\n");
vpi_mcd_flush(1);
vpi_control(vpiFinish, 1);
return 0;
} else if (rc == 0) {
vpi_printf_helper("GUI has closed the connection\n");
vpi_mcd_flush(1);
vpi_control(vpiFinish, 1);
return 0;
}
msg[rc] = 0; //null terminate
f->HandleInput(msg);
}
return 0;
}
/**
* ReadOnlySynch callback that reads VGA signals at the clock's rising edge
* Note: Need to check the clock's value before registering this callback
*/
static int RisingEdgeRoSync(s_cb_data *dat) {
//Grab FPGA state from callback user data
fpga *f = (fpga *)dat->user_data;
//Mark that we've received the callback
f->rosync_cb_reg = 0;
f->SendVGAPixelValue(server);
return 0;
}
/**
* Set up socket to communicate with GUI
*/
static int StartOfSim(s_cb_data *dat) {
char msg[128];
snprintf(msg, 128, "Time scaling: %g sim seconds per real-time second\n\n\n", 1.0f / TIME_SCALE);
vpi_printf_helper(msg);
#ifdef _WIN32
WSADATA wsa_data;
WSAStartup(0x0202, &wsa_data);
#endif
server = socket(AF_INET, SOCK_STREAM, 0);
if (server == INVALID_SOCKET) {
vpi_printf_helper("Could not open socket\n");
vpi_control(vpiFinish, 1);
return 0;
}
struct sockaddr_in serv_addr = {
.sin_family = AF_INET,
.sin_port = htons(54321)
};
inet_pton(AF_INET, "127.0.0.1", &(serv_addr.sin_addr));
int rc = fix_rc(connect(server, (struct sockaddr *)&serv_addr, sizeof(struct sockaddr_in)));
if (rc != 0) {
vpi_printf_helper("Could not connect to GUI server\n");
vpi_control(vpiFinish, 1);
return 0;
}
vpi_printf_helper("Connected to server!\n");
vpi_mcd_flush(1);
gettimeofday(&sim_start, NULL);
return 0;
}
/**
* clean up data and close socket
*/
static int EndOfSimCleanup(s_cb_data *dat) {
fpga *f = (fpga *)dat->user_data;
delete f;
// free(f);
if (server != INVALID_SOCKET) {
closesocket(server);
}
#ifdef _WIN32
WSACleanup();
#endif
vpi_printf_helper("\nQuitting...\n");
return 0;
}
//Callback called every 5000 sim ticks just to make sure the simulation stays open.
static int KeepAlive(s_cb_data *dat) {
fpga *f = (fpga *)dat->user_data;
//Old handle is no longer meaningful, so free it:
vpi_free_object(f->keep_alive_cb_handle);
//Register a new keep-alive callback
RegKeepAliveCb(f);
//Register callback for updating I/O
RegRwSyncCb(f);
return 0;
}
//Helper function to register a keep-alive callback. a cbAfterDelay callback for 5000 sim ticks
static void RegKeepAliveCb(fpga *f) {
s_vpi_time delay = {
.type = vpiSimTime,
.high = 0,
.low = 5000
};
s_cb_data cbdat = {
.reason = cbAfterDelay,
.cb_rtn = KeepAlive,
.obj = NULL,
.time = &delay,
.value = NULL,
.index = 0,
.user_data = (char *)f
};
f->keep_alive_cb_handle = vpi_register_cb(&cbdat);
}
/**
* Helper function for RwSync
* Calculate the amount of time to wait for message from server
*/
static int GetTimeDisparityMs(s_cb_data *dat) {
//Get current time and compare with scaled sim time
struct timeval now;
gettimeofday(&now, NULL);
double real_time = ((double)(now.tv_sec - sim_start.tv_sec)
+ 1e-6 * (double)(now.tv_usec - sim_start.tv_usec));
double sim_time_ns = (double)dat->time->low / 1000.0;
double scaled_sim_time = sim_time_ns * 1e-9 * TIME_SCALE;
// get upper 32 bits of sim time
sim_time_ns += (double) dat->time->high * 4294967.296; // = 2^32 / 1000
double disparity = (scaled_sim_time - real_time);
int disparity_ms = disparity * 1e3;
//Not wait for msg if simulation time is not too advanced
if (disparity_ms < 5) disparity_ms = 0;
return disparity_ms;
}
//Helper function to register FPGA input/output callback
static void RegRwSyncCb(fpga *f) {
//Register printer callback, if not already done
if (f->rwsync_cb_reg == 0) {
//Desired time units
s_vpi_time time_type = {
.type = vpiSimTime
};
//Callback info for printing value at end of sim time
s_cb_data cbdat = {
.reason = cbReadWriteSynch,
.cb_rtn = RwSync,
.obj = NULL,
.time = &time_type,
.value = NULL,
.index = 0,
.user_data = (char *)f
};
//Register the callback
vpiHandle cb_handle = vpi_register_cb(&cbdat);
//We'll never need this handle, so free it
vpi_free_object(cb_handle);
//Signal that the callback is registered so we don't re-register it
f->rwsync_cb_reg = 1;
}
}
//Helper function to register ReadOnlySynch callback
static void RegRoSyncCb(fpga *f) {
//Register printer callback, if not already done
if (f->rosync_cb_reg == 0) {
//Desired time units
s_vpi_time time_type = {
.type = vpiSimTime
};
//Callback info for printing value at end of sim time
s_cb_data cbdat = {
.reason = cbReadOnlySynch,
.cb_rtn = RisingEdgeRoSync,
.obj = NULL,
.time = &time_type,
.value = NULL,
.index = 0,
.user_data = (char *)f
};
//Register the callback
vpiHandle cb_handle = vpi_register_cb(&cbdat);
//We'll never need this handle, so free it
vpi_free_object(cb_handle);
//Signal that the callback is registered so we don't re-register it
f->rosync_cb_reg = 1;
}
}
//Helper function to register a value-change callback
static void RegVcCb(vpiHandle net, PLI_INT32 format, fpga *f, PLI_INT32 (*callback)(struct t_cb_data *)) {
//Say we want time in sim units
s_vpi_time time_type = {
.type = vpiSimTime
};
//We want a binary string
s_vpi_value val_type = {
.format = format
};
//Callback info
s_cb_data cbdat = {
.reason = cbValueChange,
.cb_rtn = callback,
.obj = net,
.time = &time_type,
.value = &val_type,
.index = 0,
.user_data = (char *)f
};
//Register the callback
vpiHandle cb_handle = vpi_register_cb(&cbdat);
//We don't need the handle to the callback (since we never plan to cancel it)
vpi_free_object(cb_handle);
}