[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
rtl_hard_enable_irq: how long before?
- To: Real Time Linux <rtl@rtlinux.org>
- Subject: rtl_hard_enable_irq: how long before?
- From: Ken Teh <teh@phy.anl.gov>
- Date: Mon, 3 Dec 2001 12:26:30 -0600 (CST)
How long does it take from a call to rtl_hard_enable_irq() before the system
is ready for the next interrupt?
The reason I ask: I have an interrupt acquisition system that has external
hardware that vetoes further interrupts until I clear it from the rtl code.
It looks something like this:
rtl_hard_enable_irq(theirq);
clear_irq_veto();
At high instantaneous interrupt rates, hundreds of kHz, the acquisition
system dies. I was able to keep it alive in the face of such rates but
adding an hardware delay of 2-3 microsecs after clear_irq_veto() removes the
hardware veto.
Thanks! Ken