69d323f231
This is a backport of the patches accepted to the Linux mainline related to mvebu SoC (Armada XP and Armada 370) between Linux v3.10, and Linux v3.11. This work mainly covers: * Enabling USB storage, and PCI to mvebu_defconfig. * Add support for NOR flash. * Some PCI device tree related updates, and bus parsing. * Adding Armada XP & 370 PCI driver, and update some clock gating specifics. * Introduce Marvell EBU Device Bus driver. * Enaling USB in the armada*.dts. * Enabling, and updating the mvebu-mbus. * Some SATA and Ethernet related fixes. Signed-off-by: Seif Mazareeb <seif.mazareeb@gmail.com> CC: Luka Perkov <luka@openwrt.org> SVN-Revision: 39564
92 lines
3.2 KiB
Diff
92 lines
3.2 KiB
Diff
From 71a32c9519ba223d1dafcbe58d1699710720c5a8 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
Date: Thu, 1 Aug 2013 15:44:19 +0200
|
|
Subject: [PATCH 036/203] PCI: mvebu: Disable prefetchable memory support in
|
|
PCI-to-PCI bridge
|
|
|
|
The Marvell PCIe driver uses an emulated PCI-to-PCI bridge to be able
|
|
to dynamically set up MBus address decoding windows for PCI I/O and
|
|
memory regions depending on the PCI devices enumerated by Linux.
|
|
|
|
However, this emulated PCI-to-PCI bridge logic makes the Linux PCI
|
|
core believe that prefetchable memory regions are supported (because
|
|
the registers are read/write), while in fact no adress decoding window
|
|
is ever created for such regions. Since the Marvell MBus address
|
|
decoding windows do not distinguish memory regions and prefetchable
|
|
memory regions, this patch takes a simple approach: change the
|
|
PCI-to-PCI bridge emulation to let the Linux PCI core know that we
|
|
don't support prefetchable memory regions.
|
|
|
|
To achieve this, we simply make the prefetchable memory base a
|
|
read-only register that always returns 0. Reading/writing all the
|
|
other prefetchable memory related registers has no effect.
|
|
|
|
This problem was originally reported by Finn Hoffmann
|
|
<finn@uni-bremen.de>, who couldn't get a RTL8111/8168B PCI NIC working
|
|
on the NSA310 Kirkwood platform after updating to 3.11-rc. The problem
|
|
was that the PCI-to-PCI bridge emulation was making the Linux PCI core
|
|
believe that we support prefetchable memory, so the Linux PCI core was
|
|
only filling the prefetchable memory base and limit registers, which
|
|
does not lead to a MBus window being created. The below patch has been
|
|
confirmed by Finn Hoffmann to fix his problem on Kirkwood, and has
|
|
otherwise been successfully tested on the Armada XP GP platform with a
|
|
e1000e PCIe NIC and a Marvell SATA PCIe card.
|
|
|
|
Reported-by: Finn Hoffmann <finn@uni-bremen.de>
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
|
|
---
|
|
drivers/pci/host/pci-mvebu.c | 27 +--------------------------
|
|
1 file changed, 1 insertion(+), 26 deletions(-)
|
|
|
|
--- a/drivers/pci/host/pci-mvebu.c
|
|
+++ b/drivers/pci/host/pci-mvebu.c
|
|
@@ -86,10 +86,6 @@ struct mvebu_sw_pci_bridge {
|
|
u16 secondary_status;
|
|
u16 membase;
|
|
u16 memlimit;
|
|
- u16 prefmembase;
|
|
- u16 prefmemlimit;
|
|
- u32 prefbaseupper;
|
|
- u32 preflimitupper;
|
|
u16 iobaseupper;
|
|
u16 iolimitupper;
|
|
u8 cappointer;
|
|
@@ -419,15 +415,7 @@ static int mvebu_sw_pci_bridge_read(stru
|
|
break;
|
|
|
|
case PCI_PREF_MEMORY_BASE:
|
|
- *value = (bridge->prefmemlimit << 16 | bridge->prefmembase);
|
|
- break;
|
|
-
|
|
- case PCI_PREF_BASE_UPPER32:
|
|
- *value = bridge->prefbaseupper;
|
|
- break;
|
|
-
|
|
- case PCI_PREF_LIMIT_UPPER32:
|
|
- *value = bridge->preflimitupper;
|
|
+ *value = 0;
|
|
break;
|
|
|
|
case PCI_IO_BASE_UPPER16:
|
|
@@ -501,19 +489,6 @@ static int mvebu_sw_pci_bridge_write(str
|
|
mvebu_pcie_handle_membase_change(port);
|
|
break;
|
|
|
|
- case PCI_PREF_MEMORY_BASE:
|
|
- bridge->prefmembase = value & 0xffff;
|
|
- bridge->prefmemlimit = value >> 16;
|
|
- break;
|
|
-
|
|
- case PCI_PREF_BASE_UPPER32:
|
|
- bridge->prefbaseupper = value;
|
|
- break;
|
|
-
|
|
- case PCI_PREF_LIMIT_UPPER32:
|
|
- bridge->preflimitupper = value;
|
|
- break;
|
|
-
|
|
case PCI_IO_BASE_UPPER16:
|
|
bridge->iobaseupper = value & 0xffff;
|
|
bridge->iolimitupper = value >> 16;
|