]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/pci: Fix IMMRBAR address
authorMinghuan Lian <Minghuan.Lian@freescale.com>
Mon, 20 Jan 2014 10:54:20 +0000 (18:54 +0800)
committerScott Wood <scottwood@freescale.com>
Wed, 19 Mar 2014 21:09:05 +0000 (16:09 -0500)
For PEXCSRBAR, bit 3-0 indicate prefetchable and address type.
So when getting base address, these bits should be masked,
otherwise we may get incorrect base address.

Signed-off-by: Minghuan Lian <Minghuan.Lian@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
arch/powerpc/sysdev/fsl_pci.c

index a625dcf26b2b7c53374883980d9f45e1881098ff..8cdd344825751a8581059792d3ab5919c69bb463 100644 (file)
@@ -868,6 +868,14 @@ u64 fsl_pci_immrbar_base(struct pci_controller *hose)
 
                pci_bus_read_config_dword(hose->bus,
                        PCI_DEVFN(0, 0), PCI_BASE_ADDRESS_0, &base);
+
+               /*
+                * For PEXCSRBAR, bit 3-0 indicate prefetchable and
+                * address type. So when getting base address, these
+                * bits should be masked
+                */
+               base &= PCI_BASE_ADDRESS_MEM_MASK;
+
                return base;
        }
 #endif