Skip to content
Open
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
11 changes: 10 additions & 1 deletion src/obi_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,16 @@ package obi_pkg;
endfunction

/// The default OBI bus config.
localparam obi_cfg_t ObiDefaultConfig = obi_default_cfg(32, 32, 1, ObiMinimalOptionalConfig);
localparam obi_cfg_t ObiDefaultConfig = '{
UseRReady: 1'b0,
CombGnt: 1'b0,
AddrWidth: 32,
DataWidth: 32,
IdWidth: 1,
Integrity: 1'b0,
BeFull: 1'b1,
OptionalCfg: ObiMinimalOptionalConfig
};

function automatic obi_cfg_t mux_grow_cfg(obi_cfg_t ObiCfgIn, int unsigned NumManagers);
mux_grow_cfg = '{
Expand Down