ix86 Atomic ops during DMA...

From: Richard B. Johnson
Date: Mon Aug 09 2004 - 07:27:33 EST



Hello,

A piece of hardware needs its interrupt status written back
to its status register to "clear" interrupts and thus enable
more.. This is in an uninterruptible ISR. This, of course
can be readily accomplished by using the standard readl() and
writel() macros.........but! If a DMA is in progress, a hardware
debugger shows many milliseconds between the read and the write.

This allows a race condition to exist. So, how do I lock the bus
during the read and write? A lock on ix86 locks only the
next instruction, not the next plus time for another lock
which appears to be needed.

I need...

movl (%ebx), %eax # Read status from register in ebx
movl %eax, (%ebx) # Write it back

..to occur together without the bus being taken away by a DMA
operation until these two instructions are complete.

Cheers,
Dick Johnson
Penguin : Linux version 2.4.26 on an i686 machine (5570.56 BogoMips).
Note 96.31% of all statistics are fiction.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/