Skip to content

Latest commit

 

History

History
1208 lines (871 loc) · 48.9 KB

amba.md

File metadata and controls

1208 lines (871 loc) · 48.9 KB

AMBA APB, AHB and AXI

from a practical point of view

rodrigomelo9.github.io/amba

Rodrigo Alejandro Melo

Creative Commons Attribution 4.0 International


Introduction

While delving into the AMBA specifications, it's worth noting that they can be challenging to understand. In most cases, not all features are essential, and waveforms are often limited or no provided at all. Although tutorials are available, they typically represent adaptations of the spec, lacking real-world context.

Our focus in this presentation is on AMBA interfaces commonly present in SoC IPs. We'll assume the interconnect is already addressed, cutting through the complexity and providing practical insights for system design.

If you still want to start from AMBA specs, I recommend APB4, AHB3 and AXI4.


Outline


AMBA

Advanced Microcontroller Bus Architecture


Description

AMBA is a freely available, globally adopted, open standard for the connection and management of functional blocks in a System-on-Chip (SoC). It facilitates right-first-time development of multiprocessor designs, with large numbers of controllers and peripherals.


AMBA specifications

AMBA AMBA2 AMBA3 AMBA4 AMBA5
AXI4-Stream
(2010)
AXI5-Stream
(2021)
Advanced
eXtensible
Interface
AXI3
(2003/4)
AXI4
AXI4-Lite
(2010)
AXI5
AXI5-Lite
(2017/21)
Advanced
High-performance
Bus
AHB
(1999)
AHB-Lite
(2006)
AHB5
AHB5-Lite
(2015/21)
Advanced
System
Bus
ASB
(1996)
ASB
(1996)
Advanced
Peripherals
Bus
APB
(1996)
APB2
(1999)
APB3
(2003/4)
APB4
(2010)
APB5
(2021)

