Skip to content

Commit

Permalink
frontend: Update descriptor-based frontend (#18, #26)
Browse files Browse the repository at this point in the history
* frontend: Create a dataflow-oriented descriptor-based iDMA frontend supporting prefetching. #18

* systems/cva6_desc: Various fixes #26

---------

Co-authored-by: Axel Vanoni <[email protected]>

Co-authored-by: iburaky-ids
  • Loading branch information
thommythomaso committed Oct 26, 2023
1 parent 2edb5bb commit af3a2e5
Show file tree
Hide file tree
Showing 25 changed files with 3,543 additions and 1,494 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ nonfree
working_dir
bender
morty
todo
14 changes: 11 additions & 3 deletions Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ sources:
- src/future/idma_improved_fifo.sv
- src/future/idma_legalizer_page_splitter.sv
- src/future/idma_legalizer_pow2_splitter.sv
- src/future/idma_reg_to_axi.sv

# Midends
- target: rtl
Expand All @@ -56,22 +57,28 @@ sources:
- target: rtl
files:
# Level 0
- src/frontend/desc64/idma_desc64_shared_counter.sv
- src/frontend/desc64/idma_desc64_ar_gen.sv
- src/frontend/desc64/idma_desc64_ar_gen_prefetch.sv
- src/frontend/desc64/idma_desc64_reader.sv
- src/frontend/desc64/idma_desc64_reader_gater.sv
- src/frontend/desc64/idma_desc64_reshaper.sv
- src/frontend/idma_transfer_id_gen.sv
# Level 1
- src/frontend/desc64/idma_desc64_reg_wrapper.sv
# Level 2
- src/frontend/desc64/idma_desc64.sv

- src/frontend/desc64/idma_desc64_top.sv
- src/frontend/desc64/idma_desc64_cva6_wrap.sv

# Synthesis wrappers
- target: synth
files:
# Level 0
- src/frontend/desc64/idma_desc64_synth_pkg.sv
- src/frontend/desc64/idma_desc64_cva6_synth_pkg.sv
- src/synth/idma_nd_backend_synth.sv
# Level 1
- src/frontend/desc64/idma_desc64_synth.sv
- src/frontend/desc64/idma_desc64_cva6_synth.sv

# Testbenches
- target: test
Expand All @@ -80,6 +87,7 @@ sources:
- test/tb_idma_improved_fifo.sv
- test/tb_idma_nd_backend.sv
- test/frontend/tb_idma_desc64.sv
- test/frontend/tb_idma_desc64_bench.sv
- test/future/idma_tb_per2axi.sv
- test/future/idma_obi_asserter.sv
- test/future/TLToAXI4.v
Expand Down
11 changes: 11 additions & 0 deletions jobs/jobs.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,5 +131,16 @@
"proc_id" : "rw_axi",
"testbench": "tb_idma_nd_backend",
"synth_top": "idma_nd_backend_synth"
},
"frontend-descriptor": {
"seed" : 1336,
"jobs" : {
"simple" : ""
},
"params" : {
},
"proc_id" : "rw_axi",
"testbench" : "tb_idma_desc64_top",
"synth_top" : "idma_desc64_synth"
}
}
4 changes: 2 additions & 2 deletions src/frontend/desc64/idma_desc64.hjson
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright 2022 ETH Zurich and University of Bologna.
// Copyright 2023 ETH Zurich and University of Bologna.
// Solderpad Hardware License, Version 0.51, see LICENSE for details.
// SPDX-License-Identifier: SHL-0.51

// Authors:
// - Axel Vanoni <axvanoni@student.ethz.ch>
// - Axel Vanoni <[email protected]>

{
name: idma_desc64
Expand Down
Loading

0 comments on commit af3a2e5

Please sign in to comment.