corundum_verilator.cpp 34.6 KB
Newer Older
1
#include <iostream>
2
#include <deque>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
3
4
#include <set>
#include <signal.h>
5
6
7
8

extern "C" {
    #include <nicsim.h>
}
9
10
11

#include "Vinterface.h"
#include "verilated.h"
12
#ifdef TRACE_ENABLED
13
#include "verilated_vcd_c.h"
14
#endif
15

Antoine Kaufmann's avatar
Antoine Kaufmann committed
16
#include "debug.h"
Antoine Kaufmann's avatar
Antoine Kaufmann committed
17
#include "corundum.h"
Antoine Kaufmann's avatar
Antoine Kaufmann committed
18
#include "coord.h"
Antoine Kaufmann's avatar
Antoine Kaufmann committed
19
20
21
#include "dma.h"
#include "mem.h"

Antoine Kaufmann's avatar
Antoine Kaufmann committed
22
23
struct DMAOp;

24
25
26
27
28
29
30
static uint64_t clock_period = 4 * 1000ULL; // 4ns -> 250MHz
static uint64_t sync_period = 500 * 1000ULL; // 500ns
static uint64_t pci_latency = 500 * 1000ULL; // 500ns
static uint64_t eth_latency = 500 * 1000ULL; // 500ns



Antoine Kaufmann's avatar
Antoine Kaufmann committed
31
static volatile int exiting = 0;
32
uint64_t main_time = 0;
33
static struct nicsim_params nsparams;
34
35
36
#ifdef TRACE_ENABLED
static VerilatedVcdC* trace;
#endif
37

38
static volatile union cosim_pcie_proto_d2h *d2h_alloc(void);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
39
40
41
42
43
44
45


static void sigint_handler(int dummy)
{
    exiting = 1;
}

46
47
48
49
50
static void sigusr1_handler(int dummy)
{
    fprintf(stderr, "main_time = %lu\n", main_time);
}

