Interrupt Latency in Colibri iMX7D

We are using interrupts in our application.
We know to develop the user space interrupt service thread. How to proceed for Interrupt service thread in kernel mode ?

secondly, we want to know the lowest achievable interrupt latency in case of ARM core(iMX7D) running Win CE OS ?
and
What are the methods to achieve it ?

Regards
Bipin Kumar

Dear @bipin7301,

As of now, we didn’t measure interrupt latency on iMX7 and we are guessing the latency might fall in between PXA and Tegra stated values here : https://developer.toradex.com/knowledge-base/interrupt-latency due to IMX7 performance falls in between PXA to Tegra.

You can measure interrupt latency by following these instructions: https://msdn.microsoft.com/en-us/library/aa911504.aspx.

As long as swap and paging(more precise page out) not occurring then interrupt latency for the kernel and user thread will be the same but you need to set a really very high priority for the thread. As you know most of the embedded products a single application always run, so swap and page out wouldn’t occur if users not stressing the product. If you really want to write kernel driver and you can create subproject driver and add NK SHKM(Kernel and not page out) flag For example
YourDriver.dll $(_FLATRELEASEDIR)\YourDriver.dll NK SHKM

If you really need low interrupt latency you should go for installable interrupt service routines (ISR), please refer this documentation :https://developer.toradex.com/knowledge-base/interrupt-latency

If you need to avoid all the operating system overhead of interrupt handling then you would think about bare metal firmware on M4 core. There is a dedicated interrupt vector, code or instructions will start to execute as soon as the interrupt is fired.

Please let me know if you have any other question on this topic.