* [PATCH v4] pci-rcar-gen2: add device tree support
@ 2014-05-19 21:10 Sergei Shtylyov
2014-05-28 3:04 ` Bjorn Helgaas
2014-05-28 13:51 ` Bjorn Helgaas
0 siblings, 2 replies; 6+ messages in thread
From: Sergei Shtylyov @ 2014-05-19 21:10 UTC (permalink / raw)
To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, horms,
bhelgaas, grant.likely, devicetree, linux-pci
Cc: rdunlap, linux-doc, linux-sh
From: Ben Dooks <ben.dooks@codethink.co.uk>
Add device tree probing support to the 'pci-rcar-gen2' driver.
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
[Sergei: numerous fixes/cleanups/additions]
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
---
The patch is against the 'next' branch of Bjorn Helgaas' 'pci.git' repo.
Changes in version 4:
- added the descriptions for the #{address|size|interrupt}-cells and
#interrupt-map[-mask] properties to the binding document;
- added the interrupt-related properties to the example;
- refreshed the patch.
Changes in version 3:
- added "renesas,pci-r8a7791" to the possible "compatible" property values;
- removed '#ifdef CONFIG_OF' around rcar_pci_of_match[] and hence of_match_ptr()
invocation too;
- fixed trailing whitespace in the DT parsing code;
- removed the wrong "renessas," prefix from the binding document's file name;
- moved the PCI device sub-nodes from the board example to the SoC example;
- fixed labels in the board example;
- fixed grammar and punctuation in the binding document;
- reworded the changelog, fixed the subject.
Changes in version 2:
- merged the binding document from a separate patch;
- moved to the "bus-range" property parsing;
- added example to the binding document.
Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt | 66 ++++++++++++++++
drivers/pci/host/pci-rcar-gen2.c | 31 +++++++
2 files changed, 95 insertions(+), 2 deletions(-)
Index: pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
===================================================================
--- /dev/null
+++ pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
@@ -0,0 +1,66 @@
+Renesas AHB to PCI bridge
+-------------------------
+
+This is the bridge used internally to connect the USB controllers to the
+AHB. There is one bridge instance per USB port connected to the internal
+OHCI and EHCI controllers.
+
+Required properties:
+- compatible: "renesas,pci-r8a7790" for the R8A7790 SoC;
+ "renesas,pci-r8a7791" for the R8A7791 SoC.
+- reg: A list of physical regions to access the device: the first is
+ the operational registers for the OHCI/EHCI controllers and the
+ second is for the bridge configuration and control registers.
+- interrupts: interrupt for the device.
+- clocks: The reference to the device clock.
+- bus-range: The PCI bus number range; as this is a single bus, the range
+ should be specified as the same value twice.
+- #address-cells: must be 3.
+- #size-cells: must be 2.
+- #interrupt-cells: must be 1.
+- interrupt-map: standard property used to define the mapping of the PCI
+ interrupts to the GIC interrupts.
+- interrupt-map-mask: standard property that helps to define the interrupt
+ mapping.
+
+Example SoC configuration:
+
+ pci0: pci@ee090000 {
+ compatible = "renesas,pci-r8a7790";
+ clocks = <&mstp7_clks R8A7790_CLK_EHCI>;
+ reg = <0x0 0xee090000 0x0 0xc00>,
+ <0x0 0xee080000 0x0 0x1100>;
+ interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+
+ bus-range = <0 0>;
+ #address-cells = <3>;
+ #size-cells = <2>;
+ #interrupt-cells = <1>;
+ interrupt-map-mask = <0xff00 0 0 0x7>;
+ interrupt-map = <0x0000 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
+ 0x0800 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
+ 0x1000 0 0 2 &gic 0 108 IRQ_TYPE_LEVEL_HIGH>;
+
+ pci@0,1 {
+ reg = <0x800 0 0 0 0>;
+ device_type = "pci";
+ phys = <&usbphy 0 0>;
+ phy-names = "usb";
+ };
+
+ pci@0,2 {
+ reg = <0x1000 0 0 0 0>;
+ device_type = "pci";
+ phys = <&usbphy 0 0>;
+ phy-names = "usb";
+ };
+ };
+
+Example board setup:
+
+&pci0 {
+ status = "okay";
+ pinctrl-0 = <&usb0_pins>;
+ pinctrl-names = "default";
+};
Index: pci/drivers/pci/host/pci-rcar-gen2.c
===================================================================
--- pci.orig/drivers/pci/host/pci-rcar-gen2.c
+++ pci/drivers/pci/host/pci-rcar-gen2.c
@@ -98,6 +98,7 @@ struct rcar_pci_priv {
struct resource io_res;
struct resource mem_res;
struct resource *cfg_res;
+ unsigned busnr;
int irq;
unsigned long window_size;
};
@@ -312,8 +313,8 @@ static int rcar_pci_setup(int nr, struct
pci_add_resource(&sys->resources, &priv->io_res);
pci_add_resource(&sys->resources, &priv->mem_res);
- /* Setup bus number based on platform device id */
- sys->busnr = to_platform_device(priv->dev)->id;
+ /* Setup bus number based on platform device id / of bus-range */
+ sys->busnr = priv->busnr;
return 1;
}
@@ -366,6 +367,23 @@ static int rcar_pci_probe(struct platfor
priv->window_size = SZ_1G;
+ if (pdev->dev.of_node) {
+ struct resource busnr;
+ int ret;
+
+ ret = of_pci_parse_bus_range(pdev->dev.of_node, &busnr);
+ if (ret < 0) {
+ dev_err(&pdev->dev, "failed to parse bus-range\n");
+ return ret;
+ }
+
+ priv->busnr = busnr.start;
+ if (busnr.end != busnr.start)
+ dev_warn(&pdev->dev, "only one bus number supported\n");
+ } else {
+ priv->busnr = pdev->id;
+ }
+
hw_private[0] = priv;
memset(&hw, 0, sizeof(hw));
hw.nr_controllers = ARRAY_SIZE(hw_private);
@@ -377,11 +395,20 @@ static int rcar_pci_probe(struct platfor
return 0;
}
+static struct of_device_id rcar_pci_of_match[] = {
+ { .compatible = "renesas,pci-r8a7790", },
+ { .compatible = "renesas,pci-r8a7791", },
+ { },
+};
+
+MODULE_DEVICE_TABLE(of, rcar_pci_of_match);
+
static struct platform_driver rcar_pci_driver = {
.driver = {
.name = "pci-rcar-gen2",
.owner = THIS_MODULE,
.suppress_bind_attrs = true,
+ .of_match_table = rcar_pci_of_match,
},
.probe = rcar_pci_probe,
};
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] pci-rcar-gen2: add device tree support
2014-05-19 21:10 [PATCH v4] pci-rcar-gen2: add device tree support Sergei Shtylyov
@ 2014-05-28 3:04 ` Bjorn Helgaas
2014-05-28 3:45 ` Simon Horman
2014-05-28 12:47 ` Arnd Bergmann
2014-05-28 13:51 ` Bjorn Helgaas
1 sibling, 2 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2014-05-28 3:04 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, horms,
grant.likely, devicetree, linux-pci, rdunlap, linux-doc, linux-sh,
Arnd Bergmann
[+cc Arnd]
On Tue, May 20, 2014 at 01:10:20AM +0400, Sergei Shtylyov wrote:
> From: Ben Dooks <ben.dooks@codethink.co.uk>
>
> Add device tree probing support to the 'pci-rcar-gen2' driver.
>
> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> [Sergei: numerous fixes/cleanups/additions]
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
I'd like to see an ack from Simon (since it changes pci-rcar-gen2.c) and
Arnd (since he pointed out some issues with the devicetree binding).
Bjorn
> ---
> The patch is against the 'next' branch of Bjorn Helgaas' 'pci.git' repo.
>
> Changes in version 4:
> - added the descriptions for the #{address|size|interrupt}-cells and
> #interrupt-map[-mask] properties to the binding document;
> - added the interrupt-related properties to the example;
> - refreshed the patch.
>
> Changes in version 3:
> - added "renesas,pci-r8a7791" to the possible "compatible" property values;
> - removed '#ifdef CONFIG_OF' around rcar_pci_of_match[] and hence of_match_ptr()
> invocation too;
> - fixed trailing whitespace in the DT parsing code;
> - removed the wrong "renessas," prefix from the binding document's file name;
> - moved the PCI device sub-nodes from the board example to the SoC example;
> - fixed labels in the board example;
> - fixed grammar and punctuation in the binding document;
> - reworded the changelog, fixed the subject.
>
> Changes in version 2:
> - merged the binding document from a separate patch;
> - moved to the "bus-range" property parsing;
> - added example to the binding document.
>
> Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt | 66 ++++++++++++++++
> drivers/pci/host/pci-rcar-gen2.c | 31 +++++++
> 2 files changed, 95 insertions(+), 2 deletions(-)
>
> Index: pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> ===================================================================
> --- /dev/null
> +++ pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> @@ -0,0 +1,66 @@
> +Renesas AHB to PCI bridge
> +-------------------------
> +
> +This is the bridge used internally to connect the USB controllers to the
> +AHB. There is one bridge instance per USB port connected to the internal
> +OHCI and EHCI controllers.
> +
> +Required properties:
> +- compatible: "renesas,pci-r8a7790" for the R8A7790 SoC;
> + "renesas,pci-r8a7791" for the R8A7791 SoC.
> +- reg: A list of physical regions to access the device: the first is
> + the operational registers for the OHCI/EHCI controllers and the
> + second is for the bridge configuration and control registers.
> +- interrupts: interrupt for the device.
> +- clocks: The reference to the device clock.
> +- bus-range: The PCI bus number range; as this is a single bus, the range
> + should be specified as the same value twice.
> +- #address-cells: must be 3.
> +- #size-cells: must be 2.
> +- #interrupt-cells: must be 1.
> +- interrupt-map: standard property used to define the mapping of the PCI
> + interrupts to the GIC interrupts.
> +- interrupt-map-mask: standard property that helps to define the interrupt
> + mapping.
> +
> +Example SoC configuration:
> +
> + pci0: pci@ee090000 {
> + compatible = "renesas,pci-r8a7790";
> + clocks = <&mstp7_clks R8A7790_CLK_EHCI>;
> + reg = <0x0 0xee090000 0x0 0xc00>,
> + <0x0 0xee080000 0x0 0x1100>;
> + interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
> + status = "disabled";
> +
> + bus-range = <0 0>;
> + #address-cells = <3>;
> + #size-cells = <2>;
> + #interrupt-cells = <1>;
> + interrupt-map-mask = <0xff00 0 0 0x7>;
> + interrupt-map = <0x0000 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> + 0x0800 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> + 0x1000 0 0 2 &gic 0 108 IRQ_TYPE_LEVEL_HIGH>;
> +
> + pci@0,1 {
> + reg = <0x800 0 0 0 0>;
> + device_type = "pci";
> + phys = <&usbphy 0 0>;
> + phy-names = "usb";
> + };
> +
> + pci@0,2 {
> + reg = <0x1000 0 0 0 0>;
> + device_type = "pci";
> + phys = <&usbphy 0 0>;
> + phy-names = "usb";
> + };
> + };
> +
> +Example board setup:
> +
> +&pci0 {
> + status = "okay";
> + pinctrl-0 = <&usb0_pins>;
> + pinctrl-names = "default";
> +};
> Index: pci/drivers/pci/host/pci-rcar-gen2.c
> ===================================================================
> --- pci.orig/drivers/pci/host/pci-rcar-gen2.c
> +++ pci/drivers/pci/host/pci-rcar-gen2.c
> @@ -98,6 +98,7 @@ struct rcar_pci_priv {
> struct resource io_res;
> struct resource mem_res;
> struct resource *cfg_res;
> + unsigned busnr;
> int irq;
> unsigned long window_size;
> };
> @@ -312,8 +313,8 @@ static int rcar_pci_setup(int nr, struct
> pci_add_resource(&sys->resources, &priv->io_res);
> pci_add_resource(&sys->resources, &priv->mem_res);
>
> - /* Setup bus number based on platform device id */
> - sys->busnr = to_platform_device(priv->dev)->id;
> + /* Setup bus number based on platform device id / of bus-range */
> + sys->busnr = priv->busnr;
> return 1;
> }
>
> @@ -366,6 +367,23 @@ static int rcar_pci_probe(struct platfor
>
> priv->window_size = SZ_1G;
>
> + if (pdev->dev.of_node) {
> + struct resource busnr;
> + int ret;
> +
> + ret = of_pci_parse_bus_range(pdev->dev.of_node, &busnr);
> + if (ret < 0) {
> + dev_err(&pdev->dev, "failed to parse bus-range\n");
> + return ret;
> + }
> +
> + priv->busnr = busnr.start;
> + if (busnr.end != busnr.start)
> + dev_warn(&pdev->dev, "only one bus number supported\n");
> + } else {
> + priv->busnr = pdev->id;
> + }
> +
> hw_private[0] = priv;
> memset(&hw, 0, sizeof(hw));
> hw.nr_controllers = ARRAY_SIZE(hw_private);
> @@ -377,11 +395,20 @@ static int rcar_pci_probe(struct platfor
> return 0;
> }
>
> +static struct of_device_id rcar_pci_of_match[] = {
> + { .compatible = "renesas,pci-r8a7790", },
> + { .compatible = "renesas,pci-r8a7791", },
> + { },
> +};
> +
> +MODULE_DEVICE_TABLE(of, rcar_pci_of_match);
> +
> static struct platform_driver rcar_pci_driver = {
> .driver = {
> .name = "pci-rcar-gen2",
> .owner = THIS_MODULE,
> .suppress_bind_attrs = true,
> + .of_match_table = rcar_pci_of_match,
> },
> .probe = rcar_pci_probe,
> };
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] pci-rcar-gen2: add device tree support
2014-05-28 3:04 ` Bjorn Helgaas
@ 2014-05-28 3:45 ` Simon Horman
2014-05-28 12:47 ` Arnd Bergmann
1 sibling, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-05-28 3:45 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Sergei Shtylyov, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, grant.likely, devicetree, linux-pci,
rdunlap, linux-doc, linux-sh, Arnd Bergmann
On Tue, May 27, 2014 at 09:04:18PM -0600, Bjorn Helgaas wrote:
> [+cc Arnd]
>
> On Tue, May 20, 2014 at 01:10:20AM +0400, Sergei Shtylyov wrote:
> > From: Ben Dooks <ben.dooks@codethink.co.uk>
> >
> > Add device tree probing support to the 'pci-rcar-gen2' driver.
> >
> > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> > [Sergei: numerous fixes/cleanups/additions]
> > Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>
> I'd like to see an ack from Simon (since it changes pci-rcar-gen2.c) and
> Arnd (since he pointed out some issues with the devicetree binding).
Acked-by: Simon Horman <horms+renesas@verge.net.au>
>
> Bjorn
>
> > ---
> > The patch is against the 'next' branch of Bjorn Helgaas' 'pci.git' repo.
> >
> > Changes in version 4:
> > - added the descriptions for the #{address|size|interrupt}-cells and
> > #interrupt-map[-mask] properties to the binding document;
> > - added the interrupt-related properties to the example;
> > - refreshed the patch.
> >
> > Changes in version 3:
> > - added "renesas,pci-r8a7791" to the possible "compatible" property values;
> > - removed '#ifdef CONFIG_OF' around rcar_pci_of_match[] and hence of_match_ptr()
> > invocation too;
> > - fixed trailing whitespace in the DT parsing code;
> > - removed the wrong "renessas," prefix from the binding document's file name;
> > - moved the PCI device sub-nodes from the board example to the SoC example;
> > - fixed labels in the board example;
> > - fixed grammar and punctuation in the binding document;
> > - reworded the changelog, fixed the subject.
> >
> > Changes in version 2:
> > - merged the binding document from a separate patch;
> > - moved to the "bus-range" property parsing;
> > - added example to the binding document.
> >
> > Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt | 66 ++++++++++++++++
> > drivers/pci/host/pci-rcar-gen2.c | 31 +++++++
> > 2 files changed, 95 insertions(+), 2 deletions(-)
> >
> > Index: pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> > ===================================================================
> > --- /dev/null
> > +++ pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> > @@ -0,0 +1,66 @@
> > +Renesas AHB to PCI bridge
> > +-------------------------
> > +
> > +This is the bridge used internally to connect the USB controllers to the
> > +AHB. There is one bridge instance per USB port connected to the internal
> > +OHCI and EHCI controllers.
> > +
> > +Required properties:
> > +- compatible: "renesas,pci-r8a7790" for the R8A7790 SoC;
> > + "renesas,pci-r8a7791" for the R8A7791 SoC.
> > +- reg: A list of physical regions to access the device: the first is
> > + the operational registers for the OHCI/EHCI controllers and the
> > + second is for the bridge configuration and control registers.
> > +- interrupts: interrupt for the device.
> > +- clocks: The reference to the device clock.
> > +- bus-range: The PCI bus number range; as this is a single bus, the range
> > + should be specified as the same value twice.
> > +- #address-cells: must be 3.
> > +- #size-cells: must be 2.
> > +- #interrupt-cells: must be 1.
> > +- interrupt-map: standard property used to define the mapping of the PCI
> > + interrupts to the GIC interrupts.
> > +- interrupt-map-mask: standard property that helps to define the interrupt
> > + mapping.
> > +
> > +Example SoC configuration:
> > +
> > + pci0: pci@ee090000 {
> > + compatible = "renesas,pci-r8a7790";
> > + clocks = <&mstp7_clks R8A7790_CLK_EHCI>;
> > + reg = <0x0 0xee090000 0x0 0xc00>,
> > + <0x0 0xee080000 0x0 0x1100>;
> > + interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
> > + status = "disabled";
> > +
> > + bus-range = <0 0>;
> > + #address-cells = <3>;
> > + #size-cells = <2>;
> > + #interrupt-cells = <1>;
> > + interrupt-map-mask = <0xff00 0 0 0x7>;
> > + interrupt-map = <0x0000 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> > + 0x0800 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> > + 0x1000 0 0 2 &gic 0 108 IRQ_TYPE_LEVEL_HIGH>;
> > +
> > + pci@0,1 {
> > + reg = <0x800 0 0 0 0>;
> > + device_type = "pci";
> > + phys = <&usbphy 0 0>;
> > + phy-names = "usb";
> > + };
> > +
> > + pci@0,2 {
> > + reg = <0x1000 0 0 0 0>;
> > + device_type = "pci";
> > + phys = <&usbphy 0 0>;
> > + phy-names = "usb";
> > + };
> > + };
> > +
> > +Example board setup:
> > +
> > +&pci0 {
> > + status = "okay";
> > + pinctrl-0 = <&usb0_pins>;
> > + pinctrl-names = "default";
> > +};
> > Index: pci/drivers/pci/host/pci-rcar-gen2.c
> > ===================================================================
> > --- pci.orig/drivers/pci/host/pci-rcar-gen2.c
> > +++ pci/drivers/pci/host/pci-rcar-gen2.c
> > @@ -98,6 +98,7 @@ struct rcar_pci_priv {
> > struct resource io_res;
> > struct resource mem_res;
> > struct resource *cfg_res;
> > + unsigned busnr;
> > int irq;
> > unsigned long window_size;
> > };
> > @@ -312,8 +313,8 @@ static int rcar_pci_setup(int nr, struct
> > pci_add_resource(&sys->resources, &priv->io_res);
> > pci_add_resource(&sys->resources, &priv->mem_res);
> >
> > - /* Setup bus number based on platform device id */
> > - sys->busnr = to_platform_device(priv->dev)->id;
> > + /* Setup bus number based on platform device id / of bus-range */
> > + sys->busnr = priv->busnr;
> > return 1;
> > }
> >
> > @@ -366,6 +367,23 @@ static int rcar_pci_probe(struct platfor
> >
> > priv->window_size = SZ_1G;
> >
> > + if (pdev->dev.of_node) {
> > + struct resource busnr;
> > + int ret;
> > +
> > + ret = of_pci_parse_bus_range(pdev->dev.of_node, &busnr);
> > + if (ret < 0) {
> > + dev_err(&pdev->dev, "failed to parse bus-range\n");
> > + return ret;
> > + }
> > +
> > + priv->busnr = busnr.start;
> > + if (busnr.end != busnr.start)
> > + dev_warn(&pdev->dev, "only one bus number supported\n");
> > + } else {
> > + priv->busnr = pdev->id;
> > + }
> > +
> > hw_private[0] = priv;
> > memset(&hw, 0, sizeof(hw));
> > hw.nr_controllers = ARRAY_SIZE(hw_private);
> > @@ -377,11 +395,20 @@ static int rcar_pci_probe(struct platfor
> > return 0;
> > }
> >
> > +static struct of_device_id rcar_pci_of_match[] = {
> > + { .compatible = "renesas,pci-r8a7790", },
> > + { .compatible = "renesas,pci-r8a7791", },
> > + { },
> > +};
> > +
> > +MODULE_DEVICE_TABLE(of, rcar_pci_of_match);
> > +
> > static struct platform_driver rcar_pci_driver = {
> > .driver = {
> > .name = "pci-rcar-gen2",
> > .owner = THIS_MODULE,
> > .suppress_bind_attrs = true,
> > + .of_match_table = rcar_pci_of_match,
> > },
> > .probe = rcar_pci_probe,
> > };
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] pci-rcar-gen2: add device tree support
2014-05-28 3:04 ` Bjorn Helgaas
2014-05-28 3:45 ` Simon Horman
@ 2014-05-28 12:47 ` Arnd Bergmann
1 sibling, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2014-05-28 12:47 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Sergei Shtylyov, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, horms, grant.likely, devicetree, linux-pci,
rdunlap, linux-doc, linux-sh
On Tuesday 27 May 2014 21:04:18 Bjorn Helgaas wrote:
> [+cc Arnd]
>
> On Tue, May 20, 2014 at 01:10:20AM +0400, Sergei Shtylyov wrote:
> > From: Ben Dooks <ben.dooks@codethink.co.uk>
> >
> > Add device tree probing support to the 'pci-rcar-gen2' driver.
> >
> > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> > [Sergei: numerous fixes/cleanups/additions]
> > Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>
> I'd like to see an ack from Simon (since it changes pci-rcar-gen2.c) and
> Arnd (since he pointed out some issues with the devicetree binding).
>
Yes, looks good to me now,
Acked-by: Arnd Bergmann <arnd@arndb.de>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] pci-rcar-gen2: add device tree support
2014-05-19 21:10 [PATCH v4] pci-rcar-gen2: add device tree support Sergei Shtylyov
2014-05-28 3:04 ` Bjorn Helgaas
@ 2014-05-28 13:51 ` Bjorn Helgaas
2014-05-29 0:10 ` Simon Horman
1 sibling, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2014-05-28 13:51 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, horms,
grant.likely, devicetree, linux-pci, rdunlap, linux-doc, linux-sh
On Tue, May 20, 2014 at 01:10:20AM +0400, Sergei Shtylyov wrote:
> From: Ben Dooks <ben.dooks@codethink.co.uk>
>
> Add device tree probing support to the 'pci-rcar-gen2' driver.
>
> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> [Sergei: numerous fixes/cleanups/additions]
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Applied to pci/host-rcar for v3.16, thanks everybody!
> ---
> The patch is against the 'next' branch of Bjorn Helgaas' 'pci.git' repo.
>
> Changes in version 4:
> - added the descriptions for the #{address|size|interrupt}-cells and
> #interrupt-map[-mask] properties to the binding document;
> - added the interrupt-related properties to the example;
> - refreshed the patch.
>
> Changes in version 3:
> - added "renesas,pci-r8a7791" to the possible "compatible" property values;
> - removed '#ifdef CONFIG_OF' around rcar_pci_of_match[] and hence of_match_ptr()
> invocation too;
> - fixed trailing whitespace in the DT parsing code;
> - removed the wrong "renessas," prefix from the binding document's file name;
> - moved the PCI device sub-nodes from the board example to the SoC example;
> - fixed labels in the board example;
> - fixed grammar and punctuation in the binding document;
> - reworded the changelog, fixed the subject.
>
> Changes in version 2:
> - merged the binding document from a separate patch;
> - moved to the "bus-range" property parsing;
> - added example to the binding document.
>
> Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt | 66 ++++++++++++++++
> drivers/pci/host/pci-rcar-gen2.c | 31 +++++++
> 2 files changed, 95 insertions(+), 2 deletions(-)
>
> Index: pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> ===================================================================
> --- /dev/null
> +++ pci/Documentation/devicetree/bindings/pci/pci-rcar-gen2.txt
> @@ -0,0 +1,66 @@
> +Renesas AHB to PCI bridge
> +-------------------------
> +
> +This is the bridge used internally to connect the USB controllers to the
> +AHB. There is one bridge instance per USB port connected to the internal
> +OHCI and EHCI controllers.
> +
> +Required properties:
> +- compatible: "renesas,pci-r8a7790" for the R8A7790 SoC;
> + "renesas,pci-r8a7791" for the R8A7791 SoC.
> +- reg: A list of physical regions to access the device: the first is
> + the operational registers for the OHCI/EHCI controllers and the
> + second is for the bridge configuration and control registers.
> +- interrupts: interrupt for the device.
> +- clocks: The reference to the device clock.
> +- bus-range: The PCI bus number range; as this is a single bus, the range
> + should be specified as the same value twice.
> +- #address-cells: must be 3.
> +- #size-cells: must be 2.
> +- #interrupt-cells: must be 1.
> +- interrupt-map: standard property used to define the mapping of the PCI
> + interrupts to the GIC interrupts.
> +- interrupt-map-mask: standard property that helps to define the interrupt
> + mapping.
> +
> +Example SoC configuration:
> +
> + pci0: pci@ee090000 {
> + compatible = "renesas,pci-r8a7790";
> + clocks = <&mstp7_clks R8A7790_CLK_EHCI>;
> + reg = <0x0 0xee090000 0x0 0xc00>,
> + <0x0 0xee080000 0x0 0x1100>;
> + interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>;
> + status = "disabled";
> +
> + bus-range = <0 0>;
> + #address-cells = <3>;
> + #size-cells = <2>;
> + #interrupt-cells = <1>;
> + interrupt-map-mask = <0xff00 0 0 0x7>;
> + interrupt-map = <0x0000 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> + 0x0800 0 0 1 &gic 0 108 IRQ_TYPE_LEVEL_HIGH
> + 0x1000 0 0 2 &gic 0 108 IRQ_TYPE_LEVEL_HIGH>;
> +
> + pci@0,1 {
> + reg = <0x800 0 0 0 0>;
> + device_type = "pci";
> + phys = <&usbphy 0 0>;
> + phy-names = "usb";
> + };
> +
> + pci@0,2 {
> + reg = <0x1000 0 0 0 0>;
> + device_type = "pci";
> + phys = <&usbphy 0 0>;
> + phy-names = "usb";
> + };
> + };
> +
> +Example board setup:
> +
> +&pci0 {
> + status = "okay";
> + pinctrl-0 = <&usb0_pins>;
> + pinctrl-names = "default";
> +};
> Index: pci/drivers/pci/host/pci-rcar-gen2.c
> ===================================================================
> --- pci.orig/drivers/pci/host/pci-rcar-gen2.c
> +++ pci/drivers/pci/host/pci-rcar-gen2.c
> @@ -98,6 +98,7 @@ struct rcar_pci_priv {
> struct resource io_res;
> struct resource mem_res;
> struct resource *cfg_res;
> + unsigned busnr;
> int irq;
> unsigned long window_size;
> };
> @@ -312,8 +313,8 @@ static int rcar_pci_setup(int nr, struct
> pci_add_resource(&sys->resources, &priv->io_res);
> pci_add_resource(&sys->resources, &priv->mem_res);
>
> - /* Setup bus number based on platform device id */
> - sys->busnr = to_platform_device(priv->dev)->id;
> + /* Setup bus number based on platform device id / of bus-range */
> + sys->busnr = priv->busnr;
> return 1;
> }
>
> @@ -366,6 +367,23 @@ static int rcar_pci_probe(struct platfor
>
> priv->window_size = SZ_1G;
>
> + if (pdev->dev.of_node) {
> + struct resource busnr;
> + int ret;
> +
> + ret = of_pci_parse_bus_range(pdev->dev.of_node, &busnr);
> + if (ret < 0) {
> + dev_err(&pdev->dev, "failed to parse bus-range\n");
> + return ret;
> + }
> +
> + priv->busnr = busnr.start;
> + if (busnr.end != busnr.start)
> + dev_warn(&pdev->dev, "only one bus number supported\n");
> + } else {
> + priv->busnr = pdev->id;
> + }
> +
> hw_private[0] = priv;
> memset(&hw, 0, sizeof(hw));
> hw.nr_controllers = ARRAY_SIZE(hw_private);
> @@ -377,11 +395,20 @@ static int rcar_pci_probe(struct platfor
> return 0;
> }
>
> +static struct of_device_id rcar_pci_of_match[] = {
> + { .compatible = "renesas,pci-r8a7790", },
> + { .compatible = "renesas,pci-r8a7791", },
> + { },
> +};
> +
> +MODULE_DEVICE_TABLE(of, rcar_pci_of_match);
> +
> static struct platform_driver rcar_pci_driver = {
> .driver = {
> .name = "pci-rcar-gen2",
> .owner = THIS_MODULE,
> .suppress_bind_attrs = true,
> + .of_match_table = rcar_pci_of_match,
> },
> .probe = rcar_pci_probe,
> };
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] pci-rcar-gen2: add device tree support
2014-05-28 13:51 ` Bjorn Helgaas
@ 2014-05-29 0:10 ` Simon Horman
0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-05-29 0:10 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Sergei Shtylyov, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, grant.likely, devicetree, linux-pci,
rdunlap, linux-doc, linux-sh
On Wed, May 28, 2014 at 07:51:54AM -0600, Bjorn Helgaas wrote:
> On Tue, May 20, 2014 at 01:10:20AM +0400, Sergei Shtylyov wrote:
> > From: Ben Dooks <ben.dooks@codethink.co.uk>
> >
> > Add device tree probing support to the 'pci-rcar-gen2' driver.
> >
> > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> > [Sergei: numerous fixes/cleanups/additions]
> > Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>
> Applied to pci/host-rcar for v3.16, thanks everybody!
Thanks Bjorn.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-05-29 0:10 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-19 21:10 [PATCH v4] pci-rcar-gen2: add device tree support Sergei Shtylyov
2014-05-28 3:04 ` Bjorn Helgaas
2014-05-28 3:45 ` Simon Horman
2014-05-28 12:47 ` Arnd Bergmann
2014-05-28 13:51 ` Bjorn Helgaas
2014-05-29 0:10 ` Simon Horman
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).