linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards
@ 2015-07-08 10:42 Roger Quadros
  2015-07-08 10:42 ` [PATCH v3 1/5] ARM: dts: am4372: Add named interrupt property for dwc3 Roger Quadros
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: tony-4v6yS6AI5VpBDgjK7y7TUQ, Joao.Pinto-HKixBCOQz3hWk0Htik3J/w,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-omap-u79uwXL29TY76Z2rM5mHXA, Roger Quadros

Hi,

Enables dual-role feaure on supported boards.

Depends on
[1] - core USB DRD support - http://thread.gmane.org/gmane.linux.kernel/1991413
[2] - dwc3 DRD support - http://thread.gmane.org/gmane.linux.usb.general/127890

Tested on am437x-gp-evm and dra7-evm.

cheers,
-roger

Felipe Balbi (1):
  ARM: dts: am4372: Add named interrupt property for dwc3

Roger Quadros (4):
  ARM: dts: omap5: Add named interrupt property for dwc3
  ARM: dts: dra7: Add named interrupt property for dwc3
  ARM: dts: dra7*-evm: Enable dual-role for usb1
  ARM: dts: am43xx: Enable dual-role on USB1

 arch/arm/boot/dts/am4372.dtsi        | 14 ++++++++++++--
 arch/arm/boot/dts/am437x-gp-evm.dts  |  2 +-
 arch/arm/boot/dts/am437x-sk-evm.dts  |  2 +-
 arch/arm/boot/dts/am43x-epos-evm.dts |  2 +-
 arch/arm/boot/dts/dra7-evm.dts       |  2 +-
 arch/arm/boot/dts/dra7.dtsi          | 21 ++++++++++++++++++---
 arch/arm/boot/dts/dra72-evm.dts      |  2 +-
 arch/arm/boot/dts/dra74x.dtsi        |  7 ++++++-
 arch/arm/boot/dts/omap5.dtsi         |  7 ++++++-
 9 files changed, 47 insertions(+), 12 deletions(-)

-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" 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 v3 1/5] ARM: dts: am4372: Add named interrupt property for dwc3
  2015-07-08 10:42 [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Roger Quadros
@ 2015-07-08 10:42 ` Roger Quadros
       [not found] ` <1436352154-28966-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi; +Cc: tony, Joao.Pinto, linux-usb, linux-kernel, linux-omap,
	Roger Quadros

From: Felipe Balbi <balbi@ti.com>

Add interrupt names so that the same can be used for OTG easily.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/boot/dts/am4372.dtsi | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index c80a3e2..3f68b27 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -859,7 +859,12 @@
 			usb1: usb@48390000 {
 				compatible = "synopsys,dwc3";
 				reg = <0x48390000 0x10000>;
-				interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 172 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				phys = <&usb2_phy1>;
 				phy-names = "usb2-phy";
 				maximum-speed = "high-speed";
@@ -883,7 +888,12 @@
 			usb2: usb@483d0000 {
 				compatible = "synopsys,dwc3";
 				reg = <0x483d0000 0x10000>;
-				interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 178 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				phys = <&usb2_phy2>;
 				phy-names = "usb2-phy";
 				maximum-speed = "high-speed";
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v3 2/5] ARM: dts: omap5: Add named interrupt property for dwc3
       [not found] ` <1436352154-28966-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
@ 2015-07-08 10:42   ` Roger Quadros
  2015-07-08 10:42   ` [PATCH v3 3/5] ARM: dts: dra7: " Roger Quadros
  1 sibling, 0 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: tony-4v6yS6AI5VpBDgjK7y7TUQ, Joao.Pinto-HKixBCOQz3hWk0Htik3J/w,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-omap-u79uwXL29TY76Z2rM5mHXA, Roger Quadros

Add interrupt names so that the same can be used for OTG easily.

