This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How does BP131 Downsizer addressing work?

Trying to understand About the AXI downsizer.

There are explaining especially two mode. 

3.1 Pass-through mode
When the size of an incoming transaction is 32 bits or less, DownsizerAxi operates in
pass-through mode. In pass-through mode, the first data transfer of the transaction can
take place two clock cycles after AxVALIDS is asserted. When a transaction is in
progress, the input and output data channels are connected by combinatorial logic and
data transfer continues at one data transfer per clock cycle.

3.2 Downsize mode
When the size of an incoming transaction is 64 bits, DownsizerAxi operates in downsize
mode. In downsize mode, DownsizerAxi converts the incoming 64-bit transaction into
one or more 32-bit transactions. The number of 32-bit transactions that DownsizerAxi
generates depends on the burst type, AxBURST, and length, AxLEN, of the 64-bit
transaction.
The first 32-bit data transfer of the transaction can take place two clock cycles after
AxVALIDS is asserted. The first 64-bit transfer can complete three clock cycles after
AxVALIDS is asserted. The extra clock cycle is required because the 64-bit data
transfer is made up of two 32-bit data transfers.

Let's say I want to write 64bit transaction to 32bit by downsizer, address: 0x8000_0000 and wdata: 0x1234_5678_abcd_feed. Probably it will write in Downsize mode.

but  In especially, I'm confused that address processing at that time. when it writes two 32bit data, how does the address process?

ex1)

 address: 0x8000_0000 and wdata: 0x1234_5678.

 address: 0x8000_0000 and wdata: 0xabcd_feed.

or

ex2)

1. address: 0x8000_0000 and wdata: 0x1234_5678.

2. address: 0x8000_0004 and wdata: 0xabcd_feed.

How does address correctly work?