Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1260782 > unrolled thread
| Started by | Phil Edworthy <phil.edworthy@renesas.com> |
|---|---|
| First post | 2015-11-02 17:40 +0100 |
| Last post | 2015-11-03 10:10 +0100 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 0/3] Fix rcar-pcie for arm64 Phil Edworthy <phil.edworthy@renesas.com> - 2015-11-02 17:40 +0100
[PATCH 3/3] PCI: pcie-rcar: Add support for R-Car H3. Phil Edworthy <phil.edworthy@renesas.com> - 2015-11-02 17:40 +0100
Re: [PATCH 3/3] PCI: pcie-rcar: Add support for R-Car H3. Wolfram Sang <wsa@the-dreams.de> - 2015-11-07 14:40 +0100
Re: [PATCH 0/3] Fix rcar-pcie for arm64 Wolfram Sang <wsa@the-dreams.de> - 2015-11-02 22:40 +0100
RE: [PATCH 0/3] Fix rcar-pcie for arm64 Phil Edworthy <phil.edworthy@renesas.com> - 2015-11-03 10:10 +0100
| From | Phil Edworthy <phil.edworthy@renesas.com> |
|---|---|
| Date | 2015-11-02 17:40 +0100 |
| Subject | [PATCH 0/3] Fix rcar-pcie for arm64 |
| Message-ID | <qqqjf-7AX-7@gated-at.bofh.it> |
The first patches fixes the build problem, and the second patch reverts the
patch that removed the driver from arm64 builds. The final patch add a compat
string for the r8a7795 (arm64) device.
Tested on arm Koelsch board, all ok.
Tested on arm64 Salvator-X board using renesas-drivers-2015-10-27-v4.3-rc7 from
git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git with PCI
next merged.
Apart from patches to add the PCIe clock and DT nodes, I had to revert these
patches to get it to work on arm64:
f075915ac0b1 ("PCI/MSI: Drop domain field from msi_controller")
d8a1cb757550 ("PCI/MSI: Let pci_msi_get_domain use struct device::msi_domain")
I'll look into this, but it doesn't stop us from applying these patches.
Harunobu Kurokawa (1):
PCI: pcie-rcar: Add support for R-Car H3.
Phil Edworthy (2):
PCI: pcie-rcar: Convert to DT resource parsing API
Revert "PCI: rcar: Build pcie-rcar.c only on ARM"
Documentation/devicetree/bindings/pci/rcar-pci.txt | 3 +-
drivers/pci/host/Kconfig | 3 +-
drivers/pci/host/pcie-rcar.c | 118 +++++++++++++--------
3 files changed, 78 insertions(+), 46 deletions(-)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Phil Edworthy <phil.edworthy@renesas.com> |
|---|---|
| Date | 2015-11-02 17:40 +0100 |
| Subject | [PATCH 3/3] PCI: pcie-rcar: Add support for R-Car H3. |
| Message-ID | <qqqjh-7AX-37@gated-at.bofh.it> |
| In reply to | #1260782 |
From: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
R-Car H3 device is r8a7795
Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
---
Documentation/devicetree/bindings/pci/rcar-pci.txt | 3 ++-
drivers/pci/host/pcie-rcar.c | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/pci/rcar-pci.txt b/Documentation/devicetree/bindings/pci/rcar-pci.txt
index 29d3b98..ab2e75f 100644
--- a/Documentation/devicetree/bindings/pci/rcar-pci.txt
+++ b/Documentation/devicetree/bindings/pci/rcar-pci.txt
@@ -2,7 +2,8 @@
Required properties:
- compatible: should contain one of the following
- "renesas,pcie-r8a7779", "renesas,pcie-r8a7790", "renesas,pcie-r8a7791"
+ "renesas,pcie-r8a7779", "renesas,pcie-r8a7790", "renesas,pcie-r8a7791",
+ "renesas,pcie-r8a7795"
- reg: base address and length of the pcie controller registers.
- #address-cells: set to <3>
- #size-cells: set to <2>
diff --git a/drivers/pci/host/pcie-rcar.c b/drivers/pci/host/pcie-rcar.c
index 27c0521..2377bf0 100644
--- a/drivers/pci/host/pcie-rcar.c
+++ b/drivers/pci/host/pcie-rcar.c
@@ -917,6 +917,7 @@ static const struct of_device_id rcar_pcie_of_match[] = {
{ .compatible = "renesas,pcie-r8a7779", .data = rcar_pcie_hw_init_h1 },
{ .compatible = "renesas,pcie-r8a7790", .data = rcar_pcie_hw_init },
{ .compatible = "renesas,pcie-r8a7791", .data = rcar_pcie_hw_init },
+ { .compatible = "renesas,pcie-r8a7795", .data = rcar_pcie_hw_init },
{},
};
MODULE_DEVICE_TABLE(of, rcar_pcie_of_match);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Wolfram Sang <wsa@the-dreams.de> |
|---|---|
| Date | 2015-11-07 14:40 +0100 |
| Subject | Re: [PATCH 3/3] PCI: pcie-rcar: Add support for R-Car H3. |
| Message-ID | <qsbSP-2TM-25@gated-at.bofh.it> |
| In reply to | #1260785 |
[Multipart message — attachments visible in raw view] — view raw
On Mon, Nov 02, 2015 at 04:36:15PM +0000, Phil Edworthy wrote: > From: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> > > R-Car H3 device is r8a7795 > > Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> Acked-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
[toc] | [prev] | [next] | [standalone]
| From | Wolfram Sang <wsa@the-dreams.de> |
|---|---|
| Date | 2015-11-02 22:40 +0100 |
| Message-ID | <qquZA-250-1@gated-at.bofh.it> |
| In reply to | #1260782 |
[Multipart message — attachments visible in raw view] — view raw
> The first patches fixes the build problem, and the second patch reverts the
> patch that removed the driver from arm64 builds. The final patch add a compat
> string for the r8a7795 (arm64) device.
Thanks. I will test them next week when I have access to my board again.
> Apart from patches to add the PCIe clock and DT nodes, I had to revert these
> patches to get it to work on arm64:
> f075915ac0b1 ("PCI/MSI: Drop domain field from msi_controller")
> d8a1cb757550 ("PCI/MSI: Let pci_msi_get_domain use struct device::msi_domain")
Does that solve the MSI problems you mentioned?
Regards,
Wolfram
[toc] | [prev] | [next] | [standalone]
| From | Phil Edworthy <phil.edworthy@renesas.com> |
|---|---|
| Date | 2015-11-03 10:10 +0100 |
| Message-ID | <qqFLk-Gf-3@gated-at.bofh.it> |
| In reply to | #1260990 |
Hi Wolfram,
On 02 November 2015 21:33, Wolfram wrote:
> > The first patches fixes the build problem, and the second patch reverts the
> > patch that removed the driver from arm64 builds. The final patch add a compat
> > string for the r8a7795 (arm64) device.
>
> Thanks. I will test them next week when I have access to my board again.
It's worth mentioning that I had some troubles on my Salvator-X board
with some cards not being able to link up. Since my board has a socketed chip
and the board was designed for it not to be via a socket, and this is such a low
level functionality, I think this is HW related. My Intel Gigabit CT Desktop card
always works.
Also note that this PCIe controller only supports a 32-bit AXI address range,
so you need to limit memory to within the 4GiB address space. As far as I am
aware, there is no way to limit the dma mask that card drivers use via the
controller. The plan is to add support this via IOMMU.
> > Apart from patches to add the PCIe clock and DT nodes, I had to revert these
> > patches to get it to work on arm64:
> > f075915ac0b1 ("PCI/MSI: Drop domain field from msi_controller")
> > d8a1cb757550 ("PCI/MSI: Let pci_msi_get_domain use struct
> device::msi_domain")
>
> Does that solve the MSI problems you mentioned?
It avoids the problem, but I have a proper fix in the pipeline which just needs
more testing.
Thanks
Phil
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web