* [PATCH 0/5] Add USB2.0 Host support
@ 2017-08-30 13:41 Biju Das
2017-08-30 13:41 ` [PATCH 1/5] ARM: dts: r8a7743: Add internal PCI bridge nodes Biju Das
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Biju Das
Hello,
This series aims to add USB2.0 Host support on iWave RZ/G1M(r8a7743)
based board.
This series has been tested against renesas-dev tag 20170830-v4.13-rc7
This patch has documentation dependency on below patches
* PCI: rcar: Add r8a7743/5 support
https://patchwork.kernel.org/patch/9919697/
* phy: rcar-gen2: Add r8a7743/5 support
https://patchwork.kernel.org/patch/9919727/
Biju Das (5):
ARM: dts: r8a7743: Add internal PCI bridge nodes
ARM: dts: r8a7743: Add USB PHY DT support
ARM: dts: r8a7743: Link PCI USB devices to USB PHY
ARM: dts: iwg20d-q7: Enable internal PCI
ARM: dts: iwg20d-q7: Enable USB PHY
arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 26 ++++++++++
arch/arm/boot/dts/r8a7743.dtsi | 92 +++++++++++++++++++++++++++++++++
2 files changed, 118 insertions(+)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/5] ARM: dts: r8a7743: Add internal PCI bridge nodes
2017-08-30 13:41 [PATCH 0/5] Add USB2.0 Host support Biju Das
@ 2017-08-30 13:41 ` Biju Das
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-09-01 8:55 ` [PATCH 0/5] Add USB2.0 Host support Simon Horman
2 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree, linux-renesas-soc, linux-arm-kernel, Biju Das
Add device nodes for the r8a7743 internal PCI bridge devices.
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
arch/arm/boot/dts/r8a7743.dtsi | 46 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7743.dtsi b/arch/arm/boot/dts/r8a7743.dtsi
index 6dd9b0b..3f1faad 100644
--- a/arch/arm/boot/dts/r8a7743.dtsi
+++ b/arch/arm/boot/dts/r8a7743.dtsi
@@ -821,6 +821,52 @@
resets = <&cpg 311>;
status = "disabled";
};
+
+ pci0: pci@ee090000 {
+ compatible = "renesas,pci-r8a7743",
+ "renesas,pci-rcar-gen2";
+ device_type = "pci";
+ reg = <0 0xee090000 0 0xc00>,
+ <0 0xee080000 0 0x1100>;
+ interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&cpg CPG_MOD 703>;
+ power-domains = <&sysc R8A7743_PD_ALWAYS_ON>;
+ resets = <&cpg 703>;
+ status = "disabled";
+
+ bus-range = <0 0>;
+ #address-cells = <3>;
+ #size-cells = <2>;
+ #interrupt-cells = <1>;
+ ranges = <0x02000000 0 0xee080000 0 0xee080000 0 0x00010000>;
+ interrupt-map-mask = <0xff00 0 0 0x7>;
+ interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH
+ 0x0800 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH
+ 0x1000 0 0 2 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
+ };
+
+ pci1: pci@ee0d0000 {
+ compatible = "renesas,pci-r8a7743",
+ "renesas,pci-rcar-gen2";
+ device_type = "pci";
+ reg = <0 0xee0d0000 0 0xc00>,
+ <0 0xee0c0000 0 0x1100>;
+ interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&cpg CPG_MOD 703>;
+ power-domains = <&sysc R8A7743_PD_ALWAYS_ON>;
+ resets = <&cpg 703>;
+ status = "disabled";
+
+ bus-range = <1 1>;
+ #address-cells = <3>;
+ #size-cells = <2>;
+ #interrupt-cells = <1>;
+ ranges = <0x02000000 0 0xee0c0000 0 0xee0c0000 0 0x00010000>;
+ interrupt-map-mask = <0xff00 0 0 0x7>;
+ interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH
+ 0x0800 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH
+ 0x1000 0 0 2 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
+ };
};
/* External root clock */
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/5] ARM: dts: r8a7743: Add USB PHY DT support
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
@ 2017-08-30 13:41 ` Biju Das
2017-08-30 13:41 ` [PATCH 3/5] ARM: dts: r8a7743: Link PCI USB devices to USB PHY Biju Das
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Biju Das
Define the r8a7743 generic part of the USB PHY device node.
Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
---
arch/arm/boot/dts/r8a7743.dtsi | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7743.dtsi b/arch/arm/boot/dts/r8a7743.dtsi
index 3f1faad..a81d70e 100644
--- a/arch/arm/boot/dts/r8a7743.dtsi
+++ b/arch/arm/boot/dts/r8a7743.dtsi
@@ -822,6 +822,28 @@
status = "disabled";
};
+ usbphy: usb-phy@e6590100 {
+ compatible = "renesas,usb-phy-r8a7743",
+ "renesas,rcar-gen2-usb-phy";
+ reg = <0 0xe6590100 0 0x100>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ clocks = <&cpg CPG_MOD 704>;
+ clock-names = "usbhs";
+ power-domains = <&sysc R8A7743_PD_ALWAYS_ON>;
+ resets = <&cpg 704>;
+ status = "disabled";
+
+ usb0: usb-channel@0 {
+ reg = <0>;
+ #phy-cells = <1>;
+ };
+ usb2: usb-channel@2 {
+ reg = <2>;
+ #phy-cells = <1>;
+ };
+ };
+
pci0: pci@ee090000 {
compatible = "renesas,pci-r8a7743",
"renesas,pci-rcar-gen2";
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/5] ARM: dts: r8a7743: Link PCI USB devices to USB PHY
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-08-30 13:41 ` [PATCH 2/5] ARM: dts: r8a7743: Add USB PHY DT support Biju Das
@ 2017-08-30 13:41 ` Biju Das
2017-08-30 13:41 ` [PATCH 4/5] ARM: dts: iwg20d-q7: Enable internal PCI Biju Das
2017-08-30 13:41 ` [PATCH 5/5] ARM: dts: iwg20d-q7: Enable USB PHY Biju Das
3 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Biju Das
Describe the PCI USB devices that are behind the PCI bridges, adding
necessary links to the USB PHY device.
Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
---
arch/arm/boot/dts/r8a7743.dtsi | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7743.dtsi b/arch/arm/boot/dts/r8a7743.dtsi
index a81d70e..665a515 100644
--- a/arch/arm/boot/dts/r8a7743.dtsi
+++ b/arch/arm/boot/dts/r8a7743.dtsi
@@ -865,6 +865,18 @@
interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH
0x0800 0 0 1 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH
0x1000 0 0 2 &gic GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
+
+ usb@1,0 {
+ reg = <0x800 0 0 0 0>;
+ phys = <&usb0 0>;
+ phy-names = "usb";
+ };
+
+ usb@2,0 {
+ reg = <0x1000 0 0 0 0>;
+ phys = <&usb0 0>;
+ phy-names = "usb";
+ };
};
pci1: pci@ee0d0000 {
@@ -888,6 +900,18 @@
interrupt-map = <0x0000 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH
0x0800 0 0 1 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH
0x1000 0 0 2 &gic GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
+
+ usb@1,0 {
+ reg = <0x10800 0 0 0 0>;
+ phys = <&usb2 0>;
+ phy-names = "usb";
+ };
+
+ usb@2,0 {
+ reg = <0x11000 0 0 0 0>;
+ phys = <&usb2 0>;
+ phy-names = "usb";
+ };
};
};
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/5] ARM: dts: iwg20d-q7: Enable internal PCI
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-08-30 13:41 ` [PATCH 2/5] ARM: dts: r8a7743: Add USB PHY DT support Biju Das
2017-08-30 13:41 ` [PATCH 3/5] ARM: dts: r8a7743: Link PCI USB devices to USB PHY Biju Das
@ 2017-08-30 13:41 ` Biju Das
2017-08-30 13:41 ` [PATCH 5/5] ARM: dts: iwg20d-q7: Enable USB PHY Biju Das
3 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Biju Das
Enable internal AHB-PCI bridges for the USB EHCI/OHCI controllers
attached to them.
Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
---
arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
index 2b58b53..63166f9 100644
--- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
+++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
@@ -76,6 +76,16 @@
function = "sdhi1";
power-source = <1800>;
};
+
+ usb0_pins: usb0 {
+ groups = "usb0";
+ function = "usb0";
+ };
+
+ usb1_pins: usb1 {
+ groups = "usb1";
+ function = "usb1";
+ };
};
&scif0 {
@@ -125,3 +135,15 @@
reg = <0x68>;
};
};
+
+&pci0 {
+ status = "okay";
+ pinctrl-0 = <&usb0_pins>;
+ pinctrl-names = "default";
+};
+
+&pci1 {
+ status = "okay";
+ pinctrl-0 = <&usb1_pins>;
+ pinctrl-names = "default";
+};
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/5] ARM: dts: iwg20d-q7: Enable USB PHY
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
` (2 preceding siblings ...)
2017-08-30 13:41 ` [PATCH 4/5] ARM: dts: iwg20d-q7: Enable internal PCI Biju Das
@ 2017-08-30 13:41 ` Biju Das
3 siblings, 0 replies; 9+ messages in thread
From: Biju Das @ 2017-08-30 13:41 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Magnus Damm, Russell King, Chris Paterson,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Biju Das
Signed-off-by: Biju Das <biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
---
arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
index 63166f9..0136864 100644
--- a/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
+++ b/arch/arm/boot/dts/r8a7743-iwg20d-q7.dts
@@ -147,3 +147,7 @@
pinctrl-0 = <&usb1_pins>;
pinctrl-names = "default";
};
+
+&usbphy {
+ status = "okay";
+};
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 0/5] Add USB2.0 Host support
2017-08-30 13:41 [PATCH 0/5] Add USB2.0 Host support Biju Das
2017-08-30 13:41 ` [PATCH 1/5] ARM: dts: r8a7743: Add internal PCI bridge nodes Biju Das
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
@ 2017-09-01 8:55 ` Simon Horman
2 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2017-09-01 8:55 UTC (permalink / raw)
To: Biju Das
Cc: Rob Herring, Mark Rutland, Magnus Damm, Russell King,
Chris Paterson, devicetree, linux-renesas-soc, linux-arm-kernel
On Wed, Aug 30, 2017 at 02:41:08PM +0100, Biju Das wrote:
> Hello,
>
> This series aims to add USB2.0 Host support on iWave RZ/G1M(r8a7743)
> based board.
>
> This series has been tested against renesas-dev tag 20170830-v4.13-rc7
>
> This patch has documentation dependency on below patches
> * PCI: rcar: Add r8a7743/5 support
> https://patchwork.kernel.org/patch/9919697/
> * phy: rcar-gen2: Add r8a7743/5 support
> https://patchwork.kernel.org/patch/9919727/
Thanks for the testing and dependency information.
I see that the PCI dependency has been accepted by Bjorn Helgaas.
And the phy dependency is both trivial and has been acked by Rob Herring
so it seems very likely to be accepted.
On the strength of the above I have accepted this series for v4.15.
>
> Biju Das (5):
> ARM: dts: r8a7743: Add internal PCI bridge nodes
> ARM: dts: r8a7743: Add USB PHY DT support
> ARM: dts: r8a7743: Link PCI USB devices to USB PHY
> ARM: dts: iwg20d-q7: Enable internal PCI
> ARM: dts: iwg20d-q7: Enable USB PHY
>
> arch/arm/boot/dts/r8a7743-iwg20d-q7.dts | 26 ++++++++++
> arch/arm/boot/dts/r8a7743.dtsi | 92 +++++++++++++++++++++++++++++++++
> 2 files changed, 118 insertions(+)
>
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 0/5] Add USB2.0 Host support
@ 2017-10-09 13:58 Biju Das
[not found] ` <1507557541-46560-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Biju Das @ 2017-10-09 13:58 UTC (permalink / raw)
To: Rob Herring, Mark Rutland
Cc: Simon Horman, Yoshihiro Shimoda, Magnus Damm, Chris Paterson,
Fabrizio Castro, devicetree, linux-renesas-soc, Biju Das
Hello,
This series aims to add USB2.0 Host support on iWave RZ/G1E(r8a7745) based board.
This series has been tested against renesas-dev tag 20171009-v4.14-rc4
This patch has documentation dependency on below patch
* [RESEND] phy: rcar-gen2: Add r8a7743/5 support
https://patchwork.kernel.org/patch/9992587/
Biju Das (5):
ARM: dts: r8a7745: Add internal PCI bridge nodes
ARM: dts: r8a7745: Add USB PHY DT support
ARM: dts: r8a7745: Link PCI USB devices to USB PHY
ARM: dts: iwg22d-sodimm: Enable internal PCI
ARM: dts: iwg22d-sodimm: Enable USB PHY
arch/arm/boot/dts/r8a7745-iwg22d-sodimm.dts | 15 +++++
arch/arm/boot/dts/r8a7745.dtsi | 92 +++++++++++++++++++++++++++++
2 files changed, 107 insertions(+)
--
1.9.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/5] Add USB2.0 Host support
[not found] ` <1507557541-46560-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
@ 2017-10-12 10:15 ` Simon Horman
0 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2017-10-12 10:15 UTC (permalink / raw)
To: Biju Das
Cc: Rob Herring, Mark Rutland, Yoshihiro Shimoda, Magnus Damm,
Chris Paterson, Fabrizio Castro,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA
On Mon, Oct 09, 2017 at 02:58:56PM +0100, Biju Das wrote:
> Hello,
>
> This series aims to add USB2.0 Host support on iWave RZ/G1E(r8a7745) based board.
>
> This series has been tested against renesas-dev tag 20171009-v4.14-rc4
>
> This patch has documentation dependency on below patch
> * [RESEND] phy: rcar-gen2: Add r8a7743/5 support
> https://patchwork.kernel.org/patch/9992587/
>
> Biju Das (5):
> ARM: dts: r8a7745: Add internal PCI bridge nodes
> ARM: dts: r8a7745: Add USB PHY DT support
> ARM: dts: r8a7745: Link PCI USB devices to USB PHY
> ARM: dts: iwg22d-sodimm: Enable internal PCI
> ARM: dts: iwg22d-sodimm: Enable USB PHY
Thanks, applied with Geert's review tags.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-10-12 10:15 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-30 13:41 [PATCH 0/5] Add USB2.0 Host support Biju Das
2017-08-30 13:41 ` [PATCH 1/5] ARM: dts: r8a7743: Add internal PCI bridge nodes Biju Das
[not found] ` <1504100473-5528-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-08-30 13:41 ` [PATCH 2/5] ARM: dts: r8a7743: Add USB PHY DT support Biju Das
2017-08-30 13:41 ` [PATCH 3/5] ARM: dts: r8a7743: Link PCI USB devices to USB PHY Biju Das
2017-08-30 13:41 ` [PATCH 4/5] ARM: dts: iwg20d-q7: Enable internal PCI Biju Das
2017-08-30 13:41 ` [PATCH 5/5] ARM: dts: iwg20d-q7: Enable USB PHY Biju Das
2017-09-01 8:55 ` [PATCH 0/5] Add USB2.0 Host support Simon Horman
-- strict thread matches above, loose matches on Subject: below --
2017-10-09 13:58 Biju Das
[not found] ` <1507557541-46560-1-git-send-email-biju.das-kTT6dE0pTRh9uiUsa/gSgQ@public.gmane.org>
2017-10-12 10:15 ` 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).