A simple shim that converts between two AXI configs by removing write responses.
More...
#include <AxiRemoveWriteResponse.h>
|
| AxiRemoveWriteResponse (sc_module_name name) |
|
|
sc_in_clk | clk |
|
sc_in< bool > | rst |
|
axiM::read::template subordinate | axiM_read |
|
axiM::write::template subordinate | axiM_write |
|
axiS::read::template manager | axiS_read |
|
axiS::write::template manager | axiS_write |
|
template<typename CfgManager, typename CfgSubordinate, int maxInFlight>
class AxiRemoveWriteResponse< CfgManager, CfgSubordinate, maxInFlight >
A simple shim that converts between two AXI configs by removing write responses.
- Template Parameters
-
CfgManager | A valid AXI config describing the manager port, with write responses. |
CfgSubordinate | A valid AXI config describing the subordinate port, with no write responses. |
- Overview
- This block converts between an AXI manager that uses write responses and an AXI subordinate that does not use write responses. Most signals are simply passed through from manager to subordinate. When a write request is received from the manager, it is passed through to the subordinate, and a write response is also sent back to the manager.
- Apart from support for write responses, the two AXI configs must otherwise be the same.
- Usage Guidelines
This module sets the stall mode to flush by default to mitigate possible RTL bugs that can occur in the default stall mode. If you are confident that this class of bugs will not occur in your use case, you can change the stall mode via TCL directive:
A simple shim that converts between two AXI configs by removing write responses.
This may reduce area/power.
Definition at line 54 of file AxiRemoveWriteResponse.h.
The documentation for this class was generated from the following file: