Skip to content
Open
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
3 changes: 2 additions & 1 deletion Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sources:
- rtl/core/hci_core_mux_ooo.sv
- rtl/core/hci_core_r_valid_filter.sv
- rtl/core/hci_core_r_id_filter.sv
- rtl/core/hci_core_source.sv
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add this line back: it is not possible to use the old hci_core_source at the moment

- rtl/core/hci_core_source_v2.sv
- rtl/core/hci_core_split.sv
- rtl/interco/hci_log_interconnect.sv
- rtl/interco/hci_log_interconnect_l2.sv
Expand All @@ -42,6 +42,7 @@ sources:
- rtl/interco/hci_router_reorder.sv
# Level 3
- rtl/core/hci_core_sink.sv
- rtl/core/hci_core_sink_v2.sv
- rtl/interco/hci_router.sv
# Level 4
- rtl/hci_interconnect.sv
16 changes: 14 additions & 2 deletions rtl/common/hci_package.sv
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ package hci_package;
logic [7:0] low_prio_max_stall;
} hci_interconnect_ctrl_t;

typedef struct packed {

typedef struct packed {
logic req_start;
hwpe_stream_package::ctrl_addressgen_v3_t addressgen_ctrl;
} hci_streamer_ctrl_t;
Expand All @@ -60,8 +61,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;

endpackage // hci_package
2 changes: 1 addition & 1 deletion rtl/core/hci_core_sink.sv
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,4 @@ module hci_core_sink
`endif
`endif

endmodule // hci_core_sink
endmodule // hci_core_sink
Loading