51
52
53
54
55
double sc_time_stamp()
{
    return main_time;
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
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
static void reset_inputs(Vinterface *top)
{
    top->clk = 0;
    top->rst = 0;
    top->m_axis_ctrl_dma_read_desc_ready = 0;
    top->s_axis_ctrl_dma_read_desc_status_tag = 0;
    top->s_axis_ctrl_dma_read_desc_status_valid = 0;
    top->m_axis_ctrl_dma_write_desc_ready = 0;
    top->s_axis_ctrl_dma_write_desc_status_tag = 0;
    top->s_axis_ctrl_dma_write_desc_status_valid = 0;
    top->m_axis_data_dma_read_desc_ready = 0;
    top->s_axis_data_dma_read_desc_status_tag = 0;
    top->s_axis_data_dma_read_desc_status_valid = 0;
    top->m_axis_data_dma_write_desc_ready = 0;
    top->s_axis_data_dma_write_desc_status_tag = 0;
    top->s_axis_data_dma_write_desc_status_valid = 0;
    top->s_axil_awaddr = 0;
    top->s_axil_awprot = 0;
    top->s_axil_awvalid = 0;
    top->s_axil_wdata = 0;
    top->s_axil_wstrb = 0;
    top->s_axil_wvalid = 0;
    top->s_axil_bready = 0;
    top->s_axil_araddr = 0;
    top->s_axil_arprot = 0;
    top->s_axil_arvalid = 0;
    top->s_axil_rready = 0;
    top->m_axil_csr_awready = 0;
    top->m_axil_csr_wready = 0;
    top->m_axil_csr_bresp = 0;
    top->m_axil_csr_bvalid = 0;
    top->m_axil_csr_arready = 0;
    top->m_axil_csr_rdata = 0;
    top->m_axil_csr_rresp = 0;
    top->m_axil_csr_rvalid = 0;
    top->ctrl_dma_ram_wr_cmd_sel = 0;
    //top->ctrl_dma_ram_wr_cmd_be = 0;
    //top->ctrl_dma_ram_wr_cmd_addr = 0;
    top->ctrl_dma_ram_wr_cmd_valid = 0;
    top->ctrl_dma_ram_rd_cmd_sel = 0;
    //top->ctrl_dma_ram_rd_cmd_addr = 0;
    top->ctrl_dma_ram_rd_cmd_valid = 0;
    top->ctrl_dma_ram_rd_resp_ready = 0;
    top->data_dma_ram_wr_cmd_sel = 0;
    //top->data_dma_ram_wr_cmd_be = 0;
    //top->data_dma_ram_wr_cmd_addr = 0;
    top->data_dma_ram_wr_cmd_valid = 0;
    top->data_dma_ram_rd_cmd_sel = 0;
    //top->data_dma_ram_rd_cmd_addr = 0;
    top->data_dma_ram_rd_cmd_valid = 0;
    top->data_dma_ram_rd_resp_ready = 0;
    top->tx_axis_tready = 0;
    top->s_axis_tx_ptp_ts_valid = 0;
    top->rx_axis_tkeep = 0;
    top->rx_axis_tvalid = 0;
    top->rx_axis_tlast = 0;
    top->rx_axis_tuser = 0;
    top->s_axis_rx_ptp_ts_valid = 0;
    top->ptp_ts_step = 0;
}

static void report_output(const char *label, uint64_t val)
{
    if (val == 0)
        return;

    std::cout << "    " << label << " = " << val << std::endl;
}

static void report_outputs(Vinterface *top)
{
    report_output("m_axis_ctrl_dma_read_desc_dma_addr", top->m_axis_ctrl_dma_read_desc_dma_addr);
    report_output("m_axis_ctrl_dma_read_desc_ram_sel", top->m_axis_ctrl_dma_read_desc_ram_sel);
    report_output("m_axis_ctrl_dma_read_desc_ram_addr", top->m_axis_ctrl_dma_read_desc_ram_addr);
    report_output("m_axis_ctrl_dma_read_desc_len", top->m_axis_ctrl_dma_read_desc_len);
    report_output("m_axis_ctrl_dma_read_desc_tag", top->m_axis_ctrl_dma_read_desc_tag);
    report_output("m_axis_ctrl_dma_read_desc_valid", top->m_axis_ctrl_dma_read_desc_valid);
    report_output("m_axis_ctrl_dma_write_desc_dma_addr", top->m_axis_ctrl_dma_write_desc_dma_addr);
    report_output("m_axis_ctrl_dma_write_desc_ram_sel", top->m_axis_ctrl_dma_write_desc_ram_sel);
    report_output("m_axis_ctrl_dma_write_desc_ram_addr", top->m_axis_ctrl_dma_write_desc_ram_addr);
    report_output("m_axis_ctrl_dma_write_desc_len", top->m_axis_ctrl_dma_write_desc_len);
    report_output("m_axis_ctrl_dma_write_desc_tag", top->m_axis_ctrl_dma_write_desc_tag);
    report_output("m_axis_ctrl_dma_write_desc_valid", top->m_axis_ctrl_dma_write_desc_valid);
    report_output("m_axis_data_dma_read_desc_dma_addr", top->m_axis_data_dma_read_desc_dma_addr);
    report_output("m_axis_data_dma_read_desc_ram_sel", top->m_axis_data_dma_read_desc_ram_sel);
    report_output("m_axis_data_dma_read_desc_ram_addr", top->m_axis_data_dma_read_desc_ram_addr);
    report_output("m_axis_data_dma_read_desc_len", top->m_axis_data_dma_read_desc_len);
    report_output("m_axis_data_dma_read_desc_tag", top->m_axis_data_dma_read_desc_tag);
    report_output("m_axis_data_dma_read_desc_valid", top->m_axis_data_dma_read_desc_valid);
    report_output("m_axis_data_dma_write_desc_dma_addr", top->m_axis_data_dma_write_desc_dma_addr);
    report_output("m_axis_data_dma_write_desc_ram_sel", top->m_axis_data_dma_write_desc_ram_sel);
    report_output("m_axis_data_dma_write_desc_ram_addr", top->m_axis_data_dma_write_desc_ram_addr);
    report_output("m_axis_data_dma_write_desc_len", top->m_axis_data_dma_write_desc_len);
    report_output("m_axis_data_dma_write_desc_tag", top->m_axis_data_dma_write_desc_tag);
    report_output("m_axis_data_dma_write_desc_valid", top->m_axis_data_dma_write_desc_valid);
    report_output("s_axil_awready", top->s_axil_awready);
    report_output("s_axil_wready", top->s_axil_wready);
    report_output("s_axil_bresp", top->s_axil_bresp);
    report_output("s_axil_bvalid", top->s_axil_bvalid);
    report_output("s_axil_arready", top->s_axil_arready);
    report_output("s_axil_rdata", top->s_axil_rdata);
    report_output("s_axil_rresp", top->s_axil_rresp);
    report_output("s_axil_rvalid", top->s_axil_rvalid);
    report_output("m_axil_csr_awaddr", top->m_axil_csr_awaddr);
    report_output("m_axil_csr_awprot", top->m_axil_csr_awprot);
    report_output("m_axil_csr_awvalid", top->m_axil_csr_awvalid);
    report_output("m_axil_csr_wdata", top->m_axil_csr_wdata);
    report_output("m_axil_csr_wstrb", top->m_axil_csr_wstrb);
    report_output("m_axil_csr_wvalid", top->m_axil_csr_wvalid);
    report_output("m_axil_csr_bready", top->m_axil_csr_bready);
    report_output("m_axil_csr_araddr", top->m_axil_csr_araddr);
    report_output("m_axil_csr_arprot", top->m_axil_csr_arprot);
    report_output("m_axil_csr_arvalid", top->m_axil_csr_arvalid);
    report_output("m_axil_csr_rready", top->m_axil_csr_rready);
    report_output("ctrl_dma_ram_wr_cmd_ready", top->ctrl_dma_ram_wr_cmd_ready);
    report_output("ctrl_dma_ram_rd_cmd_ready", top->ctrl_dma_ram_rd_cmd_ready);
    report_output("ctrl_dma_ram_rd_resp_valid", top->ctrl_dma_ram_rd_resp_valid);
    report_output("data_dma_ram_wr_cmd_ready", top->data_dma_ram_wr_cmd_ready);
    report_output("data_dma_ram_rd_cmd_ready", top->data_dma_ram_rd_cmd_ready);
    report_output("data_dma_ram_rd_resp_valid", top->data_dma_ram_rd_resp_valid);
    report_output("tx_axis_tkeep", top->tx_axis_tkeep);
    report_output("tx_axis_tvalid", top->tx_axis_tvalid);
    report_output("tx_axis_tlast", top->tx_axis_tlast);
    report_output("tx_axis_tuser", top->tx_axis_tuser);
    report_output("s_axis_tx_ptp_ts_ready", top->s_axis_tx_ptp_ts_ready);
    report_output("rx_axis_tready", top->rx_axis_tready);
    report_output("s_axis_rx_ptp_ts_ready", top->s_axis_rx_ptp_ts_ready);
    report_output("msi_irq", top->msi_irq);
}

186
187
188
189
190
191
192
193
struct MMIOOp {
    uint64_t id;
    uint64_t addr;
    uint64_t value;
    size_t len;
    bool isWrite;
};

194
195
196
197
198
199
200
201
202
203
class MMIOInterface {
    protected:

        enum OpState {
            AddrIssued,
            AddrAcked,
            AddrDone,
        };

        Vinterface &top;
204
205
206
        PCICoordinator &coord;
        std::deque<MMIOOp *> queue;
        MMIOOp *rCur, *wCur;
207
208
209
        enum OpState rState, wState;

    public:
210
211
        MMIOInterface(Vinterface &top_,  PCICoordinator &coord_)
            : top(top_), coord(coord_), rCur(0), wCur(0)
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
        {
        }

        void step()
        {
            if (rCur) {
                /* work on active read operation */

                if (rState == AddrIssued && top.s_axil_arready) {
                    /* read handshake is complete */
                    top.s_axil_arvalid = 0;
                    rState = AddrAcked;
                }
                if (rState == AddrAcked && top.s_axil_rvalid) {
                    /* read data received */
                    top.s_axil_rready = 0;
                    rCur->value = top.s_axil_rdata;
229
230
                    coord.mmio_comp_enqueue(rCur);
#ifdef MMIO_DEBUG
231
                    std::cout << main_time << " MMIO: completed AXI read op=" << rCur << " val=" <<
232
233
                        rCur->value << std::endl;
#endif
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
                    rCur = 0;
                }
            } else if (wCur) {
                /* work on active write operation */

                if (wState == AddrIssued && top.s_axil_awready) {
                    /* write addr handshake is complete */
                    top.s_axil_awvalid = 0;
                    wState = AddrAcked;
                }
                if (wState == AddrAcked && top.s_axil_wready) {
                    /* write data handshake is complete */
                    top.s_axil_wvalid = 0;
                    top.s_axil_bready = 1;
                    wState = AddrDone;
                }
                if (wState == AddrDone && top.s_axil_bvalid) {
                    /* write complete */
                    top.s_axil_bready = 0;
253
254
                    // TODO: check top.s_axil_bresp
#ifdef MMIO_DEBUG
255
                    std::cout << main_time << " MMIO: completed AXI write op=" << wCur <<
256
257
258
                        std::endl;
#endif
                    coord.mmio_comp_enqueue(wCur);
259
260
261
262
263
                    wCur = 0;
                }
            } else if (/*!top.clk &&*/ !queue.empty()) {
                /* issue new operation */

264
                MMIOOp *op = queue.front();
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
                queue.pop_front();
                if (!op->isWrite) {
                    /* issue new read */
                    rCur = op;

                    rState = AddrIssued;

                    top.s_axil_araddr = rCur->addr;
                    top.s_axil_arprot = 0x0;
                    top.s_axil_arvalid = 1;
                    top.s_axil_rready = 1;
                } else {
                    /* issue new write */
                    wCur = op;

                    wState = AddrIssued;

                    top.s_axil_awaddr = wCur->addr;
                    top.s_axil_awprot = 0x0;
                    top.s_axil_awvalid = 1;

                    top.s_axil_wdata = wCur->value;
                    top.s_axil_wstrb = 0xf;
                    top.s_axil_wvalid = 1;

                }
            }
        }

        void issueRead(uint64_t id, uint64_t addr, size_t len)
        {
296
297
            MMIOOp *op = new MMIOOp;
#ifdef MMIO_DEBUG
298
            std::cout << main_time << " MMIO: read id=" << id << " addr=" << std::hex << addr
299
300
                << " len=" << len << " op=" << op << std::endl;
#endif
301
302
303
304
305
306
307
308
309
310
            op->id = id;
            op->addr = addr;
            op->len = len;
            op->isWrite = false;
            queue.push_back(op);
        }


        void issueWrite(uint64_t id, uint64_t addr, size_t len, uint64_t val)
        {
311
312
            MMIOOp *op = new MMIOOp;
#ifdef MMIO_DEBUG
313
            std::cout << main_time << " MMIO: write id=" << id << " addr=" << std::hex << addr
314
315
                << " len=" << len << " val=" << val << " op=" << op << std::endl;
#endif
316
317
318
319
320
321
322
323
            op->id = id;
            op->addr = addr;
            op->len = len;
            op->value = val;
            op->isWrite = true;
            queue.push_back(op);
        }

324
};
Antoine Kaufmann's avatar
Antoine Kaufmann committed
325

326
327
void pci_rwcomp_issue(MMIOOp *op)
{
328
    volatile union cosim_pcie_proto_d2h *msg = d2h_alloc();
329
330
    volatile struct cosim_pcie_proto_d2h_readcomp *rc;
    volatile struct cosim_pcie_proto_d2h_writecomp *wc;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
331

332
333
    if (!msg)
        throw "completion alloc failed";
Antoine Kaufmann's avatar
Antoine Kaufmann committed
334

335
336
337
    if (op->isWrite) {
        wc = &msg->writecomp;
        wc->req_id = op->id;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
338

339
340
341
342
343
344
345
        //WMB();
        wc->own_type = COSIM_PCIE_PROTO_D2H_MSG_WRITECOMP |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    } else {
        rc = &msg->readcomp;
        memcpy((void *) rc->data, &op->value, op->len);
        rc->req_id = op->id;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
346

347
348
349
350
351
352
353
        //WMB();
        rc->own_type = COSIM_PCIE_PROTO_D2H_MSG_READCOMP |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    }

    delete op;
}
Antoine Kaufmann's avatar
Antoine Kaufmann committed
354

Antoine Kaufmann's avatar
Antoine Kaufmann committed
355
#if 0
Antoine Kaufmann's avatar
Antoine Kaufmann committed
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
class MemAccessor {
    protected:
        Vinterface &top;

        /* outputs to memory */
        vluint8_t   &p_mem_sel;
        vluint32_t (*p_mem_be)[4]; /* for write only */
        vluint32_t (&p_mem_addr)[3];
        vluint8_t   &p_mem_valid;
        vluint8_t   *p_mem_resp_ready; /* for read only */

        /* direction depends */
        vluint32_t (&p_mem_data)[32];

        /* inputs from memory */
        vluint8_t   &p_mem_ready;
        vluint8_t   *p_mem_resp_valid; /* for read only */

    public:
        MemAccessor(Vinterface &top_, bool read,
                vluint8_t &p_mem_sel_,
                vluint32_t (*p_mem_be_)[4],
                vluint32_t (&p_mem_addr_)[3],
                vluint8_t &p_mem_valid_,
                vluint8_t *p_mem_resp_ready_,
                vluint32_t (&p_mem_data_)[32],
                vluint8_t &p_mem_ready_,
                vluint8_t *p_mem_resp_valid_)
            : top(top_),
            p_mem_sel(p_mem_sel_), p_mem_be(p_mem_be_), p_mem_addr(p_mem_addr_),
            p_mem_valid(p_mem_valid_), p_mem_resp_ready(p_mem_resp_ready_),
            p_mem_data(p_mem_data_), p_mem_ready(p_mem_ready_),
            p_mem_resp_valid(p_mem_resp_valid_)
        {
390
391
        }

Antoine Kaufmann's avatar
Antoine Kaufmann committed
392
393
394
395
        void step()
        {
        }
};
Antoine Kaufmann's avatar
Antoine Kaufmann committed
396
#endif
397

Antoine Kaufmann's avatar
Antoine Kaufmann committed
398
399
std::set<DMAOp *> pci_dma_pending;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
400
void pci_dma_issue(DMAOp *op)
Antoine Kaufmann's avatar
Antoine Kaufmann committed
401
{
402
    volatile union cosim_pcie_proto_d2h *msg = d2h_alloc();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
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
    uint8_t ty;

    if (!msg)
        throw "completion alloc failed";

    if (op->write) {
        volatile struct cosim_pcie_proto_d2h_write *write = &msg->write;
        write->req_id = (uintptr_t) op;
        write->offset = op->dma_addr;
        write->len = op->len;

        // TODO: check DMA length
        memcpy((void *) write->data, op->data, op->len);

        // WMB();
        write->own_type = COSIM_PCIE_PROTO_D2H_MSG_WRITE |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    } else {
        volatile struct cosim_pcie_proto_d2h_read *read = &msg->read;
        read->req_id = (uintptr_t) op;
        read->offset = op->dma_addr;
        read->len = op->len;

        // WMB();
        read->own_type = COSIM_PCIE_PROTO_D2H_MSG_READ |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    }

    pci_dma_pending.insert(op);
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
434

Antoine Kaufmann's avatar
Antoine Kaufmann committed
435
436
437
438
439
440
441
442
static void h2d_readcomp(volatile struct cosim_pcie_proto_h2d_readcomp *rc)
{
    DMAOp *op = (DMAOp *) (uintptr_t) rc->req_id;
    if (pci_dma_pending.find(op) == pci_dma_pending.end())
        throw "unexpected completion";
    pci_dma_pending.erase(op);

    memcpy(op->data, (void *) rc->data, op->len);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
443

Antoine Kaufmann's avatar
Antoine Kaufmann committed
444
#if 0
Antoine Kaufmann's avatar
Antoine Kaufmann committed
445
446
447
448
    std::cerr << "dma read comp: ";
    for (size_t i = 0; i < op->len; i++)
        std::cerr << (unsigned) op->data[i] << " ";
    std::cerr << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
449
#endif
Antoine Kaufmann's avatar
Antoine Kaufmann committed
450
451


Antoine Kaufmann's avatar
Antoine Kaufmann committed
452
453
454
455
456
457
458
459
460
461
462
463
464
    op->engine->pci_op_complete(op);
}

static void h2d_writecomp(volatile struct cosim_pcie_proto_h2d_writecomp *wc)
{
    DMAOp *op = (DMAOp *) (uintptr_t) wc->req_id;
    if (pci_dma_pending.find(op) == pci_dma_pending.end())
        throw "unexpected completion";
    pci_dma_pending.erase(op);

    op->engine->pci_op_complete(op);
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
465
466
467
static uint64_t csr_read(uint64_t off)
{
    switch (off) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
468
469
470
471
472
473
474
475
476
477
478
        case   0x00: return 32; /* firmware id */
        case   0x04: return 1; /* firmware version */
        case   0x08: return 0x43215678; /* board id */
        case   0x0c: return 0x1; /* board version */
        case   0x10: return 1; /* phc count */
        case   0x14: return 0x200; /* phc offset */
        case   0x18: return 0x80; /* phc stride */
        case   0x20: return 1; /* if_count */
        case   0x24: return 0x80000; /* if stride */
        case   0x2c: return 0x80000; /* if csr offset */
        case  0x200: return 0x1; /* phc features */
Antoine Kaufmann's avatar
Antoine Kaufmann committed
479
480
481
482
483
484
        default:
            std::cerr << "csr_read(" << off << ") unimplemented" << std::endl;
            return 0;
    }
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
485
486
487
488
static void csr_write(uint64_t off, uint64_t val)
{
}

489
490
491
static void h2d_read(MMIOInterface &mmio,
        volatile struct cosim_pcie_proto_h2d_read *read)
{
Antoine Kaufmann's avatar
Antoine Kaufmann committed
492
    //std::cout << "got read " << read->offset << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
493
    if (read->offset < 0x80000) {
494
        volatile union cosim_pcie_proto_d2h *msg = d2h_alloc();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
        volatile struct cosim_pcie_proto_d2h_readcomp *rc;

        if (!msg)
            throw "completion alloc failed";

        rc = &msg->readcomp;
        memset((void *) rc->data, 0, read->len);
        uint64_t val = csr_read(read->offset);
        memcpy((void *) rc->data, &val, read->len);
        rc->req_id = read->req_id;

        //WMB();
        rc->own_type = COSIM_PCIE_PROTO_D2H_MSG_READCOMP |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    } else {
        /*printf("read(bar=%u, off=%lu, len=%u) = %lu\n", read->bar, read->offset,
                read->len, val);*/
        mmio.issueRead(read->req_id, read->offset, read->len);
    }
514
515
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
516
517
518
519
520
521
522
523
524
525
static void h2d_write(MMIOInterface &mmio,
        volatile struct cosim_pcie_proto_h2d_write *write)
{
    uint64_t val = 0;

    memcpy(&val, (void *) write->data, write->len);

    //std::cout << "got write " << write->offset << " = " << val << std::endl;

    if (write->offset < 0x80000) {
526
        volatile union cosim_pcie_proto_d2h *msg = d2h_alloc();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
        volatile struct cosim_pcie_proto_d2h_writecomp *wc;

        if (!msg)
            throw "completion alloc failed";

        csr_write(write->offset, val);

        wc = &msg->writecomp;
        wc->req_id = write->req_id;

        //WMB();
        wc->own_type = COSIM_PCIE_PROTO_D2H_MSG_WRITECOMP |
            COSIM_PCIE_PROTO_D2H_OWN_HOST;
    } else {
        mmio.issueWrite(write->req_id, write->offset, write->len, val);
    }
}

545
546
static void poll_h2d(MMIOInterface &mmio)
{
547
548
    volatile union cosim_pcie_proto_h2d *msg =
        nicif_h2d_poll(&nsparams, main_time);
549
550
551
552
553
554
    uint8_t t;

    if (msg == NULL)
        return;

    t = msg->dummy.own_type & COSIM_PCIE_PROTO_H2D_MSG_MASK;
555

Antoine Kaufmann's avatar
Antoine Kaufmann committed
556
    //std::cerr << "poll_h2d: polled type=" << (int) t << std::endl;
557
558
559
560
561
    switch (t) {
        case COSIM_PCIE_PROTO_H2D_MSG_READ:
            h2d_read(mmio, &msg->read);
            break;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
562
563
564
565
566
567
568
569
570
571
572
        case COSIM_PCIE_PROTO_H2D_MSG_WRITE:
            h2d_write(mmio, &msg->write);
            break;

        case COSIM_PCIE_PROTO_H2D_MSG_READCOMP:
            h2d_readcomp(&msg->readcomp);
            break;

        case COSIM_PCIE_PROTO_H2D_MSG_WRITECOMP:
            h2d_writecomp(&msg->writecomp);
            break;
573

574
575
576
        case COSIM_PCIE_PROTO_H2D_MSG_DEVCTRL:
            break;

577
578
579
        case COSIM_PCIE_PROTO_H2D_MSG_SYNC:
            break;

580
581
582
583
584
585
586
        default:
            std::cerr << "poll_h2d: unsupported type=" << t << std::endl;
    }

    nicif_h2d_done(msg);
    nicif_h2d_next();

Antoine Kaufmann's avatar
Antoine Kaufmann committed
587
};
588

589
590
static volatile union cosim_pcie_proto_d2h *d2h_alloc(void)
{
591
    return nicsim_d2h_alloc(&nsparams, main_time);
592
593
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
594
595
596
class EthernetTx {
    protected:
        Vinterface &top;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
597
598
        uint8_t packet_buf[2048];
        size_t packet_len;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
599
600
601

    public:
        EthernetTx(Vinterface &top_)
Antoine Kaufmann's avatar
Antoine Kaufmann committed
602
603
604
605
606
            : top(top_), packet_len(0)
        {
        }

        void packet_done()
Antoine Kaufmann's avatar
Antoine Kaufmann committed
607
        {
608
609
            volatile union cosim_eth_proto_d2n *msg =
                nicsim_d2n_alloc(&nsparams, main_time);
610
611
612
613
614
615
616
617
            volatile struct cosim_eth_proto_d2n_send *send;

            if (!msg)
                throw "completion alloc failed";

            send = &msg->send;
            memcpy((void *) send->data, packet_buf, packet_len);
            send->len = packet_len;
618
            send->timestamp = main_time + eth_latency;
619
620
621
622
623

            //WMB();
            send->own_type = COSIM_ETH_PROTO_D2N_MSG_SEND |
                COSIM_ETH_PROTO_D2N_OWN_NET;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
624
#ifdef ETH_DEBUG
625
            std::cerr << main_time << " EthernetTx: packet len=" << std::hex << packet_len << " ";
Antoine Kaufmann's avatar
Antoine Kaufmann committed
626
627
628
629
            for (size_t i = 0; i < packet_len; i++) {
                std::cerr << (unsigned) packet_buf[i] << " ";
            }
            std::cerr << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
630
#endif
Antoine Kaufmann's avatar
Antoine Kaufmann committed
631
632
633
634
635
636
637
        }

        void step()
        {
            top.tx_axis_tready = 1;

            if (top.tx_axis_tvalid) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
638
639
640
641
642
643
644
645
646
647
648
649
                /* iterate over all 8 bytes */
                for (size_t i = 0; i < 8; i++) {
                    if ((top.tx_axis_tkeep & (1 << i)) != 0) {
                        assert(packet_len < 2048);
                        packet_buf[packet_len++] = (top.tx_axis_tdata >> (i * 8));
                    }
                }

                if (top.tx_axis_tlast) {
                    packet_done();
                    packet_len = 0;
                }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
650
651
            }
        }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
652
653
654
655
656
};

class EthernetRx {
    protected:
        Vinterface &top;
657
658
659
660
661
662
663
664

        static const size_t FIFO_SIZE = 32;
        uint8_t fifo_bufs[FIFO_SIZE][2048];
        size_t fifo_lens[FIFO_SIZE];
        size_t fifo_pos_rd;
        size_t fifo_pos_wr;


Antoine Kaufmann's avatar
Antoine Kaufmann committed
665
666
667
668
        size_t packet_off;

    public:
        EthernetRx(Vinterface &top_)
669
            : top(top_), fifo_pos_rd(0), fifo_pos_wr(0), packet_off(0)
Antoine Kaufmann's avatar
Antoine Kaufmann committed
670
        {
671
672
            for (size_t i = 0; i < FIFO_SIZE; i++)
                fifo_lens[i] = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
673
674
675
676
        }

        void packet_received(const void *data, size_t len)
        {
677
            if (fifo_lens[fifo_pos_wr] != 0) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
678
679
680
681
                std::cerr << "EthernetRx: dropping packet" << std::endl;
                return;
            }

682
683
            memcpy(fifo_bufs[fifo_pos_wr], data, len);
            fifo_lens[fifo_pos_wr] = len;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
684

Antoine Kaufmann's avatar
Antoine Kaufmann committed
685
#ifdef ETH_DEBUG
686
687
            std::cout << main_time << " rx into " << fifo_pos_wr << std::endl;
            std::cerr << main_time << " EthernetRx: packet len=" << std::hex << len << " ";
688
            for (size_t i = 0; i < len; i++) {
689
                std::cerr << (unsigned) fifo_bufs[fifo_pos_wr][i] << " ";
Antoine Kaufmann's avatar
Antoine Kaufmann committed
690
691
            }
            std::cerr << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
692
#endif
693
694

            fifo_pos_wr = (fifo_pos_wr + 1) % FIFO_SIZE;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
695
696
697
698
        }

        void step()
        {
699
            if (fifo_lens[fifo_pos_rd] != 0) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
700
701
702
                // we have data to send
                if (packet_off != 0 && !top.rx_axis_tready) {
                    // no ready signal, can't advance
Antoine Kaufmann's avatar
Antoine Kaufmann committed
703
                    std::cerr << "eth rx: no ready" << std::endl;
704
                } else if (packet_off == fifo_lens[fifo_pos_rd]) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
705
                    // done with packet
Antoine Kaufmann's avatar
Antoine Kaufmann committed
706
#ifdef ETH_DEBUG
707
                    std::cerr << main_time << " EthernetRx: finished packet" << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
708
#endif
Antoine Kaufmann's avatar
Antoine Kaufmann committed
709
                    top.rx_axis_tvalid = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
710
                    top.rx_axis_tlast = 0;
711
712
713
714

                    packet_off = 0;
                    fifo_lens[fifo_pos_rd] = 0;
                    fifo_pos_rd = (fifo_pos_rd + 1) % FIFO_SIZE;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
715
716
                } else {
                    // put out more packet data
Antoine Kaufmann's avatar
Antoine Kaufmann committed
717
#ifdef ETH_DEBUG
718
                    std::cerr << main_time << " EthernetRx: push flit " << packet_off << std::endl;
719
720
                    if (packet_off == 0)
                        std::cout << "rx from " << fifo_pos_rd << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
721
#endif
Antoine Kaufmann's avatar
Antoine Kaufmann committed
722
723
                    top.rx_axis_tkeep = 0;
                    top.rx_axis_tdata = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
724
                    size_t i;
725
                    for (i = 0; i < 8 && packet_off < fifo_lens[fifo_pos_rd]; i++) {
Antoine Kaufmann's avatar
Antoine Kaufmann committed
726
                        top.rx_axis_tdata |=
727
728
                            ((uint64_t) fifo_bufs[fifo_pos_rd][packet_off]) <<
                            (i * 8);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
729
730
731
                        top.rx_axis_tkeep |= (1 << i);
                        packet_off++;
                    }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
732
                    top.rx_axis_tvalid = 1;
733
                    top.rx_axis_tlast = (packet_off == fifo_lens[fifo_pos_rd]);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
734
                }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
735
                //trace->dump(main_time);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
736
737
738
            } else {
                // no data
                top.rx_axis_tvalid = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
739
                top.rx_axis_tlast = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
740
741
            }
        }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
742

Antoine Kaufmann's avatar
Antoine Kaufmann committed
743
744
};

Antoine Kaufmann's avatar
Antoine Kaufmann committed
745
746
747
748
749
750
751
752
static void n2d_recv(EthernetRx &rx,
        volatile struct cosim_eth_proto_n2d_recv *recv)
{
    rx.packet_received((const void *) recv->data, recv->len);
}

static void poll_n2d(EthernetRx &rx)
{
753
754
    volatile union cosim_eth_proto_n2d *msg =
        nicif_n2d_poll(&nsparams, main_time);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
755
756
757
758
759
760
    uint8_t t;

    if (msg == NULL)
        return;

    t = msg->dummy.own_type & COSIM_ETH_PROTO_N2D_MSG_MASK;
761

Antoine Kaufmann's avatar
Antoine Kaufmann committed
762
763
764
765
766
    switch (t) {
        case COSIM_ETH_PROTO_N2D_MSG_RECV:
            n2d_recv(rx, &msg->recv);
            break;

767
768
769
        case COSIM_ETH_PROTO_N2D_MSG_SYNC:
            break;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
770
771
772
773
774
775
776
        default:
            std::cerr << "poll_n2d: unsupported type=" << t << std::endl;
    }

    nicif_n2d_done(msg);
    nicif_n2d_next();
}
Antoine Kaufmann's avatar
Antoine Kaufmann committed
777

Antoine Kaufmann's avatar
Antoine Kaufmann committed
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
#if 0
class PCICoordinator {
    protected:
        struct PCIOp {
            union {
                DMAOp *dma_op;
                uint32_t msi_vec;
            };
            bool isDma;
            bool ready;
        };

        Vinterface &top;
        std::deque<PCIOp *> queue;
        std::map<DMAOp *, PCIOp *> dmamap;

        void process()
        {
            PCIOp *op;
            while (queue.empty()) {
                op = queue.front();
                if (!op->ready)
                    break;

                queue.pop_front();
                if (!op->isDma) {
                    pci_msi_issue(op->msi_vec);
                    delete op;
                } else {
                    pci_dma_issue(op->dma_op);
                    dmamap.erase(op->dma_op);
                    delete op;
                }
            }
        }

    public:
        PCICoordinator(Vinterface &top_)
            : top(top_)
        {
        }

        void dma_register(DMAOp *dma_op, bool ready)
        {
            PCIOp *op = new PCIOp;
            op->dma_op = vec;
            op->isDma = true;
            op->ready = ready;

            queue.push_back(op);
            dmamap[op] = dma_op;

            process();
        }

        void dma_mark_ready(DMAOp *op)
        {
            dmamap[op]->ready = true;

            process();
        }

        void msi_enqueue(uint32_t vec)
        {
            PCIOp *op = new PCIOp;
            op->msi_vec = vec;
            op->isDma = false;
            op->ready = true;
            queue.push_back(op);

            process();
        }
};
#endif

void pci_msi_issue(uint8_t vec)
854
{
855
    volatile union cosim_pcie_proto_d2h *msg = d2h_alloc();
856
857
    volatile struct cosim_pcie_proto_d2h_interrupt *intr;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
858
#ifdef MSI_DEBUG
859
    std::cerr << main_time << " MSI interrupt vec=" << (int) vec << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
860
#endif
861
862
863
864
865
866
867
868
869
870

    intr = &msg->interrupt;
    intr->vector = vec;
    intr->inttype = COSIM_PCIE_PROTO_INT_MSI;

    // WMB();
    intr->own_type = COSIM_PCIE_PROTO_D2H_MSG_INTERRUPT |
        COSIM_PCIE_PROTO_D2H_OWN_HOST;
}

Antoine Kaufmann's avatar
Antoine Kaufmann committed
871
872

static void msi_step(Vinterface &top, PCICoordinator &coord)
873
874
875
876
{
    if (!top.msi_irq)
        return;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
877
#ifdef MSI_DEBUG
878
    std::cerr << main_time << " msi_step: MSI interrupt raw vec=" << (int) top.msi_irq << std::endl;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
879
#endif
880
881
882
    for (size_t i = 0; i < 32; i++) {
        if (!((1ULL << i) & top.msi_irq))
            continue;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
883
        coord.msi_enqueue(i);
884
885
886
    }
}

887
888
int main(int argc, char *argv[])
{
889
890
    char *vargs[2] = { argv[0], NULL };
    Verilated::commandArgs(1, vargs);
Jialin Li's avatar
Jialin Li committed
891
    int sync_mode = SYNC_MODES;
892
#ifdef TRACE_ENABLED
893
    Verilated::traceEverOn(true);
894
895
#endif

Jialin Li's avatar
Jialin Li committed
896
    if (argc < 4 && argc > 10) {
897
        fprintf(stderr, "Usage: corundum_verilator PCI-SOCKET ETH-SOCKET "
Jialin Li's avatar
Jialin Li committed
898
                "SHM [SYNC-MODE] [START-TICK] [SYNC-PERIOD] [PCI-LATENCY] [ETH-LATENCY] "
899
                "[CLOCK-FREQ-MHZ]\n");
900
901
        return EXIT_FAILURE;
    }
902
    if (argc >= 5)
Jialin Li's avatar
Jialin Li committed
903
        sync_mode = strtol(argv[4], NULL, 0);
904
    if (argc >= 6)
Jialin Li's avatar
Jialin Li committed
905
        main_time = strtoull(argv[5], NULL, 0);
906
    if (argc >= 7)
Jialin Li's avatar
Jialin Li committed
907
        sync_period = strtoull(argv[6], NULL, 0) * 1000ULL;
908
    if (argc >= 8)
Jialin Li's avatar
Jialin Li committed
909
        pci_latency = strtoull(argv[7], NULL, 0) * 1000ULL;
910
    if (argc >= 9)
Jialin Li's avatar
Jialin Li committed
911
912
913
        eth_latency = strtoull(argv[8], NULL, 0) * 1000ULL;
    if (argc >= 10)
        clock_period = 1000000ULL / strtoull(argv[9], NULL, 0);
914
915
916
917

    struct cosim_pcie_proto_dev_intro di;
    memset(&di, 0, sizeof(di));

Antoine Kaufmann's avatar
Antoine Kaufmann committed
918
    di.bars[0].len = 1 << 24;
919
920
    di.bars[0].flags = COSIM_PCIE_PROTO_BAR_64;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
921
922
    di.pci_vendor_id = 0x5543;
    di.pci_device_id = 0x1001;
923
924
925
    di.pci_class = 0x02;
    di.pci_subclass = 0x00;
    di.pci_revision = 0x00;
926
    di.pci_msi_nvecs = 32;
927

928
929
930
931
932
    nsparams.sync_pci = 1;
    nsparams.sync_eth = 1;
    nsparams.pci_socket_path = argv[1];
    nsparams.eth_socket_path = argv[2];
    nsparams.shm_path = argv[3];
933
934
935
    nsparams.pci_latency = pci_latency;
    nsparams.eth_latency = eth_latency;
    nsparams.sync_delay = sync_period;
Jialin Li's avatar
Jialin Li committed
936
937
938
    assert(sync_mode == SYNC_MODES || sync_mode == SYNC_BARRIER);
    nsparams.sync_mode = sync_mode;

939
    if (nicsim_init(&nsparams, &di)) {
940
941
        return EXIT_FAILURE;
    }
942
943
    std::cout << "sync_pci=" << nsparams.sync_pci <<
        "  sync_eth=" << nsparams.sync_eth << std::endl;
944

Antoine Kaufmann's avatar
Antoine Kaufmann committed
945
    signal(SIGINT, sigint_handler);
946
    signal(SIGUSR1, sigusr1_handler);
947
948


949
    Vinterface *top = new Vinterface;
950
951
#ifdef TRACE_ENABLED
    trace = new VerilatedVcdC;
952
    top->trace(trace, 99);
953
954
    trace->open("debug.vcd");
#endif
955

Antoine Kaufmann's avatar
Antoine Kaufmann committed
956
    MemWritePort p_mem_write_ctrl_dma(
Antoine Kaufmann's avatar
Antoine Kaufmann committed
957
            top->ctrl_dma_ram_wr_cmd_sel,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
958
            top->ctrl_dma_ram_wr_cmd_be,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
959
960
            top->ctrl_dma_ram_wr_cmd_addr,
            top->ctrl_dma_ram_wr_cmd_data,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
961
962
963
964
965
966
            top->ctrl_dma_ram_wr_cmd_valid,
            top->ctrl_dma_ram_wr_cmd_ready);
    MemReadPort p_mem_read_ctrl_dma(
            top->ctrl_dma_ram_rd_cmd_sel,
            top->ctrl_dma_ram_rd_cmd_addr,
            top->ctrl_dma_ram_rd_cmd_valid,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
967
            top->ctrl_dma_ram_rd_resp_ready,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
968
            top->ctrl_dma_ram_rd_resp_data,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
969
970
            top->ctrl_dma_ram_rd_cmd_ready,
            top->ctrl_dma_ram_rd_resp_valid);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
971
972
973
974
975
976
977
978
979
980
981
    MemWritePort p_mem_write_data_dma(
            top->data_dma_ram_wr_cmd_sel,
            top->data_dma_ram_wr_cmd_be,
            top->data_dma_ram_wr_cmd_addr,
            top->data_dma_ram_wr_cmd_data,
            top->data_dma_ram_wr_cmd_valid,
            top->data_dma_ram_wr_cmd_ready);
    MemReadPort p_mem_read_data_dma(
            top->data_dma_ram_rd_cmd_sel,
            top->data_dma_ram_rd_cmd_addr,
            top->data_dma_ram_rd_cmd_valid,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
982
            top->data_dma_ram_rd_resp_ready,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
983
            top->data_dma_ram_rd_resp_data,
Antoine Kaufmann's avatar
Antoine Kaufmann committed
984
985
            top->data_dma_ram_rd_cmd_ready,
            top->data_dma_ram_rd_resp_valid);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
986
987

    DMAPorts p_dma_read_ctrl(
Antoine Kaufmann's avatar
Antoine Kaufmann committed
988
989
990
991
992
993
994
995
996
            top->m_axis_ctrl_dma_read_desc_dma_addr,
            top->m_axis_ctrl_dma_read_desc_ram_sel,
            top->m_axis_ctrl_dma_read_desc_ram_addr,
            top->m_axis_ctrl_dma_read_desc_len,
            top->m_axis_ctrl_dma_read_desc_tag,
            top->m_axis_ctrl_dma_read_desc_valid,
            top->m_axis_ctrl_dma_read_desc_ready,
            top->s_axis_ctrl_dma_read_desc_status_tag,
            top->s_axis_ctrl_dma_read_desc_status_valid);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
997
    DMAPorts p_dma_write_ctrl(
Antoine Kaufmann's avatar
Antoine Kaufmann committed
998
999
1000
1001
1002
1003
1004
1005
1006
            top->m_axis_ctrl_dma_write_desc_dma_addr,
            top->m_axis_ctrl_dma_write_desc_ram_sel,
            top->m_axis_ctrl_dma_write_desc_ram_addr,
            top->m_axis_ctrl_dma_write_desc_len,
            top->m_axis_ctrl_dma_write_desc_tag,
            top->m_axis_ctrl_dma_write_desc_valid,
            top->m_axis_ctrl_dma_write_desc_ready,
            top->s_axis_ctrl_dma_write_desc_status_tag,
            top->s_axis_ctrl_dma_write_desc_status_valid);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
    DMAPorts p_dma_read_data(
            top->m_axis_data_dma_read_desc_dma_addr,
            top->m_axis_data_dma_read_desc_ram_sel,
            top->m_axis_data_dma_read_desc_ram_addr,
            top->m_axis_data_dma_read_desc_len,
            top->m_axis_data_dma_read_desc_tag,
            top->m_axis_data_dma_read_desc_valid,
            top->m_axis_data_dma_read_desc_ready,
            top->s_axis_data_dma_read_desc_status_tag,
            top->s_axis_data_dma_read_desc_status_valid);
    DMAPorts p_dma_write_data(
            top->m_axis_data_dma_write_desc_dma_addr,
            top->m_axis_data_dma_write_desc_ram_sel,
            top->m_axis_data_dma_write_desc_ram_addr,
            top->m_axis_data_dma_write_desc_len,
            top->m_axis_data_dma_write_desc_tag,
            top->m_axis_data_dma_write_desc_valid,
            top->m_axis_data_dma_write_desc_ready,
            top->s_axis_data_dma_write_desc_status_tag,
            top->s_axis_data_dma_write_desc_status_valid);

1028
1029
1030
1031
1032
1033
1034
1035
    //PCICoordinator pci_coord;
    PCICoordinator pci_coord_mmio;
    PCICoordinator pci_coord_msi;
    PCICoordinator pci_coord_rc;
    PCICoordinator pci_coord_wc;
    PCICoordinator pci_coord_rd;
    PCICoordinator pci_coord_wd;
    MMIOInterface mmio(*top, pci_coord_mmio);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1036

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1037
    MemWriter mem_control_writer(p_mem_write_ctrl_dma);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1038
    MemReader mem_control_reader(p_mem_read_ctrl_dma);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1039
    MemWriter mem_data_writer(p_mem_write_data_dma);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1040
1041
    MemReader mem_data_reader(p_mem_read_data_dma);

1042
1043
1044
1045
    DMAReader dma_read_ctrl("read ctrl", p_dma_read_ctrl, mem_control_writer, pci_coord_rc);
    DMAWriter dma_write_ctrl("write ctrl", p_dma_write_ctrl, mem_control_reader, pci_coord_wc);
    DMAReader dma_read_data("read data", p_dma_read_data, mem_data_writer, pci_coord_rd);
    DMAWriter dma_write_data("write data", p_dma_write_data, mem_data_reader, pci_coord_wd);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1046
1047

    EthernetTx tx(*top);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1048
    EthernetRx rx(*top);
1049

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1050
1051
1052
1053
    reset_inputs(top);
    top->rst = 1;
    top->eval();

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1054
    /* raising edge */
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1055
1056
1057
1058
1059
    top->clk = !top->clk;
    top->eval();

    top->rst = 0;

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1060
    while (!exiting) {
1061
1062
1063
1064
        while (nicsim_sync(&nsparams, main_time)) {
            std::cerr << "warn: nicsim_sync failed (t=" << main_time << ")" <<
                std::endl;
        }
Jialin Li's avatar
Jialin Li committed
1065
        nicsim_advance_epoch(&nsparams, main_time);
1066
1067
1068
1069

        do {
            poll_h2d(mmio);
            poll_n2d(rx);
1070
        } while ((nsparams.sync_pci || nsparams.sync_eth) &&
Jialin Li's avatar
Jialin Li committed
1071
            nicsim_next_timestamp(&nsparams) <= main_time && !exiting);
1072

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1073
        /* falling edge */
1074
        top->clk = !top->clk;
1075
        main_time += clock_period / 2;
1076
1077
1078
        top->eval();

        mmio.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1079

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1080
        dma_read_ctrl.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1081
        dma_write_ctrl.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1082
        dma_read_data.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1083
1084
        dma_write_data.step();

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1085
        mem_control_writer.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1086
        mem_control_reader.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1087
        mem_data_writer.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1088
        mem_data_reader.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1089

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1090
        tx.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1091
        rx.step();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1092

1093
        msi_step(*top, pci_coord_msi);
1094

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1095
        /* raising edge */
1096
        top->clk = !top->clk;
1097
        main_time += clock_period / 2;
1098

Antoine Kaufmann's avatar
Antoine Kaufmann committed
1099
1100
        //top->s_axis_tx_ptp_ts_96 = main_time;
        top->s_axis_tx_ptp_ts_valid = 1;
1101
        top->s_axis_rx_ptp_ts_valid = 1;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1102

1103
1104
1105
        top->eval();
    }
    report_outputs(top);
1106
    std::cout << std::endl << std::endl << "main_time:" << main_time << std::endl;
1107

1108
1109
1110
1111
#ifdef TRACE_ENABLED
    trace->dump(main_time + 1);
    trace->close();
#endif
1112
1113
1114
1115
    top->final();
    delete top;
    return 0;
}