Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ sources:
- rtl/core/hci_core_r_valid_filter.sv
- rtl/core/hci_core_r_id_filter.sv
- rtl/core/hci_core_source.sv
- rtl/core/hci_core_source_v2.sv
- rtl/core/hci_core_split.sv
- rtl/ecc/hci_ecc_dec.sv
- rtl/ecc/hci_ecc_enc.sv
Expand All @@ -57,6 +58,7 @@ sources:
# Level 3
- rtl/core/hci_core_sink.sv
- rtl/ecc/hci_ecc_source.sv
- rtl/core/hci_core_sink_v2.sv
- rtl/interco/hci_router.sv
# Level 4
- rtl/ecc/hci_ecc_interconnect.sv
Expand Down
13 changes: 12 additions & 1 deletion rtl/common/hci_package.sv
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,19 @@ package hci_package;
hwpe_stream_package::flags_addressgen_v3_t addressgen_flags;
} hci_streamer_flags_t;

typedef struct packed {
logic valid;
hwpe_stream_package::ctrl_addressgen_v3_t addressgen_ctrl;
} hci_streamer_v2_ctrl_t;

typedef struct packed {
logic ready;
logic done;
hwpe_stream_package::flags_addressgen_v3_t addressgen_flags;
} hci_streamer_v2_flags_t;

typedef enum {
STREAMER_IDLE, STREAMER_WORKING, STREAMER_DONE
STREAMER_IDLE, STREAMER_PRESAMPLE ,STREAMER_WORKING, STREAMER_DONE
} hci_streamer_state_t;

typedef enum {
Expand Down
Loading