]> git.baikalelectronics.ru Git - kernel.git/commit
Dove: Attempt to fix PMU/RTC interrupts
authorRussell King - ARM Linux <linux@arm.linux.org.uk>
Sun, 18 Nov 2012 16:29:44 +0000 (16:29 +0000)
committerJason Cooper <jason@lakedaemon.net>
Wed, 21 Nov 2012 18:25:11 +0000 (18:25 +0000)
commit835a8d48168f756521a5a7934991259e950c78f6
tree9b6e1a59792834d092aa569924f8c6732d61ae09
parent86df70fce2e3175bd28874c3918f08d04ad5c3bd
Dove: Attempt to fix PMU/RTC interrupts

Fix the acknowledgement of PMU interrupts on Dove: some Dove hardware
has not been sensibly designed so that interrupts can be handled in a
race free manner.  The PMU is one such instance.

The pending (aka 'cause') register is a bunch of RW bits, meaning that
these bits can be both cleared and set by software (confirmed on the
Armada-510 on the cubox.)

Hardware sets the appropriate bit when an interrupt is asserted, and
software is required to clear the bits which are to be processed.  If
we write ~(1 << bit), then we end up asserting every other interrupt
except the one we're processing.  So, we need to do a read-modify-write
cycle to clear the asserted bit.

However, any interrupts which occur in the middle of this cycle will
also be written back as zero, which will also clear the new interrupts.

The upshot of this is: there is _no_ way to safely clear down interrupts
in this register (and other similarly behaving interrupt pending
registers on this device.)  The patch below at least stops us creating
new interrupts.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: stable@vger.kernel.org
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/mach-dove/irq.c