Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Thread IDs  





2 Handshake  





3 Channels  





4 AXI  



4.1  Signals  





4.2  Bursts  





4.3  Transactions  



4.3.1  Reads  





4.3.2  Writes  









5 AXI4-Lite  



5.1  Signals  







6 AXI-Stream  





7 See also  





8 References  





9 External links  














Advanced eXtensible Interface






Català

 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 




In other projects  



Wikimedia Commons
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


The Advanced eXtensible Interface (AXI) is an on-chip communication bus protocol and is part of the Advanced Microcontroller Bus Architecture specification (AMBA).[1][2] AXI had been introduced in 2003 with the AMBA3 specification. In 2010, a new revision of AMBA, AMBA4, defined the AXI4, AXI4-Lite and AXI4-Stream protocols. 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,[3] 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.[4]

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.[5][6]

Thread IDs[edit]

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, 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.

(Additionally, the AXI-lite bus is restricted to only support transaction lengths of a single data word per transaction.)

Handshake[edit]

Basic handshake mechanism of the AMBA AXI protocol. In this example, the destination entity waits for a high VALID to assert its own READY.

AXI defines a basic handshake mechanism, composed by an xVALID and xREADY signal.[7] 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 "beat".

Two main rules are defined for the control of these signals:

Thanks to this handshake mechanism, both the source and the destination can control the flow of data, throttling the speed if needed.

Channels[edit]

In the AXI specification, five channels are described:[8]

Other than some basic ordering rules,[9] each channel is independent from each other and has its own couple of xVALID/xREADY handshake signals.[10]

AXI read channels
AXI Read Address and Read Data channels.
AXI write channels
AXI Write Address, Write Data and Write Response channels.

AXI[edit]

Signals[edit]

Signals of the Read and Write Address channels
Signal description Write Address channel Read Address channel
Address ID, to identify multiple streams over a single channel AWID ARID
Address of the first bit of the burst AWADDR ARADDR
Number of bits inside the burst AWLEN[nb 1] ARLEN[nb 1]
Size of each bit AWSIZE ARSIZE
Type of the burst AWBURST ARBURST
Lock type, to provide atomic operations AWLOCK[nb 1] ARLOCK[nb 1]
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[nb 2] ARQOS[nb 2]
Region identifier, to access multiple logical interfaces from a single physical one AWREGION[nb 2] ARREGION[nb 2]
User-defined data AWUSER[nb 2] ARUSER[nb 2]
xVALID handshake signal AWVALID ARVALID
xREADY handshake signal AWREADY ARREADY
Signals of the Read and Write Data channels
Signal description Write Data channel Read Data channel
Data ID, to identify multiple streams over a single channel WID[nb 3] 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 bit identifier WLAST RLAST
User-defined data WUSER[nb 2] RUSER[nb 2]
xVALID handshake signal WVALID RVALID
xREADY handshake signal WREADY RREADY
Signals of the Write Response channel
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[nb 2]
xVALID handshake signal BVALID
xREADY handshake signal BREADY

[11]

  1. ^ a b c d Different behavior between AXI3 and AXI4
  • ^ a b c d e f g h i Available only with AXI4
  • ^ Available only with AXI3
  • Bursts[edit]

    Example of FIXED, INCR and WRAP bursts

    AXI is a burst-based protocol,[12] meaning that there may be multiple data transfers (or beats) 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 (for reads) or AWBURST (for writes):[13]

    In FIXED bursts, each beat within the transfer has the same address. This is useful for repeated access at the same memory location, such as when reading or writing a FIFO.

    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[edit]

    Reads[edit]

    Example of an AXI read transaction. The initiator requests 4 beats (ARLEN + 1[14]) of 4 Bytes each starting from address 0x0 with INCR type. The target returns 0x10 for address 0x0, 0x11 for address 0x4, 0x12 for address 0x8 and 0x13 for address 0xc, all with the OKAY status. Only the most relevant signals are shown here.

    To start a read transaction, the initiator has to provide on the Read address channel:

    Additionally, the other auxiliary signals, if present, are used to define more specific transfers.

    After the usual ARVALID/ARREADY handshake, the target has to provide on the Read data channel:

    plus any other optional signals. 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[edit]

    Example of an AXI write transaction. The initiator drives 4 beats (AWLEN + 1[14]) of 4 Bytes each starting from address 0x0 with INCR type, writing 0x10 for address 0x0, 0x11 for address 0x4, 0x12 for address 0x8 and 0x13 for address 0xc. The target returns 'OKAY' as write response for the whole transaction. Only the most relevant signals are shown here.

    To start a write operation, the initiator has to provide both the address information and the data ones.

    The address information are provided over the Write address channel, in a similar manner as a read operation:

    and, if present, all the optional signals.

    An initiator has also to provide the data related to the specified address(es) on the Write data channel:

    Like in the read path, on the last data word, WLAST has to be asserted by the initiator.

    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.

    AXI4-Lite[edit]

    AXI4-Lite is a subset of the AXI4 protocol, providing a register-like structure with reduced features and complexity.[15] Notable differences are:

    AXI4-Lite removes part of the AXI4 signals but follows the AXI4 specification for the remaining ones. Being a subset of AXI4, AXI4-Lite transactions are fully compatible with AXI4 devices, permitting the interoperability between AXI4-Lite initiators and AXI4 targets without additional conversion logic.[16]

    Signals[edit]

    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

    [17]

    AXI-Stream[edit]

    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:

    AXI5 Stream protocol introduces wake-up signaling and signal protection using parity.

    A single AXI Stream transmitter can drive multiple streams which maybe 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.

    See also[edit]

    References[edit]

    1. ^ "AMBA | Documentation". Arm Holdings.
  • ^ Toole, Christina (24 October 2016). "Introduction to AXI Protocol: Understanding the AXI interface". arm.com. Arm Limited. Retrieved 11 September 2023. The protocol used by many SoC designers today is AXI, or Advanced eXtensible Interface, and is part of the Arm Advanced Microcontroller Bus Architecture (AMBA) specification. It is especially prevalent in Xilinx's Zynq devices, providing the interface between the processing system and programmable logic sections of the chip.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 109–118. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 23–24. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ "AMBA AXI4 Interface Protocol". www.xilinx.com. Xilinx Inc.
  • ^ "AXI4 IP". www.xilinx.com. Xilinx Inc.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 37–38. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 22–23. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 40. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 38. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 28–34. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 22. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 45–47. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ a b Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 44. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. pp. 121–128. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 124. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • ^ Arm Holdings. "AMBA AXI and ACE Protocol Specification" (PDF). developer.arm.com. p. 122. Archived from the original (PDF) on 5 July 2019. Retrieved 5 July 2019.
  • External links[edit]


    Retrieved from "https://en.wikipedia.org/w/index.php?title=Advanced_eXtensible_Interface&oldid=1232397590"

    Categories: 
    Computer buses
    System on a chip
    Hidden categories: 
    Articles with short description
    Short description matches Wikidata
    Articles lacking reliable references from April 2022
    All articles lacking reliable references
    Articles with a promotional tone from April 2022
    All articles with a promotional tone
    Articles with multiple maintenance issues
    Articles needing additional references from May 2020
    All articles needing additional references
    Pages using multiple image with auto scaled images
    Webarchive template wayback links
     



    This page was last edited on 3 July 2024, at 14:48 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki