-
Notifications
You must be signed in to change notification settings - Fork 846
[prim] Remove primgen and replace with virtual cores #23555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
bafed35
7afa465
cb7e9af
5daabf5
1671c0d
1eb169c
8756abc
a9e685a
77f6c57
9408e98
2bd6e3c
538df97
a19d4d2
b3c6ed5
c328336
f2b10d0
c1d87e1
f8d40a8
5ac0f82
ce28a47
6bfe2ce
6590212
d32cc4d
f9a8b90
d75dc71
147d1a3
8948ae9
6e0c1ce
d7acec1
a1b1362
ed9ef0f
a5a8a0b
895a29b
ef7950d
93dc618
a09cbc7
417d599
23b6b2d
9c94224
ec22481
22fc03b
23ba6cf
5c8362f
61d4312
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,7 @@ fusesoc_build( | |
data = ["//hw/ip/otbn:rtl_files"], | ||
make_options = ":make_options", | ||
output_groups = { | ||
"binary": ["sim-verilator/Vchip_sim_tb"], | ||
"binary": ["lowrisc_dv_top_earlgrey_chip_verilator_sim_0.1/sim-verilator/Vchip_sim_tb"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When did these pathnames change? Are they wrong on master already? (if so, maybe we could split this out into a separate PR?) |
||
}, | ||
systems = ["lowrisc:dv:chip_verilator_sim"], | ||
tags = [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ interface prim_sparse_fsm_flop_if #( | |
string msg_id = $sformatf("%m"); | ||
|
||
string path = dv_utils_pkg::get_parent_hier($sformatf("%m")); | ||
string signal_forced = $sformatf("%s.u_state_flop.q_o", path); | ||
string signal_forced = $sformatf("%s.state_o", path); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To avoid having a "known broken state" in the history, should this commit be merged with the switch to virtual prim cores? |
||
|
||
// This signal only has to be forced if the associated parameter | ||
// CustomForceName in prim_sparse_fsm_flop is set to a non-empty string. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understand correctly, this commit is all to do with the change to the new FuseSoc version. Again, maybe we need to squash with that commit so that (we think) everything works at each commit?