Signed-off-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
---
 arch/arm/boot/dts/omap5.dtsi | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index 7d24ae0..0b25c96 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -870,7 +870,12 @@
 			dwc3@4a030000 {
 				compatible = "snps,dwc3";
 				reg = <0x4a030000 0x10000>;
-				interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				phys = <&usb2_phy>, <&usb3_phy>;
 				phy-names = "usb2-phy", "usb3-phy";
 				dr_mode = "peripheral";
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" 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 v3 3/5] ARM: dts: dra7: Add named interrupt property for dwc3
       [not found] ` <1436352154-28966-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
  2015-07-08 10:42   ` [PATCH v3 2/5] ARM: dts: omap5: " Roger Quadros
@ 2015-07-08 10:42   ` Roger Quadros
  1 sibling, 0 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: tony-4v6yS6AI5VpBDgjK7y7TUQ, Joao.Pinto-HKixBCOQz3hWk0Htik3J/w,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-omap-u79uwXL29TY76Z2rM5mHXA, Roger Quadros

Add interrupt names so that the same can be used for OTG easily.

Signed-off-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
---
 arch/arm/boot/dts/dra7.dtsi   | 21 ++++++++++++++++++---
 arch/arm/boot/dts/dra74x.dtsi |  7 ++++++-
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 8f1e25b..6596baf 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -1295,7 +1295,12 @@
 			usb1: usb@48890000 {
 				compatible = "snps,dwc3";
 				reg = <0x48890000 0x17000>;
-				interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				phys = <&usb2_phy1>, <&usb3_phy1>;
 				phy-names = "usb2-phy", "usb3-phy";
 				tx-fifo-resize;
@@ -1318,7 +1323,12 @@
 			usb2: usb@488d0000 {
 				compatible = "snps,dwc3";
 				reg = <0x488d0000 0x17000>;
-				interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				phys = <&usb2_phy2>;
 				phy-names = "usb2-phy";
 				tx-fifo-resize;
@@ -1343,7 +1353,12 @@
 			usb3: usb@48910000 {
 				compatible = "snps,dwc3";
 				reg = <0x48910000 0x17000>;
-				interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				tx-fifo-resize;
 				maximum-speed = "high-speed";
 				dr_mode = "otg";
diff --git a/arch/arm/boot/dts/dra74x.dtsi b/arch/arm/boot/dts/dra74x.dtsi
index fa995d0..feea98e 100644
--- a/arch/arm/boot/dts/dra74x.dtsi
+++ b/arch/arm/boot/dts/dra74x.dtsi
@@ -65,7 +65,12 @@
 			usb4: usb@48950000 {
 				compatible = "snps,dwc3";
 				reg = <0x48950000 0x17000>;
-				interrupts = <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>;
+				interrupts = <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>,
+					     <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>;
+				interrupt-names = "peripheral",
+						  "host",
+						  "otg";
 				tx-fifo-resize;
 				maximum-speed = "high-speed";
 				dr_mode = "otg";
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" 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 v3 4/5] ARM: dts: dra7*-evm: Enable dual-role for usb1
  2015-07-08 10:42 [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Roger Quadros
  2015-07-08 10:42 ` [PATCH v3 1/5] ARM: dts: am4372: Add named interrupt property for dwc3 Roger Quadros
       [not found] ` <1436352154-28966-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
@ 2015-07-08 10:42 ` Roger Quadros
  2015-07-08 10:42 ` [PATCH v3 5/5] ARM: dts: am43xx: Enable dual-role on USB1 Roger Quadros
  2015-07-21 10:54 ` [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Tony Lindgren
  4 siblings, 0 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi; +Cc: tony, Joao.Pinto, linux-usb, linux-kernel, linux-omap,
	Roger Quadros

Now that we have dual-role support working at USB core,
enable dual-role support for usb1 controller.

Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/boot/dts/dra7-evm.dts  | 2 +-
 arch/arm/boot/dts/dra72-evm.dts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index aa46590..9daaf46 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -550,7 +550,7 @@
 };
 
 &usb1 {
-	dr_mode = "peripheral";
+	dr_mode = "otg";
 	pinctrl-names = "default";
 	pinctrl-0 = <&usb1_pins>;
 };
diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts
index 4e1b605..2ec0985 100644
--- a/arch/arm/boot/dts/dra72-evm.dts
+++ b/arch/arm/boot/dts/dra72-evm.dts
@@ -476,7 +476,7 @@
 };
 
 &usb1 {
-	dr_mode = "peripheral";
+	dr_mode = "otg";
 	pinctrl-names = "default";
 	pinctrl-0 = <&usb1_pins>;
 };
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v3 5/5] ARM: dts: am43xx: Enable dual-role on USB1
  2015-07-08 10:42 [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Roger Quadros
                   ` (2 preceding siblings ...)
  2015-07-08 10:42 ` [PATCH v3 4/5] ARM: dts: dra7*-evm: Enable dual-role for usb1 Roger Quadros
@ 2015-07-08 10:42 ` Roger Quadros
  2015-07-21 10:54 ` [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Tony Lindgren
  4 siblings, 0 replies; 9+ messages in thread
From: Roger Quadros @ 2015-07-08 10:42 UTC (permalink / raw)
  To: balbi; +Cc: tony, Joao.Pinto, linux-usb, linux-kernel, linux-omap,
	Roger Quadros

USB1 port is micro-AB type and can function as peripheral
as well as host. Enable dual-role mode for USB1.

Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/boot/dts/am437x-gp-evm.dts  | 2 +-
 arch/arm/boot/dts/am437x-sk-evm.dts  | 2 +-
 arch/arm/boot/dts/am43x-epos-evm.dts | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/am437x-gp-evm.dts b/arch/arm/boot/dts/am437x-gp-evm.dts
index 84aa30c..eaae329 100644
--- a/arch/arm/boot/dts/am437x-gp-evm.dts
+++ b/arch/arm/boot/dts/am437x-gp-evm.dts
@@ -613,7 +613,7 @@
 };
 
 &usb1 {
-	dr_mode = "peripheral";
+	dr_mode = "otg";
 	status = "okay";
 };
 
diff --git a/arch/arm/boot/dts/am437x-sk-evm.dts b/arch/arm/boot/dts/am437x-sk-evm.dts
index c17097d..05d874c 100644
--- a/arch/arm/boot/dts/am437x-sk-evm.dts
+++ b/arch/arm/boot/dts/am437x-sk-evm.dts
@@ -539,7 +539,7 @@
 };
 
 &usb1 {
-	dr_mode = "peripheral";
+	dr_mode = "otg";
 	status = "okay";
 	pinctrl-names = "default";
 	pinctrl-0 = <&usb1_pins>;
diff --git a/arch/arm/boot/dts/am43x-epos-evm.dts b/arch/arm/boot/dts/am43x-epos-evm.dts
index 795d68a..30121a0 100644
--- a/arch/arm/boot/dts/am43x-epos-evm.dts
+++ b/arch/arm/boot/dts/am43x-epos-evm.dts
@@ -585,7 +585,7 @@
 };
 
 &usb1 {
-	dr_mode = "peripheral";
+	dr_mode = "otg";
 	status = "okay";
 };
 
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards
  2015-07-08 10:42 [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Roger Quadros
                   ` (3 preceding siblings ...)
  2015-07-08 10:42 ` [PATCH v3 5/5] ARM: dts: am43xx: Enable dual-role on USB1 Roger Quadros
@ 2015-07-21 10:54 ` Tony Lindgren
  2015-07-27  9:27   ` Roger Quadros
  4 siblings, 1 reply; 9+ messages in thread
From: Tony Lindgren @ 2015-07-21 10:54 UTC (permalink / raw)
  To: Roger Quadros; +Cc: balbi, Joao.Pinto, linux-usb, linux-kernel, linux-omap

* Roger Quadros <rogerq@ti.com> [150708 03:45]:
> Hi,
> 
> Enables dual-role feaure on supported boards.
> 
> Depends on
> [1] - core USB DRD support - http://thread.gmane.org/gmane.linux.kernel/1991413
> [2] - dwc3 DRD support - http://thread.gmane.org/gmane.linux.usb.general/127890

Is this series safe to apply separately actually? Adding the
interrupts and the mode name may not be a problem without
the related driver changes?

Regards,

Tony

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards
  2015-07-21 10:54 ` [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Tony Lindgren
@ 2015-07-27  9:27   ` Roger Quadros
  2015-08-04  8:49     ` Tony Lindgren
  0 siblings, 1 reply; 9+ messages in thread
From: Roger Quadros @ 2015-07-27  9:27 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: balbi, Joao.Pinto, linux-usb, linux-kernel, linux-omap

Tony,

On 21/07/15 13:54, Tony Lindgren wrote:
> * Roger Quadros <rogerq@ti.com> [150708 03:45]:
>> Hi,
>>
>> Enables dual-role feaure on supported boards.
>>
>> Depends on
>> [1] - core USB DRD support - http://thread.gmane.org/gmane.linux.kernel/1991413
>> [2] - dwc3 DRD support - http://thread.gmane.org/gmane.linux.usb.general/127890
> 
> Is this series safe to apply separately actually? Adding the
> interrupts and the mode name may not be a problem without
> the related driver changes?

The interrupt changes (patches 1 to 3) should be fine but let's not
add the otg mode change yet till we have the driver OTG patches in.

cheers,
-roger

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards
  2015-07-27  9:27   ` Roger Quadros
@ 2015-08-04  8:49     ` Tony Lindgren
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2015-08-04  8:49 UTC (permalink / raw)
  To: Roger Quadros; +Cc: balbi, Joao.Pinto, linux-usb, linux-kernel, linux-omap

* Roger Quadros <rogerq@ti.com> [150727 02:30]:
> Tony,
> 
> On 21/07/15 13:54, Tony Lindgren wrote:
> > * Roger Quadros <rogerq@ti.com> [150708 03:45]:
> >> Hi,
> >>
> >> Enables dual-role feaure on supported boards.
> >>
> >> Depends on
> >> [1] - core USB DRD support - http://thread.gmane.org/gmane.linux.kernel/1991413
> >> [2] - dwc3 DRD support - http://thread.gmane.org/gmane.linux.usb.general/127890
> > 
> > Is this series safe to apply separately actually? Adding the
> > interrupts and the mode name may not be a problem without
> > the related driver changes?
> 
> The interrupt changes (patches 1 to 3) should be fine but let's not
> add the otg mode change yet till we have the driver OTG patches in.

OK applying patches 1 - 3 into omap-for-v4.3/dt and ignoring
the rest.

Please resend the rest once the dependencies are merged.

Regards,

Tony

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-08-04  8:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 10:42 [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Roger Quadros
2015-07-08 10:42 ` [PATCH v3 1/5] ARM: dts: am4372: Add named interrupt property for dwc3 Roger Quadros
     [not found] ` <1436352154-28966-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2015-07-08 10:42   ` [PATCH v3 2/5] ARM: dts: omap5: " Roger Quadros
2015-07-08 10:42   ` [PATCH v3 3/5] ARM: dts: dra7: " Roger Quadros
2015-07-08 10:42 ` [PATCH v3 4/5] ARM: dts: dra7*-evm: Enable dual-role for usb1 Roger Quadros
2015-07-08 10:42 ` [PATCH v3 5/5] ARM: dts: am43xx: Enable dual-role on USB1 Roger Quadros
2015-07-21 10:54 ` [PATCH v3 0/5] ARM: dts: OMAP2+: Enable USB dual-role on supported boards Tony Lindgren
2015-07-27  9:27   ` Roger Quadros
2015-08-04  8:49     ` Tony Lindgren

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).