Re: [PATCH] pci: Fix e100 interrupt quirk

2007-09-20 Thread Valentine Barshak
Andrew Morton wrote: On Tue, 18 Sep 2007 15:17:37 +0400 Valentine Barshak <[EMAIL PROTECTED]> wrote: PCI memory space may have a 64-bit offset on some architectures (for example, PowerPC 440) and the actual PCI memory address has to fixed up (an offset to PCI mem space shuld be added) before re

Re: [PATCH] pci: Fix e100 interrupt quirk

2007-09-19 Thread Andrew Morton
On Tue, 18 Sep 2007 15:17:37 +0400 Valentine Barshak <[EMAIL PROTECTED]> wrote: > PCI memory space may have a 64-bit offset on some architectures > (for example, PowerPC 440) and the actual PCI memory address > has to fixed up (an offset to PCI mem space shuld be added) > before remapping. So, pci

[PATCH] pci: Fix e100 interrupt quirk

2007-09-19 Thread Valentine Barshak
PCI memory space may have a 64-bit offset on some architectures (for example, PowerPC 440) and the actual PCI memory address has to fixed up (an offset to PCI mem space shuld be added) before remapping. So, pci_iomap should be used instead of reading and remapping PCI BAR directly. This has been te

Re: [PATCH] pci: Fix e100 interrupt quirk

2007-09-19 Thread Valentine Barshak
Jarek Poplawski wrote: On 18-09-2007 13:17, Valentine Barshak wrote: PCI memory space may have a 64-bit offset on some architectures (for example, PowerPC 440) and the actual PCI memory address has to fixed up (an offset to PCI mem space shuld be added) before remapping. So, pci_iomap should be

Re: [PATCH] pci: Fix e100 interrupt quirk

2007-09-19 Thread Jarek Poplawski
On 18-09-2007 13:17, Valentine Barshak wrote: > PCI memory space may have a 64-bit offset on some architectures > (for example, PowerPC 440) and the actual PCI memory address > has to fixed up (an offset to PCI mem space shuld be added) > before remapping. So, pci_iomap should be used instead of >

[PATCH] pci: Fix e100 interrupt quirk

2007-09-18 Thread Valentine Barshak
PCI memory space may have a 64-bit offset on some architectures (for example, PowerPC 440) and the actual PCI memory address has to fixed up (an offset to PCI mem space shuld be added) before remapping. So, pci_iomap should be used instead of reading and remapping PCI BAR directly. This has been te