I.MX28 Linux Arm Alignment Trap

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

I.MX28 Linux Arm Alignment Trap

Jump to solution
2,070 Views
nathanb_
Contributor III

Hello All,

We are currently investigating processors to use in a new product design.  I've written some sample code that compiles (with GCC under Linux) and runs seamlessly on ARM Cortex A9 processors from various semiconductor manufacturers (I.MX6, ...) .

When running this code on an I.MX28 EVK, the code seems to function.  However, it's slow.  It gives a few thousand of these messages in the process of running the test:

Alignment trap: test (29858) PC=... Instr=... Address=... FSR ...

Looking at the GCC manual, there are mentions of unaligned access traps being enabled and disabled with the -malignment-traps and -mno-alignment-traps options.  However, it says that these options do not effect ARM architecture 4 or later.

The I.MX28 ARM9 architecture is ARMv5, while Cortex A9 is ARMv7.  Both of these are above architecture 4.


Does anyone have any insight into what could be going on here?  What's the difference between these two architectures?


We could change the code to explicitly access memory on even boundaries, but if it is unnecessary on newer ARM architectures then we could prefer not to design for an older architecture.


Thanks

Labels (4)
1 Solution
1,185 Views
Yuri
NXP Employee
NXP Employee

  “For processors based on ARMv5 or earlier, or ARMv6-M, you must ensure that addresses
for 4-byte transfers are 4-byte word-aligned, and addresses for 2-byte transfers are 2-byte
aligned. In ARMv6 and later, except ARMv6-M, unaligned accesses are permitted for LDR,
LDRH, STR, STRH, LDRSH, LDRT, STRT, LDRSHT, LDRHT, STRHT, and TBH instructions,
where the architecture supports the instruction”.

< http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0473c/Cihdbfje.html >


Have a great day,
Yuri

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

View solution in original post

2 Replies
1,186 Views
Yuri
NXP Employee
NXP Employee

  “For processors based on ARMv5 or earlier, or ARMv6-M, you must ensure that addresses
for 4-byte transfers are 4-byte word-aligned, and addresses for 2-byte transfers are 2-byte
aligned. In ARMv6 and later, except ARMv6-M, unaligned accesses are permitted for LDR,
LDRH, STR, STRH, LDRSH, LDRT, STRT, LDRSHT, LDRHT, STRHT, and TBH instructions,
where the architecture supports the instruction”.

< http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0473c/Cihdbfje.html >


Have a great day,
Yuri

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

1,185 Views
nathanb_
Contributor III

Thanks

0 Kudos