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

Does ordered-memory-access wait for response?

Hi,

I use Cortex-A17.

Any question.

-------------------------------------------------------------------------------------

Example.1

memory-type is device.

1. LDR R0, [R2]

2. STR R3, [R4]  (R2 != R4)

On AXI-bus, (2.)write transaction is wait for (1.)read response?

-------------------------------------------------------------------------------------

Example.2

memory-type is normal(noncache)

1. LDR R0, [R2]

2. DMB

3. STR R3, [R4]  (R2 != R4)

On AXI-bus, (3.)write transaction is wait for (1.)read response?

-------------------------------------------------------------------------------------

Example.3

memory-type is device or normal(nocache).

1. STR R0, [R2]

    (DMB) for normal memory

2. STR R3, [R4]  (R2 != R4)

On AXI-bus, (2.)write transaction is wait for (1.)write response?

-------------------------------------------------------------------------------------