-
Notifications
You must be signed in to change notification settings - Fork 24
/
Bender.yml
62 lines (58 loc) · 2.19 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
package:
name: register_interface
authors: ["Fabian Schuiki <[email protected]>", "Florian Zaruba <[email protected]>"]
dependencies:
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.39.1 }
apb: { git: "https://github.com/pulp-platform/apb.git", version: 0.2.2}
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.3 }
export_include_dirs:
- include
sources:
# Level 0
- src/reg_intf.sv
- vendor/lowrisc_opentitan/src/prim_subreg_arb.sv
- vendor/lowrisc_opentitan/src/prim_subreg_ext.sv
# Level 1
- src/apb_to_reg.sv
- src/axi_lite_to_reg.sv
- src/axi_to_reg_v2.sv
- src/periph_to_reg.sv
- src/reg_cdc.sv
- src/reg_cut.sv
- src/reg_demux.sv
- src/reg_err_slv.sv
- src/reg_filter_empty_writes.sv
- src/reg_mux.sv
- src/reg_to_apb.sv
- src/reg_to_mem.sv
- src/reg_to_tlul.sv
- src/reg_to_axi.sv
- src/reg_uniform.sv
- vendor/lowrisc_opentitan/src/prim_subreg_shadow.sv
- vendor/lowrisc_opentitan/src/prim_subreg.sv
# Level 2
- src/deprecated/axi_to_reg.sv
- target: test
files:
- src/reg_test.sv
- target: register_interface_test
files:
- src/test/test_regs_reg_pkg.sv
- src/test/test_regs_reg_top.sv
- src/test/tb_simple_registers.sv
vendor_package:
- name: lowrisc_opentitan
target_dir: "vendor/lowrisc_opentitan"
upstream: { git: "https://github.com/lowRISC/opentitan.git", rev: "47a0f4798febd9e53dd131ef8c8c2b0255d8c139" }
exclude_from_upstream:
- "ci/*"
patch_dir: "vendor/patches/lowrisc_opentitan"
mapping:
- {from: 'util/regtool.py', to: 'util/regtool.py', patch_dir: 'regtool'}
- {from: 'util/reggen', to: 'util/reggen', patch_dir: 'reggen'}
- {from: 'util/topgen', to: 'util/topgen'}
- {from: 'hw/ip/prim/rtl/prim_subreg.sv', to: 'src/prim_subreg.sv' }
- {from: 'hw/ip/prim/rtl/prim_subreg_arb.sv', to: 'src/prim_subreg_arb.sv' }
- {from: 'hw/ip/prim/rtl/prim_subreg_ext.sv', to: 'src/prim_subreg_ext.sv' }
- {from: 'hw/ip/prim/rtl/prim_subreg_shadow.sv', to: 'src/prim_subreg_shadow.sv' }