I have a question regarding the data during the BUSY state in a AHB bus. Consider the following example of an AHB master writing data onto an AHB slave:
TIME: T1 T2 T3 T4
HTRANS: NSEQ BUSY SEQ IDLE
HADDR: 0x01 0x02 0x03 OxO4
HWDATA: dataA dataB dataC dataD
HREADY: 1 1 1 1
HBURST: INCR INCR INCR INCR
In the above case will the data written be as follows:
ADDR DATA
---- ----
0x01 dataB
0x02 XXXX
0x03 dataD
0x04 XXXX
0x05 XXXX
Or will the data written be as follows:
ADDR DATA
---- ----
0x01 dataC
0x02 XXXX
0x03 dataD
0x04 XXXX
0x05 XXXX
Or is it in some other way the data is written.
Thanks in advance.