forked from pulp-platform/axi_llc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bender.yml
55 lines (49 loc) · 1.85 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
# Copyright 2022 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
package:
name: axi_llc
authors:
- "Thomas Benz <[email protected]>" # current maintainer
- "Wolfgang Roenninger <[email protected]>"
dependencies:
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.37.0 }
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.21.0 }
common_verification: { git: "https://github.com/pulp-platform/common_verification.git", version: 0.2.0 }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.2.9 }
sources:
# Source files grouped in levels. Files in level 0 have no dependencies on files in this
# package. Files in level 1 only depend on files in level 0, files in level 2 on files in
# levels 1 and 0, etc. Files within a level are ordered alphabetically.
# Level 0
- src/axi_llc_demux.sv
- src/axi_llc_pkg.sv
- src/axi_llc_burst_cutter.sv
- src/axi_llc_data_way.sv
- src/axi_llc_merge_unit.sv
- src/axi_llc_read_unit.sv
- src/axi_llc_write_unit.sv
- src/eviction_refill/axi_llc_ax_master.sv
- src/eviction_refill/axi_llc_r_master.sv
- src/eviction_refill/axi_llc_w_master.sv
- src/hit_miss_detect/axi_llc_evict_box.sv
- src/hit_miss_detect/axi_llc_lock_box_bloom.sv
- src/hit_miss_detect/axi_llc_miss_counters.sv
- src/hit_miss_detect/axi_llc_tag_pattern_gen.sv
# Level 1
- src/axi_llc_chan_splitter.sv
- src/axi_llc_evict_unit.sv
- src/axi_llc_refill_unit.sv
- src/axi_llc_ways.sv
- src/hit_miss_detect/axi_llc_tag_store.sv
# Level 2
- src/axi_llc_config.sv
- src/axi_llc_hit_miss.sv
# Level 3
- src/axi_llc_top.sv
- target: test
include_dirs:
- test
files:
# Level 0:
- test/tb_axi_llc.sv