-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathBender.yml
More file actions
56 lines (47 loc) · 1.75 KB
/
Bender.yml
File metadata and controls
56 lines (47 loc) · 1.75 KB
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
# 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: serial_link
authors:
- "Tim Fischer <fischeti@iis.ee.ethz.ch>"
- "Manuel Eggimann <meggimann@iis.ee.ethz.ch>"
- "Thomas Benz <tbenz@iis.ee.ethz.ch>"
- "Paul Scheffler <paulsc@iis.ee.ethz.ch>"
dependencies:
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.28.0 }
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.39.0 }
axi_stream: { git: "https://github.com/pulp-platform/axi_stream.git", version: 0.1.1 }
apb: { git: "https://github.com/pulp-platform/apb.git", version: 0.2.4 }
sources:
files:
# Configuration Registers
- src/regs/slink_reg_pkg.sv
- src/regs/slink_reg.sv
# General package
- src/slink_pkg.sv
# Abstraction Layers
- src/channel_allocator/slink_stream_chopper.sv
- src/channel_allocator/slink_stream_dechopper.sv
- src/channel_allocator/slink_channel_despread_sfr.sv
- src/channel_allocator/slink_channel_spread_sfr.sv
- src/channel_allocator/slink_ch_alloc.sv
- src/slink_prot_layer.sv
- src/slink_link_layer.sv
- src/slink_phys_layer.sv
# Serial Link main module
- include_dirs:
- src/include
files:
- src/slink.sv
# Wrapper for additional isolation
- src/slink_isolate.sv
- target: slink_test
include_dirs:
- src/regs
files:
- test/tb_axi_slink.sv
- test/tb_ch_calib_slink.sv
- test/tb_stream_chopper.sv
- test/tb_stream_chopper_dechopper.sv
- test/tb_channel_allocator.sv