I.MX28 Linux Arm Alignment Trap

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

I.MX28 Linux Arm Alignment Trap

ソリューションへジャンプ
2,376件の閲覧回数
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

ラベル(4)
1 解決策
1,491件の閲覧回数
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!
-----------------------------------------------------------------------------------------------------------------------

元の投稿で解決策を見る

2 返答(返信)
1,492件の閲覧回数
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,491件の閲覧回数
nathanb_
Contributor III

Thanks

0 件の賞賛
返信