-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsim_rocket.cpp
158 lines (148 loc) · 5.66 KB
/
sim_rocket.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
#include "verilated.h"
#include "VExampleRocketSystem.h"
#include "axi4.hpp"
#include "axi4_mem.hpp"
#include "axi4_xbar.hpp"
#include "mmio_mem.hpp"
#include "uartlite.hpp"
#include <iostream>
#include <termios.h>
#include <unistd.h>
#include <thread>
void connect_wire(axi4_ptr <31,64,4> &mmio_ptr, axi4_ptr <32,64,4> &mem_ptr, VExampleRocketSystem *top) {
// connect
// mmio
// aw
mmio_ptr.awaddr = &(top->mmio_axi4_0_aw_bits_addr);
mmio_ptr.awburst = &(top->mmio_axi4_0_aw_bits_burst);
mmio_ptr.awid = &(top->mmio_axi4_0_aw_bits_id);
mmio_ptr.awlen = &(top->mmio_axi4_0_aw_bits_len);
mmio_ptr.awready = &(top->mmio_axi4_0_aw_ready);
mmio_ptr.awsize = &(top->mmio_axi4_0_aw_bits_size);
mmio_ptr.awvalid = &(top->mmio_axi4_0_aw_valid);
// w
mmio_ptr.wdata = &(top->mmio_axi4_0_w_bits_data);
mmio_ptr.wlast = &(top->mmio_axi4_0_w_bits_last);
mmio_ptr.wready = &(top->mmio_axi4_0_w_ready);
mmio_ptr.wstrb = &(top->mmio_axi4_0_w_bits_strb);
mmio_ptr.wvalid = &(top->mmio_axi4_0_w_valid);
// b
mmio_ptr.bid = &(top->mmio_axi4_0_b_bits_id);
mmio_ptr.bready = &(top->mmio_axi4_0_b_ready);
mmio_ptr.bresp = &(top->mmio_axi4_0_b_bits_resp);
mmio_ptr.bvalid = &(top->mmio_axi4_0_b_valid);
// ar
mmio_ptr.araddr = &(top->mmio_axi4_0_ar_bits_addr);
mmio_ptr.arburst = &(top->mmio_axi4_0_ar_bits_burst);
mmio_ptr.arid = &(top->mmio_axi4_0_ar_bits_id);
mmio_ptr.arlen = &(top->mmio_axi4_0_ar_bits_len);
mmio_ptr.arready = &(top->mmio_axi4_0_ar_ready);
mmio_ptr.arsize = &(top->mmio_axi4_0_ar_bits_size);
mmio_ptr.arvalid = &(top->mmio_axi4_0_ar_valid);
// r
mmio_ptr.rdata = &(top->mmio_axi4_0_r_bits_data);
mmio_ptr.rid = &(top->mmio_axi4_0_r_bits_id);
mmio_ptr.rlast = &(top->mmio_axi4_0_r_bits_last);
mmio_ptr.rready = &(top->mmio_axi4_0_r_ready);
mmio_ptr.rresp = &(top->mmio_axi4_0_r_bits_resp);
mmio_ptr.rvalid = &(top->mmio_axi4_0_r_valid);
// mem
// aw
mem_ptr.awaddr = &(top->mem_axi4_0_aw_bits_addr);
mem_ptr.awburst = &(top->mem_axi4_0_aw_bits_burst);
mem_ptr.awid = &(top->mem_axi4_0_aw_bits_id);
mem_ptr.awlen = &(top->mem_axi4_0_aw_bits_len);
mem_ptr.awready = &(top->mem_axi4_0_aw_ready);
mem_ptr.awsize = &(top->mem_axi4_0_aw_bits_size);
mem_ptr.awvalid = &(top->mem_axi4_0_aw_valid);
// w
mem_ptr.wdata = &(top->mem_axi4_0_w_bits_data);
mem_ptr.wlast = &(top->mem_axi4_0_w_bits_last);
mem_ptr.wready = &(top->mem_axi4_0_w_ready);
mem_ptr.wstrb = &(top->mem_axi4_0_w_bits_strb);
mem_ptr.wvalid = &(top->mem_axi4_0_w_valid);
// b
mem_ptr.bid = &(top->mem_axi4_0_b_bits_id);
mem_ptr.bready = &(top->mem_axi4_0_b_ready);
mem_ptr.bresp = &(top->mem_axi4_0_b_bits_resp);
mem_ptr.bvalid = &(top->mem_axi4_0_b_valid);
// ar
mem_ptr.araddr = &(top->mem_axi4_0_ar_bits_addr);
mem_ptr.arburst = &(top->mem_axi4_0_ar_bits_burst);
mem_ptr.arid = &(top->mem_axi4_0_ar_bits_id);
mem_ptr.arlen = &(top->mem_axi4_0_ar_bits_len);
mem_ptr.arready = &(top->mem_axi4_0_ar_ready);
mem_ptr.arsize = &(top->mem_axi4_0_ar_bits_size);
mem_ptr.arvalid = &(top->mem_axi4_0_ar_valid);
// r
mem_ptr.rdata = &(top->mem_axi4_0_r_bits_data);
mem_ptr.rid = &(top->mem_axi4_0_r_bits_id);
mem_ptr.rlast = &(top->mem_axi4_0_r_bits_last);
mem_ptr.rready = &(top->mem_axi4_0_r_ready);
mem_ptr.rresp = &(top->mem_axi4_0_r_bits_resp);
mem_ptr.rvalid = &(top->mem_axi4_0_r_valid);
}
bool trace_on = false;
bool running = true;
void uart_input(uartlite &uart) {
termios tmp;
tcgetattr(STDIN_FILENO,&tmp);
tmp.c_lflag &=(~ICANON & ~ECHO);
tcsetattr(STDIN_FILENO,TCSANOW,&tmp);
while (1) {
char c = getchar();
if (c == 10) c = 13; // convert lf to cr
uart.putc(c);
}
}
int main(int argc, char** argv, char** env) {
Verilated::commandArgs(argc, argv);
VExampleRocketSystem *top = new VExampleRocketSystem;
axi4_ptr <31,64,4> mmio_ptr;
axi4_ptr <32,64,4> mem_ptr;
connect_wire(mmio_ptr,mem_ptr,top);
assert(mmio_ptr.check());
assert(mem_ptr.check());
axi4_ref <31,64,4> mmio_ref(mmio_ptr);
axi4 <31,64,4> mmio_sigs;
axi4_ref <31,64,4> mmio_sigs_ref(mmio_sigs);
axi4_xbar<31,64,4> mmio;
uartlite uart;
std::thread uart_input_thread(uart_input,std::ref(uart));
assert(mmio.add_dev(0x60100000,1024*1024,&uart));
axi4_ref <32,64,4> mem_ref(mem_ptr);
axi4 <32,64,4> mem_sigs;
axi4_ref <32,64,4> mem_sigs_ref(mem_sigs);
axi4_mem <32,64,4> mem(4096l*1024*1024);
mem.load_binary("../opensbi/build/platform/generic/firmware/fw_payload.bin",0x80000000);
top->reset = 1;
uint64_t ticks = 0;
long max_trace_ticks = 1000;
uint64_t uart_tx_bytes = 0;
while (!Verilated::gotFinish() && max_trace_ticks > 0 && running) {
top->eval();
ticks ++;
if (ticks == 9) top->reset = 0;
top->clock = 1;
// posedge
mmio_sigs.update_input(mmio_ref);
mem_sigs.update_input(mem_ref);
top->eval();
ticks ++;
if (!top->reset) {
mem.beat(mem_sigs_ref);
mmio.beat(mmio_sigs_ref);
while (uart.exist_tx()) {
char c = uart.getc();
printf("%c",c);
fflush(stdout);
}
}
mmio_sigs.update_output(mmio_ref);
mem_sigs.update_output(mem_ref);
top->interrupts = uart.irq();
top->clock = 0;
}
top->final();
return 0;
}