lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 20 Sep 2014 20:06:28 +0200 From: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> To: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> Cc: Rob Herring <robh+dt@...nel.org>, Pawel Moll <pawel.moll@....com>, Mark Rutland <mark.rutland@....com>, Ian Campbell <ijc+devicetree@...lion.org.uk>, Kumar Gala <galak@...eaurora.org>, Bjorn Helgaas <bhelgaas@...gle.com>, Jason Cooper <jason@...edaemon.net>, Andrew Lunn <andrew@...n.ch>, Gregory Clement <gregory.clement@...e-electrons.com>, Thomas Petazzoni <thomas.petazzoni@...e-electrons.com>, devicetree@...r.kernel.org, linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org Subject: [PATCH 2/5] PCI: mvebu: Count number of lanes Some PCIe controllers found on Armada XP SoCs can be configured as either four single-lane x1 or one quad-lane x4 PCIe. Although we are not (yet) interested in the physical configuration of the PCIe controller, we will need it when proper PHY support for PCIe is added. Adapt the driver to the amended DT semantic and count the number of PCIe lanes. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> --- Cc: Rob Herring <robh+dt@...nel.org> Cc: Pawel Moll <pawel.moll@....com> Cc: Mark Rutland <mark.rutland@....com> Cc: Ian Campbell <ijc+devicetree@...lion.org.uk> Cc: Kumar Gala <galak@...eaurora.org> Cc: Bjorn Helgaas <bhelgaas@...gle.com> Cc: Jason Cooper <jason@...edaemon.net> Cc: Andrew Lunn <andrew@...n.ch> Cc: Gregory Clement <gregory.clement@...e-electrons.com> Cc: Thomas Petazzoni <thomas.petazzoni@...e-electrons.com> Cc: devicetree@...r.kernel.org Cc: linux-kernel@...r.kernel.org Cc: linux-arm-kernel@...ts.infradead.org --- drivers/pci/host/pci-mvebu.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c index a8c6f1a92e0f..0feee6cd395c 100644 --- a/drivers/pci/host/pci-mvebu.c +++ b/drivers/pci/host/pci-mvebu.c @@ -115,6 +115,7 @@ struct mvebu_pcie_port { void __iomem *base; u32 port; u32 lane; + int num_lanes; int devfn; unsigned int mem_target; unsigned int mem_attr; @@ -982,9 +983,17 @@ static int mvebu_pcie_probe(struct platform_device *pdev) continue; } - if (of_property_read_u32(child, "marvell,pcie-lane", - &port->lane)) + /* + * If there are multiple lanes, we are only interested in the + * number of the first lane and the lane count. + */ + if (of_property_read_u32_index(child, "marvell,pcie-lane", + 0, &port->lane)) port->lane = 0; + port->num_lanes = of_property_count_u32_elems(child, + "marvell,pcie-lane"); + if (!port->num_lanes) + port->num_lanes = 1; port->name = kasprintf(GFP_KERNEL, "pcie%d.%d", port->port, port->lane); -- 2.0.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists