]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ARM: 7635/1: versatile: fix the PCI IRQ regression
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 28 Jan 2013 20:58:22 +0000 (21:58 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 6 Feb 2013 09:33:09 +0000 (09:33 +0000)
commite3e92a7be6936dff1de80e66b0b683d54e9e02d8
treea8266233dde069d6d9a0fcbaf268017e98d8a462
parent4e79a62d84b9a3b84c609d73382415c71d911a4c
ARM: 7635/1: versatile: fix the PCI IRQ regression

The PCI IRQs were regressing due to two things:

- The PCI glue layer was using an hard-coded IRQ 27 offset.
  This caused the immediate regression.

- The SIC IRQ mask was inverted (i.e. a bit was indeed set to
  one for each valid IRQ on the SIC, but accidentally inverted
  in the init call). This has been around forever, but we have
  been saved by some other forgiving code that would reserve
  IRQ descriptors in this range, as the versatile is
  non-sparse.

When the IRQs were bumped up 32 steps so as to avoid using IRQ
zero and avoid touching the 16 legacy IRQs, things broke.

Introduce an explicit valid mask for the IRQs that are active
on the PIC/SIC, and pass that. Use the BIT() macro from
<linux/bitops.h> to make sure we hit the right bits, readily
defined in <mach/platform.h>.

Reported-by: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/mach-versatile/core.c
arch/arm/mach-versatile/pci.c