Skip to content

Commit

Permalink
axi_lite_to_apb_intf: Add missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Eggimann authored and andreaskurth committed Jun 2, 2021
1 parent ff64755 commit 7ca76b1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed

### Fixed
- `axi_lite_to_apb_intf`: Add missing parameters, which were added to `axi_lite_to_apb` in v0.28.0.


## 0.29.0 - 2021-05-06
Expand Down
22 changes: 13 additions & 9 deletions src/axi_lite_to_apb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,8 @@ module axi_lite_to_apb_intf #(
parameter int unsigned NoRules = 32'd1, // Number of APB address rules
parameter int unsigned AddrWidth = 32'd32, // Address width
parameter int unsigned DataWidth = 32'd32, // Data width
parameter bit PipelineRequest = 1'b0, // Pipeline request path
parameter bit PipelineResponse = 1'b0, // Pipeline response path
parameter type rule_t = logic, // Address Decoder rule from `common_cells`
// DEPENDENT PARAMERETS, DO NOT OVERWRITE!
parameter type addr_t = logic [AddrWidth-1:0],
Expand Down Expand Up @@ -466,15 +468,17 @@ module axi_lite_to_apb_intf #(
end

axi_lite_to_apb #(
.NoApbSlaves ( NoApbSlaves ),
.NoRules ( NoRules ),
.AddrWidth ( AddrWidth ),
.DataWidth ( DataWidth ),
.axi_lite_req_t ( axi_req_t ),
.axi_lite_resp_t ( axi_resp_t ),
.apb_req_t ( apb_req_t ),
.apb_resp_t ( apb_resp_t ),
.rule_t ( rule_t )
.NoApbSlaves ( NoApbSlaves ),
.NoRules ( NoRules ),
.AddrWidth ( AddrWidth ),
.DataWidth ( DataWidth ),
.PipelineRequest ( PipelineRequest ),
.PipelineResponse ( PipelineResponse ),
.axi_lite_req_t ( axi_req_t ),
.axi_lite_resp_t ( axi_resp_t ),
.apb_req_t ( apb_req_t ),
.apb_resp_t ( apb_resp_t ),
.rule_t ( rule_t )
) i_axi_lite_to_apb (
.clk_i, // Clock
.rst_ni, // Asynchronous reset active low
Expand Down

0 comments on commit 7ca76b1

Please sign in to comment.