-
Notifications
You must be signed in to change notification settings - Fork 21
/
Bender.yml
95 lines (87 loc) · 2.73 KB
/
Bender.yml
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
# Copyright 2023 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
package:
name: floo_noc
authors:
- "Michael Rogenmoser <[email protected]>"
- "Tim Fischer <[email protected]>"
dependencies:
idma: { git: "https://github.com/pulp-platform/iDMA.git", version: 0.6.2 }
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.35.0 }
common_verification: { git: "https://github.com/pulp-platform/common_verification.git", version: 0.2.3 }
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.39.3 }
axi_riscv_atomics: { git: "https://github.com/pulp-platform/axi_riscv_atomics.git", version: 0.8.2 }
export_include_dirs:
- hw/include
sources:
# Level 0
- hw/floo_pkg.sv
# Level 1
- hw/floo_cut.sv
- hw/floo_fifo.sv
- hw/floo_cdc.sv
- hw/floo_route_select.sv
- hw/floo_route_comp.sv
- hw/floo_vc_arbiter.sv
- hw/floo_wormhole_arbiter.sv
- hw/floo_simple_rob.sv
- hw/floo_rob.sv
- hw/floo_rob_wrapper.sv
- hw/floo_meta_buffer.sv
# Level 2
- hw/floo_nw_join.sv
- hw/floo_axi_chimney.sv
- hw/floo_nw_chimney.sv
- hw/floo_router.sv
# Level 3 (Wrappers)
- hw/floo_axi_router.sv
- hw/floo_nw_router.sv
# VC Router (Level 1)
- hw/vc_router_util/floo_credit_counter.sv
- hw/vc_router_util/floo_input_fifo.sv
- hw/vc_router_util/floo_input_port.sv
- hw/vc_router_util/floo_look_ahead_routing.sv
- hw/vc_router_util/floo_mux.sv
- hw/vc_router_util/floo_rr_arbiter.sv
- hw/vc_router_util/floo_sa_global.sv
- hw/vc_router_util/floo_sa_local.sv
- hw/vc_router_util/floo_vc_assignment.sv
- hw/vc_router_util/floo_vc_router_switch.sv
- hw/vc_router_util/floo_vc_selection.sv
# Level 2
- hw/floo_vc_router.sv
- hw/floo_nw_vc_chimney.sv
- hw/floo_nw_vc_router.sv
- target: test
include_dirs:
- hw/test/include
files:
# Level 0
- hw/test/floo_test_pkg.sv
# Level 1
- hw/test/floo_axi_test_node.sv
- hw/test/floo_axi_rand_slave.sv
- hw/test/floo_dma_test_node.sv
- hw/test/axi_reorder_compare.sv
- hw/test/axi_reorder_remap_compare.sv
- hw/test/axi_bw_monitor.sv
- hw/test/floo_hbm_model.sv
# Level 2
- hw/tb/tb_floo_axi_chimney.sv
- hw/tb/tb_floo_nw_chimney.sv
- hw/tb/tb_floo_router.sv
- hw/tb/tb_floo_rob.sv
- hw/tb/tb_floo_vc_router.sv
- target: all(test, axi_mesh)
include_dirs:
- hw/test/include
files:
- generated/floo_axi_mesh_noc.sv
- hw/tb/tb_floo_axi_mesh.sv
- target: all(test, nw_mesh)
include_dirs:
- hw/test/include
files:
- generated/floo_nw_mesh_noc.sv
- hw/tb/tb_floo_nw_mesh.sv