Skip to content

Commit

Permalink
Changelog: Add ID width converter
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskurth committed Dec 6, 2021
1 parent 12ede0a commit 503e0f5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## Unreleased

### Added
- Add three modules to convert between two AXI ID widths under many different concurrency
requirements:
- `axi_iw_converter` is the top-level module that converts between any two AXI ID widths with all
supported parameters. It upsizes IDs by extending the MSBs with zeros and joins two interfaces
with identical ID widths. For downsizing IDs, it instantiates one of the following two modules:
- `axi_id_remap` remaps AXI IDs from wide IDs at the slave port to narrower IDs at the master
port without serializing transactions.
- `axi_id_serialize` reduces AXI IDs by serializing transactions when necessary.

### Changed

Expand Down

0 comments on commit 503e0f5

Please sign in to comment.