ATTENTION: ASB and the first APB are deprecated (shouldn't be used in new designs).


Terminology

Term Description
Interface APB, AHB, AXI (a core could have multiple)
Channel Independent collection of AXI signals associated to a VALID
Bus Multi-bit signal (not an interface, not a channel)
Transfer (aka beat) single clock cycle, qualified by a VALID/READY handshake
Transaction Complete communication, with one or more transfers
Burst Transaction with more than one transfer
Manager Agent that initiates transactions (aka requester, transmitter)
Subordinate Agent that receives and responds to requests (aka completer, receiver)

General considerations

  • All signals are sampled at the rising edge of xCLK.
  • xRESETn is the only active low signal.

Exit from RESET

  • xADDR indicates a byte address.

ATTENTION: TRANSFERS are initiated by M, finished by S, and CAN'T BE CANCELED!!!


APB

Advanced Peripherals Bus


Description

A low-cost interface, optimized for minimal power consumption and reduced complexity. It is not pipelined and is a simple, synchronous protocol. Every transfer takes at least two cycles to complete.

Main uses:

  • Low bandwidth/speed peripherals
  • Control/Status registers

APB signals

APB2 APB3 APB4 APB5 Default Description
PCLK Y Y Y Y Clock
PRESETn Y Y Y Y Reset
PADDR[A-1:0] Y Y Y Y Address (up to 32 bits)
PSELx Y Y Y Y COMPLETER x selected
PENABLE Y Y Y Y Enable
PWRITE Y Y Y Y Write operation
PWDATA[D-1] Y Y Y Y Write Data. (8, 16 or 32 bits)
PRDATA[D-1] Y Y Y Y Read Data (8, 16 or 32 bits)
PREADY O O O 1'b1 Indicates the completion of a transfer
PSLVERR O O O 1'b0 Indicates an error condition
PPROT[2:0] O O '0 Normal, privileged, or secure protection level
PSTRB[D/8-1:0] O O '1 Write Strobe (bytes to update during a write)
PWAKEUP O Wake-up
PxUSER[] O User defined attribute
PxCHK O Parity protection (for safety-critical applications)

APB4-S interface

APB-S interface


APB4 Signaling

APB Signaling


APB3 - PREADY

  • COMPLETER can use PREADY to extend (introduce wait states) transfers.
  • Peripherals with fixed two-cycle access can set PREADY always HIGH.

APB3 - PSLVERR

  • Can be used to indicate an ERROR condition (error, unsupported, timeout, etc).
  • A WRITE transaction with ERROR, might or might not have updated the state of the peripheral.
  • A READ transaction with ERROR, might or might not provide valid data.

APB4 - PSTRB

  • Enables sparse data transfer on the write data bus
  • There is one bit per each byte of PWDATA
    • PSTRB[n] -> PWDATA[(8n + 7):(8n)]
  • When asserted HIGH, the corresponding byte of PWDATA contains valid information

During read transfers, all the bits of PSTRB must be driven LOW.


APB4 - PPROT

  • PPROT[0]: Normal or Privileged
  • PPROT[1]: Secure or Non-secure
  • PPROT[2]: Data or Instruction
  • The primary use of PPROT is as an identifier for Secure or Non-secure transactions (it is acceptable to use different interpretations for PPROT[0] and PPROT[2]).
  • PPROT[2] is provided as a hint, but might not be accurate in all cases.
  • ATTENTION: a wrong value on PPROT can lead to an incorrect system behavior.

Unaligned transfers

PADDR can be unaligned, but the result is UNPREDICTABLE (COMPLETER may utilize the unaligned address, aligned address, or indicate an error response).


Validity rules

Always PSEL PSEL & PENABLE PSEL & PENABLE & PREADY
PSEL PENABLE PREADY PRDATA
PADDR PSLVERR
PPROT
PSTRB
PWDATA
  • Until APB4: it is recommended that address and write signals not be changed immediately after a transfer, but remain stable until the next one (this reduces power consumption).
  • APB5: signals that are not required to be valid should be driven to zero.

AHB

Advanced High-performance Bus


Description

A high-performance, high-bandwidth, interface, that supports burst data transfers. It is a pipelined, synchronous protocol.

Main uses:

  • Internal memory devices
  • External memory interfaces
  • High-bandwidth peripherals

AHB signals

AHB2 AHB-Lite AHB5 Default Description
HCLK Y Y Y Clock
HRESETn Y Y Y Reset
HADDR[] Y Y Y Address (32-bits, between 10 and 64 in AHB5)
HSELx Y Y Y Selected (combinatorial decode of the address bus)
HTRANS[1:0] Y Y Y Transfer type (IDLE, BUSY, NONSEQ, SEQ)
HWRITE Y Y Y Write operation
HSIZE[2:0] Y Y Y Size of the transfer (2^SIZE bytes)
HBURST[2:0] O O O 3'b001 Burst length and address increments
HPROT[3:0] O O O 4'b0011 Protection level
HWDATA[] Y Y Y WR (8, 16, 32, 64, 128, 256, 512, 1024 bits)
HRDATA[] Y Y Y RD (8, 16, 32, 64, 128, 256, 512, 1024 bits)
HWSTRB[D/8-1] O (AMBA5) O '1 Write Strobe (bytes to update during a write)
HREADY Y Y Y (IN) other transfers completed
HRESP Y [1:0] Y Y Transfer response
HBUSREQx Y Bus required
HLOCKx Y Locked access required
HGRANTx Y Locked access has the highest priority
HMASTER[] O [3:0] O [7:0] '0 Manager identifier
HMASTLOCK O O O 1'b0 Current transfer is part of a locked sequence
HSPLITx[15:0] Y M to re-attempt a split transaction
HREADYOUT Y Y (OUT) transfer has finished
HNONSEC O 1'b0 Indicates Non-secure transaction
HEXCL O 1'b0 Exclusive Access
HEXOKAY O 1'b0 Exclusive Okay
HxUSER[] O User defined attribute
HxCHKx O Parity protection (for safety-critical applications)

AHB-Lite interfaces

AHB interface


AHB-Lite interconnection

AHB interconnection

  • HSELx, HADDR and control must be sampled when HREADY is HIGH (previous transfer is completed).
    • A SUBORDINATE cannot request that the address phase be extended.
  • HREADYOUT is driven during the data phase: LOW extends the transfer; HIGH finishes the transfer.
  • The INTERCONNECT is responsible for combining all the HREADYOUT to generate a single HREADY (aka HREADYIN).

AHB-Lite Signaling (basic transfers)

AHB basic transfers signaling


AHB-Lite Signaling (multiple transfers)

AHB multiple transfers signaling

Extending the data phase of transfer B has the effect of extending the address phase of transfer C.


AHB - HTRANS (transfer types)

HTRANS[1:0] Type Description
2'b00 IDLE No data transfer is required
2'b01 BUSY Insert idle cycles in the middle of a burst (address and control signals must reflect the next transfer in the burst)
2'b10 NONSEQ Single transfer or first transfer of a burst (address and control signals are unrelated to the previous transfer)
2'b11 SEQ Remaining transfers in a burst (control information is identical to the previous transfer, address is adjusted)

During a waited transfer:

  • HTRANS can change from IDLE to NONSEQ. When it changes to NONSEQ, it must keep constant until HREADY is HIGH.
  • For a fixed-length burst, HTRANS can change from BUSY to NONSEQ. When it changes to SEQ, it must keep constant until HREADY is HIGH.
  • During an INCR, HTRANS can change from BUSY to any other transfer type. The burst continues if a SEQ is performed but terminates in other cases.

AHB - HSIZE (transfer size)

Indicates the size (bytes) of a data transfer (must be less than or equal to the width of the data bus).

HSIZE[2:0] Bytes
3'b000 1
3'b001 2
3'b010 4
3'b011 8
3'b100 16
3'b101 32
3'b110 64
3'b111 128
  • HSIZE must remain constant during a burst transfer.
  • SIZE = 2^HSIZE (or 1<<HSIZE).

AHB - HBURST (burst types)

HBURST[2:0] Type Description
3'b000 SINGLE Single burst
3'b001 INCR Incrementing burst of undefined length
3'b010 WRAP4 Wrapping burst (4 beats)
3'b011 INCR4 Incremental burst (4 beats)
3'b100 WRAP8 Wrapping burst (8 beats)
3'b101 INCR8 Incremental burst (8 beats)
3'b110 WRAP16 Wrapping burst (16 beats)
3'b111 INCR16 Incremental burst (16 beats)
  • Managers must not attempt to start an incrementing burst that crosses a 1KB address boundary.
  • The total amount of data transferred in a burst is calculated multiplying the number of beats by the amount of data (as indicated by HSIZE[2:0]).
  • Transfers in a burst must be aligned to the address boundary (as indicated by HSIZE[2:0]).
  • Wrapping bursts wrap when they cross an address boundary (BEATS x SIZE).

AHB - WRAP4/INCR4 example

AHB WRAP4/INCR4 example


AHB - Undefined INCR example

AHB undefined INCR example

HADDR increment when HBURST > 0 depends on HSIZE.


AHB - HRESP (transfer response)

HRESP is used to indicate an ERROR condition. OKAY response can be given in a single cycle, but for ERROR two cycles are required. In the first cycle, HREADY must be LOW, and HIGH in the second. The two cycles are needed because of the pipelined nature of the bus (when ERROR response starts, the address of the following transfer is already available).

AHB response

  • In case of IDLE and BUSY, a zero wait state OKAY response must always provide, and the transfer must be ignored.
  • If an ERROR response is received, the remaining transfers in a burst can be canceled, but it is also acceptable to continue.

AHB5 - HWSTRB

  • Enables sparse data transfer on the write data bus
  • There is one bit per each byte of HWDATA
    • HWSTRB[n] -> HWDATA[(8n + 7):(8n)]
  • When asserted HIGH, the corresponding byte of HWDATA contains valid information
  • During read transfers, it is recommended that write strobes are deasserted.
  • Write transfers with all HWSTRB deasserted are permitted (no bytes are written).
  • HWSTRB can change between beats of a burst.

AHB - HPROT

  • HPROT[0]: Data/Opcode
  • HPROT[1]: Privileged
  • HPROT[2]: Buffereable
  • HPROT[3]: Cacheable
  • HPROT must remain constant during a burst transfer.
  • A subordinate shouldn't use HPROT unless absolutely necessary.
  • ATTENTION: a wrong value on HPROT can lead to an incorrect system behavior.

AHB - HMASTLOCK (locked transfers)

Indicates that the current transfer sequence is indivisible (typically used to maintain the integrity of a semaphore).

AHB locked transfers

After a locked transfer, it is recommended to insert an IDLE transfer.


The full picture

AHB full signaling


Unaligned transfers

"All transfers in a burst must be aligned to the address boundary equal to the size of the transfer".

Nothing more is said in the specification about unaligned transfers.


AHB2 - HRESP

HRESP was 2 bits wide in AHB2, to support SPLIT and RETRY, something that was removed on AMBA3.


Validity rules

Always HTRANS!=IDLE WR data phase RD data phase & HREADYOUT & !HRESP
HSEL HBURST HWDATA HRDATA
HADDR HSIZE HWSTRB
HTRANS HPROT
HMASTLOCK HWRITE
HREADY[OUT]
HRESP
  • Signals which are not required to be valid can take any value, but 0 or X are recommended.
  • In data transfers with invalid byte lanes, it is recommended that those be 0.

AXI

Advanced eXtensible Interface


Flavours

  • Full: memory-mapped high-performance interface (higher than AHB), that supports burst transactions.
  • Lite: a lightweight/simpler interface, without burst support, mainly intended for Control/Status registers.
  • Stream: a reduced high-performance streaming interface, for unidirectional data transfer.

AXI Channels

AXI Channels

Each channel transfers INFO in one direction, and there isn't a fixed relationship between channels, so registers (for timing closure) can be inserted in any channel, at the expense of an additional cycle of latency.


AXI Handshake

AXI Handshake

  • Each independent channel consists of INFO plus VALID and READY signals that provide a two-way handshake mechanism.
  • The source uses the xVALID signal to indicate valid INFO is available on the channel.
    • It is not permitted to wait until xREADY is asserted before asserting xVALID.
    • When asserted, it must remain asserted until the slave asserts xREADY.
  • The destination uses the xREADY signal to accept INFO.
    • It is permitted to wait for xVALID to be asserted before asserting the corresponding xREADY.
    • If xREADY is asserted, it is permitted to deassert xREADY before xVALID is asserted.
    • Its default value can be HIGH or LOW, but HIGH is recommended
  • During reset, xVALID must be LOW.
    • All other signals can be driven to any value.

ATTENTION: there must be no combinatorial paths between input and output signals.


Dependencies between channel handshake signals

AXI Channels dependencies

  • Single arrows point to signals that can be asserted before of after the signal at the start of the arrow.
  • Double arros point to signals that must be assserted only after assertion of the signal at the start of the arrow.

ATTENTION: dependency rules must be observed to prevent a deadlock condition.


Reasons for multiple channels

Most systems use one of three interconnect topologies:

  1. Shared address and data buses
  2. Shared address buses and multiple data buses
  3. Multiple address and data buses

Having channels, we can use the second alternative to achieve a good balance between system performance and interconnect complexity.


AXI-Full


Description

An interface for high-performance, high-frequency system designs, suitable for high-bandwidth and low-latency. Provides high-frequency operation without using complex bridges, and flexibility in the implementation of interconnect architectures.

  • Separate address/control and data phases
  • Support for unaligned data transfers, using byte strobes
  • Uses burst-based transactions with only the start address issued
  • Separate read and write data channels, that can provide low-cost DMA
  • Support for issuing multiple outstanding addresses
  • Support for out-of-order transaction completion
  • Permits easy addition of register stages to provide timing closure

AXI-Full signals

Write Address Channel Write Data Channel Read Address Channel Read Data Channel
AWID[] WID[] -- REM ARID[] RID[]
AWADDR[] WDATA[] ARADDR[] RDATA[]
AWLEN[7:0] -- MOD WSTRB[] ARLEN[7:0] -- MOD RRESP[1:0]
AWSIZE[2:0] WLAST ARSIZE[2:0] RLAST
AWBURST[1:0] WUSER[] -- NEW ARBURST[1:0] RUSER[] -- NEW
AWLOCK -- MOD WVALID ARLOCK -- MOD RVALID
AWCACHE[3:0] -- MOD WREADY ARCACHE[3:0] -- MOD RREADY
AWPROT[2:0] Write Response Channel ARPROT[2:0]
AWQOS[3:0] -- NEW BID[] ARQOS[3:0] -- NEW
AWREGION[3:0] -- NEW BRESP[1:0] ARREGION[3:0] -- NEW
AWUSER[] -- NEW BUSER[] -- NEW ARUSER[] -- NEW Global signals
AWVALID BVALID AWVALID ACLK
AWREADY BREADY AWREADY ARESETn
  • AXI3: AxLEN[3:0]; AxLOCK[1:0].
  • AXI4: removed WID; modified meaning of AxCACHE[3:1]; added AxQOS, AxREGION and xUSER.
  • AXI5: several signals added (not only parity).

AXI-Full signals description

Signal Description
[A]xID Transaction identifiers (ordering)
AxLEN Burst length (AxLEN + 1)
AxSIZE 1, 2, 4, 8, 16, 32, 64, 128 bytes of the beat (2^AxSIZE)
AxBURST FIXED, INCR, WRAP, reserved
AxPROT Protection type (un/privileged, non/secure, data/instruction access)
AxCACHE Indicates Bufferable, Modifiable and Allocate attributes
AxLOCK Normal, exclusive or locked (AXI3) access
WSTRB Write strobe, indicates valid bytes
xLAST Indicates last beat in the burst
xRESP OKAY, EXOKAY (exclusive), SLVERR (SLaVe ERRor), DECERR (DECode ERRor)
AxQOS Quality of Service
AxREGION Up to 16 regions for the address decode
[A]xUSER User-defined (not recommended)

Where x is W/B for WRITES and R for READS.


AXI4-Full interface

AXI4 interface


AXIF Signaling (Single Transfers)

AXIF Signaling


AXIF - AxLEN - Burst Length

Indicates the length (quantity of transfers) in a burst.

  • Burst Length = AxLEN + 1
  • AXI3 (AxLEN[3:0]) supports 1 to 16 transfers for all burs types.
  • AXI4 (AxLEN[7:0]) extends INCR to 256 transfers.

AXIF - AxSIZE - Transfer Size

Indicates the size (bytes) of a data transfer (must be less than or equal to the width of the data bus).

AxSIZE[2:0] Bytes
3'b000 1
3'b001 2
3'b010 4
3'b011 8
3'b100 16
3'b101 32
3'b110 64
3'b111 128
  • Transfer Size = 2^AxSIZE (or 1<<AxSIZE).

AXIF - AxBURST - Burst Type

AxBURST[1:0] Response
00 FIXED: the address is the same for every transfer in the burst (FIFO-like accesses).
01 INCR: the address is incremented (based on AxSIZE) for every transfer in the burst (sequential memory accesses).
10 WRAP: similar to INCR, but the address wraps around to a lower address if an upper address limit is reached. The start address must be aligned to the SIZE of each transfer. The LENGTH must be 2, 4, 8, or 16.
11 Reserved

AXIF - WSTRB - Write Strobe

  • Enables sparse data transfer on the write data bus
  • There is one bit per each byte of WDATA
    • WSTRB[n] -> WDATA[(8n + 7):(8n)]
  • When asserted HIGH, the corresponding byte of WDATA contains valid information

When WVALID is LOW, WSTRB can take any value but it is recommended to be driven LOW or held at their previous value.


AXIF - xLAST - Last Transfer

Indicates the last transfer in a burst.

  • It must be asserted in the source.
  • It is not required in the destination (can be calculated based on AxLEN).

AXIF - xRESP - Transfer response

xRESP[1:0] Response
00 OKAY: normal access success (or the failure of an exclusive access, also when not supported)
01 EXOKAY: exclusive access success
10 SLVERR: destination was reached, but it wants to return an ERROR condition (e.g., overrun/underrun, unsupported transfer size, write access attempted to read-only location, timeout, access attempted to a disabled or powered-down function)
11 DECERR: DECode ERRor, typically generated by an interconnect, to indicate that there is nothing at the transaction address (the specification recommends routing a default device, being it charge of returns this response)
  • In write transactions there is a single response for the entire burst.
  • In read transactions there is one response for each transfer of a burst.
  • The specification requires that all data transfers for a transaction must be performed, even if an error occurs.

AXIF Signaling (Write Burst)

AXIF Write Burst examples


AXIF Signaling (Read Burst)

AXIF Read Burst examples


AXIF - AWID/WID/BID/ARID/RID


AXIF - AxPROT - Access permissions

  • AxPROT[0]: Un/privileged
  • AxPROT[1]: Secure or Non-secure
  • AxPROT[2]: Data or Instruction
  • AxPROT[2] is provided as a hint, but might not be accurate in all cases.
  • ATTENTION: a wrong value on AxPROT can lead to an incorrect system behavior.

AXIF - AxCACHE

Specifies the Bufferable, Modifiable, and Allocate attributes of the transaction.

  • AxCACHE[0]: Non/Bufferable
  • AxCACHE[1]: Non/Modifiable
  • AxCACHE[2]: Other-Allocate
  • AxCACHE[3]: Allocate
  • Bufferable: when asserted, the write response can be obtained from the interconnect (posted writes).
  • Modifiable: indicates that the characteristics of the transaction can be modified.
  • See the spec. for more details about AxCACHE[3:1].

AXIF - AxLOCK


Unaligned transfers

In any burst where data transfers are wider than one byte, the first bytes accessed might be unaligned with the natural address boundary.

  • An AXI-M can use the low-order address bits, or provide an aligned address and use write strobe.
  • An AXI-S is not required to take any special action based on alignment information.

Narrow transfers

Transfers narrower (AxSIZE) than the data (xDATA) bus size.

31:24 23:16 15:08 07:00 Transfer
0x00 1st
0x01 2nd
0x02 3rd
0x03 4th
0x05 5th

Example: 5 x 8-bits INCR transfers in a 32-bits bus (Narrow burst).


Unaligned narrow transfers

63:56 55:48 47:40 39:32 31:24 23:16 15:08 07:00 Transfer
0x07 1st
0x0B 0x0A 0x09 0x08 2nd
0x0F 0x0E 0x0D 0x0C 3rd
0x1B 0x1A 0x19 0x18 4th
0x1F 0x1E 0x1D 0x1C 5th

Example: 5 x 32-bits INCR transfers in a 64-bits bus, starting from address 7.


AXI - AxQOS - Quality of Service

  • The exact use is not specified, but it is recommended as a priority indicator for the associated transaction
  • A higher value indicates a higher priority (but ordering rules take precedence)
  • A 0 value (default) indicates that the interface is not participating in any QoS scheme
  • Support for this feature requires a system-level understanding, and collaboration between participating components (programmability recommended).
  • Additional interpretations of the QoS identifier can be used.

AXI - AxREGION - Region Identifier

Allows a single physical AXI-S interface to be used as multiple logical interfaces, providing a decode of higher-order address bits.

  • An IP can have its data path and control registers at different locations in the address map, and be accessed through a single interface.
  • An IP can exhibit different behaviors in different memory regions (e.g., read/write access in one region, but read-only access in another region).
  • See the spec. for more details about AxREGION[3:0].

AXI - AWUSER/WUSER/BUSER/ARUSER/RUSER

  • It is recommended not to use the User Defined Signals because have no defined uses, which can lead to interoperability issues
  • When implemented it is not required to support all the channels
  • Its width is implementation-defined and can be different for each channel

AXI-Lite


Description

A subset of AXI for communication with simpler control register-style interfaces.


AXI-Lite signals

Write Address Channel Write Data Channel Read Address Channel Read Data Channel
AWADDR[] WDATA[] ARADDR[] RDATA[]
AWPROT[2:0] WSTRB[] ARPROT[2:0] RRESP[1:0]
AWVALID WVALID AWVALID RVALID
AWREADY WREADY AWREADY RREADY
Write Response Channel
BRESP[1:0] Global signals
BVALID ACLK
BREADY ARESETn
  • xDATA can be 32-bit or 64-bit wide.
  • AXI5-lite: several signals added, for parity and more flexibility on bus width and ordering.
Signal Description
AxPROT Protection type (un/privileged, non/secure, data/instruction access)
WSTRB Write strobe, indicates valid bytes
xRESP OKAY, SLVERR (Slave ERROR), DECERR (Decode ERROR)

AXI4-Lite interface

AXI4-Lite interface


AXIL Signaling

AXIL Signaling


AXIL - AxPROT - Protection type

  • AxPROT[0]: Un/privileged
  • AxPROT[1]: Secure or Non-secure
  • AxPROT[2]: Data or Instruction
  • AxPROT[2] is provided as a hint, but might not be accurate in all cases.
  • ATTENTION: a wrong value on AxPROT can lead to an incorrect system behavior.

AXIL - WSTRB - Write Strobe

  • Enables sparse data transfer on the write data bus
  • There is one bit per each byte of WDATA
    • WSTRB[n] -> WDATA[(8n + 7):(8n)]
  • When asserted HIGH, the corresponding byte of WDATA contains valid information

When WVALID is LOW, WSTRB can take any value but it is recommended to be driven LOW or held at their previous value.


AXIL - xRESP - Transfer response

xRESP[1:0] Response
00 OKAY: normal access success
01 Reserved (AXIF)
10 SLVERR: destination was reached, but it wants to return an ERROR condition (e.g., overrun/underrun, unsupported transfer size, write access attempted to read-only location, timeout, access attempted to a disabled or powered-down function)
11 DECERR: DECode ERRor, typically generated by an interconnect, to indicate that there is nothing at the transaction address (the specification recommends routing a default device, being it charge of returns this response)

AXI-Stream


Description

A point-to-point protocol, connecting a single Transmitter with a single Receiver.


AXI-Stream signals

AXI4-Stream AXI5-Stream Description
ACLK ACLK Clock
ARESETn ARESETn Reset
TVALID TVALID Valid
TREADY TREADY Ready
TDATA[D-1:0] TDATA[D-1:0] D: 8, 16, 32, 64, 128, 256, 512, 1024 (bits)
TSTRB[] TSTRB[] Indicates is the associated byte is a data byte or a position byte
TKEEP[] TKEEP[] Indicates which bytes must be transported to the destination
TLAST TLAST Indicates the boundary of a packet
TID[] TID[] Data stream identifier
TDEST[] TDEST[] Provides routing information
TUSER[] TUSER[] User-defined sideband information
TWAKEUP Wake-up
T*CHK Parity (for safety)

AXI4-Stream interface

AXI4-Stream interface

AXI-Stream is comparable with the WRITE DATA CHANNEL.


Interconnect


Buses

Bus


Crossbar switches

Crossbar


Network-on-Chip (NoC)

NoC


Final remarks


Performance comparison

Performance


Interoperability principles

Components must support all combinations of inputs, but do not have to generate all combinations of outputs.

  • Example: a Subordinate must support all the possible burst lengths, but a Manager only has to generate the types of burst that it uses.
  • ATTENTION: if it is not TRUE, it should be well documented!

Default subordinate (AHB/AXI)

If a design does not implement the full memory map, a default Subordinate must respond (ERROR/DECERR) when any of the nonexistent address locations are accessed.


Address boundary

  • The minimum address space that can be allocated to a single interface is 1KB/4KB (AHB/AXI).
  • A burst must not cross a 1KB/4KB (AHB/AXI) address boundary.
  • This prevents a burst from crossing a boundary between two Subordinates.
  • Additionally (AXI), limits the number of address increments a Subordinate supports.

Reasons for

BURST transactions

  • In a real system, there are latencies and arbitration.
  • Burst transfers and outstanding transactions come into the action.

Write STROBE

  • Implementation of column-based algorithms
  • Decrease the need for read-modify-write operations
  • Deal with access to a wider data bus
    • 32/64-bits access in a 128-bits bus
    • Different widths in a interconnect

Multiple interfaces

DMA example

It is possible (recommended when suitable) to have multiple interfaces per IP.


Questions?

GitHub icon rodrigomelo9
Twitter icon rodrigomelo9ok
LinkedIn icon rodrigoalejandromelo

AMBA5 Parity signals


AMBA5 parity protection

AMBA parity

  • Odd parity: ~(^<SIGNAL>)
  • Each parity bit covers up to 8 bits
  • If signals covered by a parity signal are not present, those are assumed LOW

APB5

Parity signal Signals covered Width Validity
PSELxCHK PSELx 1 PRESETn
PENABLECHK PENABLE 1 PSEL
PADDRCHK PADDR ceil(AWIDTH/8) PSEL
PCTRLCHK PPROT,PWRITE 1 PSEL
PSTRBCHK PSTRB 1 PSEL & PWRITE
PWDATACHK PWDATA DWIDTH/8 PSEL & PWRITE
PRDATACHK PRDATA DWIDTH/8 PSEL & PENABLE & PREADY & !PWRITE
PSLVERRCHK PSLVERR 1 PSEL & PENABLE & PREADY
PREADYCHK PREADY 1 PSEL & PENABLE

AHB5

Parity signal Signals covered Width Validity
HSELxCHK HSELx 1 HRESETn
HTRANSCHK HTRANS 1 HRESETn
HADDRCHK HADDR ceil(AWIDTH/8) HRESETn
HCTRLCHK HBURST,HMASTLOCK,HWRITE,HSIZE 1 HTRANS != IDLE
HWSTRBCHK HWSTRB ceil(DWIDTH/64) WR data phase
HWDATACHK HWDATA DWIDTH/8 WR data phase
HRDATACHK HRDATA DWIDTH/8 RD data phase & HREADY
HRESPCHK HRESP,HEXOKAY 1 data phase
HREADYCHK HREADY 1 HRESETn
HREADYOUTCHK HREADYOUT 1 HRESETn

ATTENTION: adapted/reduced for AHB3


AXI5

Parity signal Signals covered Width Validity
A[WR]VALIDCHK A[WR]VALID 1 ARESETn
A[WR]READYCHK A[WR]READY 1 ARESETn
A[WR]IDCHK A[WR]ID ceil(IWIDTH/8) A[WR]VALID
A[WR]ADDRCHK A[WR]ADDR ceil(AWIDTH/8) A[WR]VALID
A[WR]LENCHK A[WR]LEN 1 A[WR]VALID
A[WR]CTLCHK0 A[WR]SIZE,A[WR]BURST,A[WR]LOCK,A[WR]PROT 1 A[WR]VALID
A[WR]CTLCHK1 A[WR]REGION,A[WR]CACHE,A[WR]QOS 1 A[WR]VALID
A[WR]USERCHK A[WR]USER ceil(UWIDTH/8) A[WR]VALID
[WR]VALIDCHK [WR]VALID 1 ARESETn
[WR]READYCHK [WR]READY 1 ARESETn
RIDCHK RID ceil(IWIDTH/8) RVALID
WSTRBCHK WSTRB ceil(DWIDTH/64) WVALID
[WR]DATACHK [WR]DATA ceil(DWIDTH/8) [WR]VALID
[WR]LASTCHK [WR]LAST 1 [WR]VALID
[WR]USERCHK [WR]USER ceil(UWIDTH/8) [WR]VALID
BVALIDCHK BVALID 1 ARESETn
BREADYCHK BREADY 1 ARESETn
BIDCHK BID ceil(IWIDTH/8) BVALID
[BR]RESPCHK [BR]RESP 1 [BR]VALID
BUSERCHK BUSER ceil(UWIDTH/8) BVALID

ATTENTION: adapted/reduced for AXI4


AXI5 Stream

Parity signal Signals covered Width Validity
TVALIDCHK TVALID 1 ARESETn
TREADYCHK TREADY 1 ARESETn
TIDCHK TID ceil(IDWIDTH/8) TVALID
TSTRBCHK TSRTB ceil(DATAWIDTH/64) TVALID
TKEEPCHK TKEEP ceil(DATAWIDTH/64) TVALID
TDATACHK TDATA ceil(DATAWIDTH/8) TVALID
TLASTCHK TLAST 1 TVALID
TDESTCHK TDEST ceil(DESTWIDTH/8) TVALID
TUSERCHK TUSER ceil(USERWIDTH/8) TVALID

ATTENTION: adapted/reduced for AXI4 Stream