在CA53的TRM中,关于ACE transfer有以下描述
For Non-cacheable transactions:• INCR N (N:1, 2, or 4) 128-bit for write transfers.
想请教一下,CPU中执行什么样的指令,会在总线上产生 INCR4 128bit的write transfer
多谢!
Hi Yu, 你好。
如果是Device-GRE memory的话,你的上面的code可以产生INCR4 burst write。如果是其它Device memory type不能产生INCR4 burst。
如果要使用其它Device memory type (比如Device nGnRE),只能在aarch32下用STM产生INCR4 burst write。比如:
stm [r0], {r0,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,r11,r12,r13}
Hi Joey,
非常感谢你的回答。
BR
Yu