From: Bjorn Helgaas <helgaas@kernel.org>
To: Simon Horman <horms+renesas@verge.net.au>
Cc: Bjorn Helgaas <bhelgaas@google.com>,
Magnus Damm <magnus.damm@gmail.com>,
linux-pci@vger.kernel.org, linux-sh@vger.kernel.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH 3/4] PCI: rcar: Add Gen2 fallback compatibility string
Date: Mon, 7 Dec 2015 09:39:36 -0600 [thread overview]
Message-ID: <20151207153936.GC7994@localhost> (raw)
In-Reply-To: <1448954672-27236-4-git-send-email-horms+renesas@verge.net.au>
On Tue, Dec 01, 2015 at 04:24:31PM +0900, Simon Horman wrote:
> Add fallback compatibility string for R-Car Gen 2 Family.
> This is in keeping with the fallback scheme being adopted wherever
> appropriate for drivers for Renesas SoCs.
>
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
> ---
> Documentation/devicetree/bindings/pci/rcar-pci.txt | 13 ++++++++++---
> drivers/pci/host/pcie-rcar.c | 1 +
> 2 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/pci/rcar-pci.txt b/Documentation/devicetree/bindings/pci/rcar-pci.txt
> index 29d3b989d3b0..872cea085be8 100644
> --- a/Documentation/devicetree/bindings/pci/rcar-pci.txt
> +++ b/Documentation/devicetree/bindings/pci/rcar-pci.txt
> @@ -1,8 +1,15 @@
> * Renesas RCar PCIe interface
>
> Required properties:
> -- compatible: should contain one of the following
> - "renesas,pcie-r8a7779", "renesas,pcie-r8a7790", "renesas,pcie-r8a7791"
> +compatible: "renesas,pcie-r8a7779" for the R8A7779 SoC;
> + "renesas,pcie-r8a7790" for the R8A7790 SoC;
> + "renesas,pcie-r8a7791" for the R8A7791 SoC;
> + "renesas,pcie-gen2" for a generic R-Car Gen2 compatible device.
> +
> + When compatible with the generic version, nodes must list the
> + SoC-specific version corresponding to the platform first
> + followed by the generic version.
> +
> - reg: base address and length of the pcie controller registers.
> - #address-cells: set to <3>
> - #size-cells: set to <2>
> @@ -25,7 +32,7 @@ Example:
> SoC specific DT Entry:
>
> pcie: pcie@fe000000 {
> - compatible = "renesas,pcie-r8a7791";
> + compatible = "renesas,pcie-r8a7791", "renesas,pcie-gen2";
> reg = <0 0xfe000000 0 0x80000>;
> #address-cells = <3>;
> #size-cells = <2>;
> diff --git a/drivers/pci/host/pcie-rcar.c b/drivers/pci/host/pcie-rcar.c
> index f4fa6c537448..17ee0422ddb1 100644
> --- a/drivers/pci/host/pcie-rcar.c
> +++ b/drivers/pci/host/pcie-rcar.c
> @@ -917,6 +917,7 @@ static int rcar_pcie_parse_map_dma_ranges(struct rcar_pcie *pcie,
>
> static const struct of_device_id rcar_pcie_of_match[] = {
> { .compatible = "renesas,pcie-r8a7779", .data = rcar_pcie_hw_init_h1 },
> + { .compatible = "renesas,pcie-gen2", .data = rcar_pcie_hw_init },
> { .compatible = "renesas,pcie-r8a7790", .data = rcar_pcie_hw_init },
> { .compatible = "renesas,pcie-r8a7791", .data = rcar_pcie_hw_init },
> {},
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2015-12-07 15:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-01 7:24 [PATCH 0/4] PCI: rcar, rcar-gen2: More Gen2 compat strings Simon Horman
2015-12-01 7:24 ` [PATCH 1/4] PCI: rcar-gen2: Add generic compatibility string Simon Horman
[not found] ` <1448954672-27236-2-git-send-email-horms+renesas-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>
2015-12-01 8:41 ` Geert Uytterhoeven
2015-12-02 0:26 ` Simon Horman
2015-12-01 7:24 ` [PATCH 2/4] PCI: rcar-gen2: Add device tree support for r8a7793 Simon Horman
2015-12-04 21:26 ` Bjorn Helgaas
2015-12-05 10:38 ` Geert Uytterhoeven
2015-12-07 15:38 ` Bjorn Helgaas
2015-12-08 0:45 ` Simon Horman
2016-01-11 1:06 ` Simon Horman
2015-12-01 7:24 ` [PATCH 3/4] PCI: rcar: Add Gen2 fallback compatibility string Simon Horman
2015-12-07 15:39 ` Bjorn Helgaas [this message]
2015-12-01 7:24 ` [PATCH 4/4] PCI: rcar: Add device tree support for r8a7793 Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151207153936.GC7994@localhost \
--to=helgaas@kernel.org \
--cc=bhelgaas@google.com \
--cc=devicetree@vger.kernel.org \
--cc=horms+renesas@verge.net.au \
--cc=linux-pci@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).