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
2 changes: 1 addition & 1 deletion hdk/common/verif/models/sh_bfm/sh_bfm.sv
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ module sh_bfm #(
input [NUM_PCIE-1:0] cl_sh_pcim_rready,

output logic[1:0] cfg_max_payload[NUM_PCIE-1:0], //Max payload size - 00:128B, 01:256B, 10:512B
output logic[2:0] cfg_max_read_req[NUM_PCIE-1:0], //Max read requst size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B
output logic[2:0] cfg_max_read_req[NUM_PCIE-1:0], //Max read request size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B
// 100b-2048B, 101b:4096B


Expand Down
4 changes: 2 additions & 2 deletions hdk/common/verif/tb/sv/tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module tb();
logic [1:0] sh_cl_pwr_state;

logic [1:0] cfg_max_payload[NUM_PCIE-1:0]; //Max payload size - 00:128B, 01:256B, 10:512B
logic [2:0] cfg_max_read_req[NUM_PCIE-1:0]; //Max read requst size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B
logic [2:0] cfg_max_read_req[NUM_PCIE-1:0]; //Max read request size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B

logic [31:0] sh_cl_ctl0;
logic [31:0] sh_cl_ctl1;
Expand Down Expand Up @@ -273,7 +273,7 @@ sh_bfm sh(
.cl_sh_pcim_rready(cl_sh_pcim_rready),

.cfg_max_payload(cfg_max_payload), //Max payload size - 00:128B, 01:256B, 10:512B
.cfg_max_read_req(cfg_max_read_req), //Max read requst size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B
.cfg_max_read_req(cfg_max_read_req), //Max read request size - 000b:128B, 001b:256B, 010b:512B, 011b:1024B
// 100b-2048B, 101b:4096B


Expand Down