Advanced eXtensible Interface
The Advanced eXtensible Interface is an on-chip communication bus protocol and is part of the Advanced Microcontroller Bus Architecture specification. AXI is royalty-free and its specification is freely available from ARM.
AMBA AXI specifies many optional signals, which can be included depending on the specific requirements of the design, making AXI a versatile bus for numerous applications.
While the communication over an AXI bus is between a single initiator and a single target, the specification includes detailed descriptions and signals to include N:M interconnects, able to extend the bus to topologies with multiple initiators and targets.
AXI3 was introduced in 2003 with the AMBA3 specification. In 2010, a new revision of AMBA, AMBA4, defined the AXI4, AXI4-Lite and AXI4-Stream protocols. AMBA AXI4, AXI4-Lite and AXI4-Stream have been adopted by Xilinx and many of its partners as a main communication bus in their products. AMBA5 with AXI5 was released in 2022, adding atomicity, data protection, and cache operations. A new ACE is specified.
Thread IDs
Thread IDs allow a single initiator port to support multiple threads, where each thread has in-order access to the AXI address space, however each thread ID initiated from a single initiator port may complete out of order with respect to each other. For instance in the case where one thread ID is blocked by a slow peripheral, another thread ID may continue independently of the order of the first thread ID. Another example, one thread on a CPU may be assigned a thread ID for a particular initiator port memory access such as read addr1, write addr1, read addr1, and this sequence will complete in order because each transaction has the same initiator port thread ID. Another thread running on the CPU may have another initiator port thread ID assigned to it, and its memory access will be in order as well but may be intermixed with the first thread IDs transactions.Thread IDs on an initiator port are not globally defined, thus an AXI switch with multiple initiator ports will internally prefix the initiator port index to the thread ID, and provide this concatenated thread ID to the target device, then on return of the transaction to its initiator port of origin, this thread ID prefix will be used to locate the initiator port and the prefix will be truncated. This is why the target port thread ID is wider in bits than the initiator port thread ID.
AXI-Lite bus is an AXI bus that only supports a single ID thread per initiator. This bus is typically used for an end point that only needs to communicate with a single initiator device at a time, for example, a simple peripheral such as a UART. In contrast, a CPU is capable of initiating transactions to multiple peripherals and address spaces at a time, and will support more than one thread ID on its AXI initiator ports and AXI target ports. This is why a CPU will typically support a full spec AXI bus. A typical example of a front side AXI switch would include a full specification AXI initiator connected to a CPU initiator, and several AXI-Lite targets connected to the AXI switch from different peripheral devices.
Handshake
AXI defines a basic handshake mechanism, composed by anxVALID and xREADY signal. The xVALID signal is driven by the source to inform the destination entity that the payload on the channel is valid and can be read from that clock cycle onwards. Similarly, the xREADY signal is driven by the receiving entity to notify that it is prepared to receive data.When both the
xVALID and xREADY signals are high in the same clock cycle, the data payload is considered transferred and the source can either provide a new data payload, by keeping high xVALID, or terminate the transmission, by de-asserting xVALID. An individual data transfer, so a clock cycle when both xVALID and xREADY are high, is called a "beat".Two main rules are defined for the control of these signals:
- A source must not wait for a high
xREADYto assertxVALID. - Once
xVALIDis asserted, a source must maintain the assertion until a handshake occurs.
Channels
In the AXI specification, five channels are described:- Read Address channel
- Read Data channel
- Write Address channel
- Write Data channel
- Write Response channel
xVALID/xREADY handshake signals.AXI
Signals
| Signal description | Write Address channel | Read Address channel |
| Address ID, to identify multiple streams over a single channel | AWID | ARID |
| Address of the first beat of the burst | AWADDR | ARADDR |
| Number of beats inside the burst | AWLEN | ARLEN |
| Size of each beat | AWSIZE | ARSIZE |
| Type of the burst | AWBURST | ARBURST |
| Lock type, to provide atomic operations | AWLOCK | ARLOCK |
| Memory type, how the transaction has to progress through the system | AWCACHE | ARCACHE |
| Protection type: privilege, security level and data/instruction access | AWPROT | ARPROT |
| Quality of service of the transaction | AWQOS | ARQOS |
| Region identifier, to access multiple logical interfaces from a single physical one | AWREGION | ARREGION |
| User-defined data | AWUSER | ARUSER |
xVALID handshake signal | AWVALID | ARVALID |
xREADY handshake signal | AWREADY | ARREADY |
| Signal description | Write Data channel | Read Data channel |
| Data ID, to identify multiple streams over a single channel | WID | RID |
| Read/Write data | WDATA | RDATA |
| Read response, to specify the status of the current RDATA signal | RRESP | |
| Byte strobe, to indicate which bytes of the WDATA signal are valid | WSTRB | |
| Last beat identifier | WLAST | RLAST |
| User-defined data | WUSER | RUSER |
xVALID handshake signal | WVALID | RVALID |
xREADY handshake signal | WREADY | RREADY |
| Signal description | Write Response channel |
| Write response ID, to identify multiple streams over a single channel | BID |
| Write response, to specify the status of the burst | BRESP |
| User-defined data | BUSER |
xVALID handshake signal | BVALID |
xREADY handshake signal | BREADY |
Bursts
AXI is a burst-based protocol, meaning that there may be multiple data transfers for a single request. This makes it useful in the cases where it is necessary to transfer large amount of data from or to a specific pattern of addresses.In AXI, bursts can be of three types, selected by the signals ARBURST or AWBURST :
- FIXED
- INCR
- WRAP
In INCR bursts, on the other hand, each beat has an address equal to the previous one plus the transfer size. This burst type is commonly used to read or write sequential memory areas.
WRAP bursts are similar to the INCR ones, as each transfer has an address equal to the previous one plus the transfer size. However, with WRAP bursts, if the address of the current beat reaches the "Higher Address boundary", it is reset to the "Wrap boundary":
with
Transactions
Reads
To start a read transaction, the initiator has to provide on the Read address channel:- the start address on ARADDR
- the burst type, either FIXED, INCR or WRAP, on ARBURST
- the burst length on ARLEN.
After the usual ARVALID/ARREADY handshake, the target has to provide on the Read data channel:
- the data corresponding to the specified address on RDATA
- the status of each beat on RRESP
Each beat of the target's response is done with a RVALID/RREADY handshake and, on the last transfer, the target has to assert RLAST to inform that no more beats will follow without a new read request.
Writes
To start a write operation, the initiator has to provide both the address information and the data information.The address information is provided over the Write address channel, in a similar manner as a read operation:
- the start address has to be provided on AWADDR
- the burst type, either FIXED, INCR or WRAP, on AWBURST
- the burst length on AWLEN
An initiator has also to provide the data related to the specified address on the Write data channel:
- the data on WDATA
- the "strobe" bits on WSTRB, which conditionally mark the individual WDATA bytes as "valid" or "invalid"
After the completion of both the transactions, the target has to send back to the initiator the status of the write over the Write response channel, by returning the result over the BRESP signal.
Subsets
AXI-Lite
AXI4-Lite is a subset of the AXI4 protocol, providing a register-like structure with reduced features and complexity. Notable differences are:- all bursts are composed by 1 beat only
- all data accesses use the full data bus width, which can be either 32 or 64 bits
Signals
| Write address channel | Write data channel | Write response channel | Read address channel | Read data channel |
| AWVALID | WVALID | BVALID | ARVALID | RVALID |
| AWREADY | WREADY | BREADY | ARREADY | RREADY |
| AWADDR | WDATA | BRESP | ARADDR | RDATA |
| AWPROT | WSTRB | ARPROT | RRESP |
AXI-Stream
AXI4-Stream is a simplified, lightweight bus protocol designed specifically for high-speed streaming data applications. It supports only unidirectional data flow, without the need for addressing or complex handshaking. An AXI Stream is similar to an AXI write data channel, with some important differences on how the data is arranged:- no bursts, instead data is packed into packets, frames and data streams
- no limit on the data length which may be continuous
- data width can be any integer number of bytes
A single AXI Stream transmitter can drive multiple streams which may be interleaved but reordering is not permitted.
| Signal | Source | Width | Description |
| ACLK | Clock | 1 | ACLK is a global clock signal. All signals are sampled on the rising edge of ACLK. |
| ARESETn | Reset | 1 | ARESETn is a global reset signal. |
| TVALID | Transmitter | 1 | TVALID indicates the Transmitter is driving a valid transfer. A transfer takes place when both TVALID and TREADY are asserted. |
| TREADY | Receiver | 1 | TREADY indicates that a Receiver can accept a transfer. |
| TDATA | Transmitter | TDATA_WIDTH | TDATA is the primary payload used to provide the data that is passing across the interface. TDATA_WIDTH must be an integer number of bytes and is recommended to be 8, 16, 32, 64, 128, 256, 512 or 1024-bits. |
| TSTRB | Transmitter | TDATA_WIDTH/8 | TSTRB is the byte qualifier that indicates whether the content of the associated byte of TDATA is processed as a data byte or a position byte. |
| TKEEP | Transmitter | TDATA_WIDTH/8 | TKEEP is the byte qualifier that indicates whether content of the associated byte of TDATA is processed as part of the data stream. |
| TLAST | Transmitter | 1 | TLAST indicates the boundary of a packet. |
| TID | Transmitter | TID_WIDTH | TID is a data stream identifier. TID_WIDTH is recommended to be no more than 8. |
| TDEST | Transmitter | TDEST_WIDTH | TDEST provides routing information for the data stream. TDEST_WIDTH is recommended to be no more than 8. |
| TUSER | Transmitter | TUSER_WIDTH | TUSER is a user-defined sideband information that can be transmitted along the data stream. TUSER_WIDTH is recommended to be an integer multiple of TDATA_WIDTH/8. |
| TWAKEUP | Transmitter | 1 | TWAKEUP identifies any activity associated with AXI-Stream interface. |