Can you help me with code ('C' or ARM assembly) for marking a memory region as "Normal", thereby allowing unaligned memory access? I understand we need to enable MMU before doing this. I'm new to ARM architecture.

Thanks!

link|improve this question
feedback

1 Answer

If all you need is unaligned access, try setting the cp15 sctlr[1] (alignment bit) to 0.

mrc  p15, 0, r0, c1, c0, 0
bic  r0, r0, #2
mcr  p15, 0, r0, c1, c0, 0 

I don't know whether MMU needs to be enabled for this or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.