We have an application that uses the EIM bus to communicate with and FPGA.
There is an additional device connected to the FPGA, which communicates through the fpga by means of the EIM bus,
and has its own interrupts.
There is also a userspace program accessing registers via the EIM bus, which has been mmapped for direct access.
Thats a driver, two irqs, and a threaded application that may all be trying to read or write the EIM bus.
This was not my design, but I am wondering: does the IMX.6 serialize access to the EIM Bus, or do I have a race condition?
解決済! 解決策の投稿を見る。
Hi Joshua
EIM module is connected with AXI bus, allowing processing
one master at time, as described in IMX6DQRM sect.22.1.1 Features:
ARM AXI slave interface. One ID at a time support.
Best regards
igor
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------
Hi Joshua
EIM module is connected with AXI bus, allowing processing
one master at time, as described in IMX6DQRM sect.22.1.1 Features:
ARM AXI slave interface. One ID at a time support.
Best regards
igor
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------
Thanks, Igor.
I could not have possibly comprehended the contents of the reference manual without knowing to go look up AXI in ARM documentation. Well, thats one less item to worry about.