linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1
@ 2019-06-21 15:02 Thierry Reding
  2019-06-21 15:02 ` [GIT PULL 2/5] memory: " Thierry Reding
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Thierry Reding @ 2019-06-21 15:02 UTC (permalink / raw)
  To: arm; +Cc: linux-tegra, Thierry Reding, linux-arm-kernel, Jon Hunter

Hi ARM SoC maintainers,

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-firmware

for you to fetch changes up to 61ed7ef952fc482ec8d4a966ed0d1e32df276c59:

  firmware: tegra: Early resume BPMP (2019-06-14 17:45:17 +0200)

Thanks,
Thierry

----------------------------------------------------------------
firmware: tegra: Changes for v5.3-rc1

This contains a single, simple change that resumes the BPMP driver early
so that it is available when the various consumers want to enable their
clocks.

----------------------------------------------------------------
Bitan Biswas (1):
      firmware: tegra: Early resume BPMP

 drivers/firmware/tegra/bpmp.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 2/5] memory: tegra: Changes for v5.3-rc1
  2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
@ 2019-06-21 15:02 ` Thierry Reding
  2019-06-25 12:42   ` Olof Johansson
  2019-06-21 15:02 ` [GIT PULL 3/5] soc: " Thierry Reding
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Thierry Reding @ 2019-06-21 15:02 UTC (permalink / raw)
  To: arm; +Cc: linux-tegra, Thierry Reding, linux-arm-kernel, Jon Hunter

Hi ARM SoC maintainers,

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-memory

for you to fetch changes up to 76ce48bdb303afa6e33cfbadca9d6bee23a4f559:

  memory: tegra: Fix -Wunused-const-variable (2019-06-14 18:02:02 +0200)

Thanks,
Thierry

----------------------------------------------------------------
memory: tegra: Changes for v5.3-rc1

A single fix for an unused constant variable, due to it being declared
outside the only #ifdef that it was being used from.

----------------------------------------------------------------
Nathan Huckleberry (1):
      memory: tegra: Fix -Wunused-const-variable

 drivers/memory/tegra/tegra124.c | 44 ++++++++++++++++++++---------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 3/5] soc: tegra: Changes for v5.3-rc1
  2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
  2019-06-21 15:02 ` [GIT PULL 2/5] memory: " Thierry Reding
@ 2019-06-21 15:02 ` Thierry Reding
  2019-06-25 12:42   ` Olof Johansson
  2019-06-21 15:02 ` [GIT PULL 4/5] arm64: tegra: Device tree changes " Thierry Reding
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Thierry Reding @ 2019-06-21 15:02 UTC (permalink / raw)
  To: arm; +Cc: linux-tegra, Thierry Reding, linux-arm-kernel, Jon Hunter

Hi ARM SoC maintainers,

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-soc

for you to fetch changes up to 7ac13f6dcbd59b8f99395588cd7ef31f7e3bd3c6:

  soc/tegra: Select pinctrl for Tegra194 (2019-06-13 10:44:08 +0200)

Thanks,
Thierry

----------------------------------------------------------------
soc: tegra: Changes for v5.3-rc1

This contains a set of minor fixes and cleanups for core Tegra drivers.

----------------------------------------------------------------
Krishna Yarlagadda (1):
      soc/tegra: Select pinctrl for Tegra194

Thierry Reding (4):
      soc/tegra: pmc: Fail to allocate more than one wake IRQ
      soc/tegra: pmc: Avoid crash for non-wake IRQs
      soc/tegra: pmc: Add comments clarifying wake events
      soc/tegra: fuse: Do not log error message on deferred probe

 drivers/soc/tegra/Kconfig           |  1 +
 drivers/soc/tegra/fuse/fuse-tegra.c |  6 ++++--
 drivers/soc/tegra/pmc.c             | 18 ++++++++++++++++++
 3 files changed, 23 insertions(+), 2 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 4/5] arm64: tegra: Device tree changes for v5.3-rc1
  2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
  2019-06-21 15:02 ` [GIT PULL 2/5] memory: " Thierry Reding
  2019-06-21 15:02 ` [GIT PULL 3/5] soc: " Thierry Reding
@ 2019-06-21 15:02 ` Thierry Reding
  2019-06-25 11:49   ` Olof Johansson
  2019-06-21 15:02 ` [GIT PULL 5/5] arm64: tegra: Default configuration " Thierry Reding
  2019-06-25 12:42 ` [GIT PULL 1/5] firmware: tegra: Changes " Olof Johansson
  4 siblings, 1 reply; 10+ messages in thread
From: Thierry Reding @ 2019-06-21 15:02 UTC (permalink / raw)
  To: arm; +Cc: linux-tegra, Thierry Reding, linux-arm-kernel, Jon Hunter

Hi ARM SoC maintainers,

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-arm64-dt

for you to fetch changes up to a586c88eab65619f3654194dc90d46c98e712af2:

  arm64: tegra: Enable PCIe slots in P2972-0000 board (2019-06-21 16:06:00 +0200)

Thanks,
Thierry

----------------------------------------------------------------
arm64: tegra: Device tree changes for v5.3-rc1

This contains the bulk of the Tegra changes this cycle. It has a bunch
of improvements across almost all boards. These are mostly small and not
too exciting additions.

Most notably perhaps is the continuation of Jetson Nano support, which
is now mostly on feature parity with Jetson TX1.

----------------------------------------------------------------
Jon Hunter (3):
      arm64: tegra: Fix AGIC register range
      arm64: tegra: Update Jetson TX1 GPU regulator timings
      arm64: tegra: Fix Jetson Nano GPU regulator

Joseph Lo (1):
      arm64: tegra: Add CPU cache topology for Tegra186

Manikanta Maddireddy (1):
      arm64: tegra: Add PEX DPD states as pinctrl properties

Nicolin Chen (1):
      arm64: tegra: Add INA3221 channel info for Jetson TX2

Sameer Pujar (2):
      arm64: tegra: Add ACONNECT, ADMA and AGIC nodes
      arm64: tegra: Enable ACONNECT, ADMA and AGIC

Thierry Reding (18):
      arm64: tegra: Use TEGRA186_ prefix for GPIOs
      dt-bindings: tegra186-gpio: Remove unused definitions
      arm64: tegra: Clarify that P2771 is the Jetson TX2 Developer Kit
      arm64: tegra: Clarify that P3310 is the Jetson TX2
      arm64: tegra: Clarify that P2888 is the Jetson AGX Xavier
      arm64: tegra: Make DT model property consistent
      arm64: tegra: Add VCC supply for GPIO expanders on Jetson TX2
      arm64: tegra: Add pin control states for I2C on Tegra186
      arm64: tegra: Mark architected timer as always on
      arm64: tegra: Don't use architected timer for suspend on Tegra210
      arm64: tegra: Add ID EEPROM for Jetson TX1 module
      arm64: tegra: Add ID EEPROM for Jetson TX1 Developer Kit
      arm64: tegra: Add ID EEPROM for Jetson TX2 module
      arm64: tegra: Add ID EEPROM for Jetson TX2 Developer Kit
      arm64: tegra: Add ID EEPROMs on Jetson Nano
      arm64: tegra: Enable CPU sleep on Jetson Nano
      arm64: tegra: Enable PWM on Jetson Nano
      arm64: tegra: Sort device tree nodes alphabetically

Vidya Sagar (2):
      arm64: tegra: Add P2U and PCIe controller nodes to Tegra194 DT
      arm64: tegra: Enable PCIe slots in P2972-0000 board

 arch/arm64/boot/dts/nvidia/tegra186-p2771-0000.dts |  75 ++-
 arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi     |  53 ++-
 arch/arm64/boot/dts/nvidia/tegra186.dtsi           | 176 ++++++-
 arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi     |   4 +-
 arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dts |  55 ++-
 arch/arm64/boot/dts/nvidia/tegra194.dtsi           | 509 +++++++++++++++++++++
 arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi     |  16 +-
 arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts |  13 +
 arch/arm64/boot/dts/nvidia/tegra210-p3450-0000.dts |  52 ++-
 arch/arm64/boot/dts/nvidia/tegra210.dtsi           |  22 +-
 include/dt-bindings/gpio/tegra186-gpio.h           |  41 --
 11 files changed, 937 insertions(+), 79 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [GIT PULL 5/5] arm64: tegra: Default configuration changes for v5.3-rc1
  2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
                   ` (2 preceding siblings ...)
  2019-06-21 15:02 ` [GIT PULL 4/5] arm64: tegra: Device tree changes " Thierry Reding
@ 2019-06-21 15:02 ` Thierry Reding
  2019-06-25 12:20   ` Olof Johansson
  2019-06-25 12:42 ` [GIT PULL 1/5] firmware: tegra: Changes " Olof Johansson
  4 siblings, 1 reply; 10+ messages in thread
From: Thierry Reding @ 2019-06-21 15:02 UTC (permalink / raw)
  To: arm; +Cc: linux-tegra, Thierry Reding, linux-arm-kernel, Jon Hunter

Hi ARM SoC maintainers,

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-arm64-defconfig

for you to fetch changes up to 01d6fb565b4a7858af1699727f25da2279d75deb:

  arm64: defconfig: Add Tegra194 PCIe driver (2019-06-20 13:02:27 +0200)

Thanks,
Thierry

----------------------------------------------------------------
arm64: tegra: Default configuration changes for v5.3-rc1

This enables the INA3221 power monitoring driver that is used on many of
the Jetson boards as well as Tegra194 PCIe support.

----------------------------------------------------------------
Nicolin Chen (1):
      arm64: defconfig: Add HWMON INA3221 support

Vidya Sagar (1):
      arm64: defconfig: Add Tegra194 PCIe driver

 arch/arm64/configs/defconfig | 2 ++
 1 file changed, 2 insertions(+)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 4/5] arm64: tegra: Device tree changes for v5.3-rc1
  2019-06-21 15:02 ` [GIT PULL 4/5] arm64: tegra: Device tree changes " Thierry Reding
@ 2019-06-25 11:49   ` Olof Johansson
  0 siblings, 0 replies; 10+ messages in thread
From: Olof Johansson @ 2019-06-25 11:49 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra, arm, linux-arm-kernel, Jon Hunter

On Fri, Jun 21, 2019 at 05:02:05PM +0200, Thierry Reding wrote:
> Hi ARM SoC maintainers,
> 
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-arm64-dt
> 
> for you to fetch changes up to a586c88eab65619f3654194dc90d46c98e712af2:
> 
>   arm64: tegra: Enable PCIe slots in P2972-0000 board (2019-06-21 16:06:00 +0200)
> 
> Thanks,
> Thierry
> 
> ----------------------------------------------------------------
> arm64: tegra: Device tree changes for v5.3-rc1
> 
> This contains the bulk of the Tegra changes this cycle. It has a bunch
> of improvements across almost all boards. These are mostly small and not
> too exciting additions.
> 
> Most notably perhaps is the continuation of Jetson Nano support, which
> is now mostly on feature parity with Jetson TX1.
> 
> ----------------------------------------------------------------
> Jon Hunter (3):
>       arm64: tegra: Fix AGIC register range
>       arm64: tegra: Update Jetson TX1 GPU regulator timings
>       arm64: tegra: Fix Jetson Nano GPU regulator
> 
> Joseph Lo (1):
>       arm64: tegra: Add CPU cache topology for Tegra186
> 
> Manikanta Maddireddy (1):
>       arm64: tegra: Add PEX DPD states as pinctrl properties
> 
> Nicolin Chen (1):
>       arm64: tegra: Add INA3221 channel info for Jetson TX2
> 
> Sameer Pujar (2):
>       arm64: tegra: Add ACONNECT, ADMA and AGIC nodes
>       arm64: tegra: Enable ACONNECT, ADMA and AGIC
> 
> Thierry Reding (18):
>       arm64: tegra: Use TEGRA186_ prefix for GPIOs
>       dt-bindings: tegra186-gpio: Remove unused definitions
>       arm64: tegra: Clarify that P2771 is the Jetson TX2 Developer Kit
>       arm64: tegra: Clarify that P3310 is the Jetson TX2
>       arm64: tegra: Clarify that P2888 is the Jetson AGX Xavier

Thanks for this one. The numerical-to-product mapping is quite opaque.

Merged,


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 5/5] arm64: tegra: Default configuration changes for v5.3-rc1
  2019-06-21 15:02 ` [GIT PULL 5/5] arm64: tegra: Default configuration " Thierry Reding
@ 2019-06-25 12:20   ` Olof Johansson
  0 siblings, 0 replies; 10+ messages in thread
From: Olof Johansson @ 2019-06-25 12:20 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra, arm, linux-arm-kernel, Jon Hunter

On Fri, Jun 21, 2019 at 05:02:06PM +0200, Thierry Reding wrote:
> Hi ARM SoC maintainers,
> 
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-arm64-defconfig
> 
> for you to fetch changes up to 01d6fb565b4a7858af1699727f25da2279d75deb:
> 
>   arm64: defconfig: Add Tegra194 PCIe driver (2019-06-20 13:02:27 +0200)
> 
> Thanks,
> Thierry
> 
> ----------------------------------------------------------------
> arm64: tegra: Default configuration changes for v5.3-rc1
> 
> This enables the INA3221 power monitoring driver that is used on many of
> the Jetson boards as well as Tegra194 PCIe support.
> 
> ----------------------------------------------------------------
> Nicolin Chen (1):
>       arm64: defconfig: Add HWMON INA3221 support
> 
> Vidya Sagar (1):
>       arm64: defconfig: Add Tegra194 PCIe driver

Merged, thanks!


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1
  2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
                   ` (3 preceding siblings ...)
  2019-06-21 15:02 ` [GIT PULL 5/5] arm64: tegra: Default configuration " Thierry Reding
@ 2019-06-25 12:42 ` Olof Johansson
  4 siblings, 0 replies; 10+ messages in thread
From: Olof Johansson @ 2019-06-25 12:42 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra, arm, linux-arm-kernel, Jon Hunter

On Fri, Jun 21, 2019 at 05:02:02PM +0200, Thierry Reding wrote:
> Hi ARM SoC maintainers,
> 
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-firmware
> 
> for you to fetch changes up to 61ed7ef952fc482ec8d4a966ed0d1e32df276c59:
> 
>   firmware: tegra: Early resume BPMP (2019-06-14 17:45:17 +0200)
> 
> Thanks,
> Thierry
> 
> ----------------------------------------------------------------
> firmware: tegra: Changes for v5.3-rc1
> 
> This contains a single, simple change that resumes the BPMP driver early
> so that it is available when the various consumers want to enable their
> clocks.

Merged, thanks.


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 2/5] memory: tegra: Changes for v5.3-rc1
  2019-06-21 15:02 ` [GIT PULL 2/5] memory: " Thierry Reding
@ 2019-06-25 12:42   ` Olof Johansson
  0 siblings, 0 replies; 10+ messages in thread
From: Olof Johansson @ 2019-06-25 12:42 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra, arm, linux-arm-kernel, Jon Hunter

On Fri, Jun 21, 2019 at 05:02:03PM +0200, Thierry Reding wrote:
> Hi ARM SoC maintainers,
> 
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-memory
> 
> for you to fetch changes up to 76ce48bdb303afa6e33cfbadca9d6bee23a4f559:
> 
>   memory: tegra: Fix -Wunused-const-variable (2019-06-14 18:02:02 +0200)


Merged, thanks!


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 3/5] soc: tegra: Changes for v5.3-rc1
  2019-06-21 15:02 ` [GIT PULL 3/5] soc: " Thierry Reding
@ 2019-06-25 12:42   ` Olof Johansson
  0 siblings, 0 replies; 10+ messages in thread
From: Olof Johansson @ 2019-06-25 12:42 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-tegra, arm, linux-arm-kernel, Jon Hunter

On Fri, Jun 21, 2019 at 05:02:04PM +0200, Thierry Reding wrote:
> Hi ARM SoC maintainers,
> 
> The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
> 
>   Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.3-soc
> 
> for you to fetch changes up to 7ac13f6dcbd59b8f99395588cd7ef31f7e3bd3c6:
> 
>   soc/tegra: Select pinctrl for Tegra194 (2019-06-13 10:44:08 +0200)

Merged, thanks!


-Olof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-06-25 13:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-21 15:02 [GIT PULL 1/5] firmware: tegra: Changes for v5.3-rc1 Thierry Reding
2019-06-21 15:02 ` [GIT PULL 2/5] memory: " Thierry Reding
2019-06-25 12:42   ` Olof Johansson
2019-06-21 15:02 ` [GIT PULL 3/5] soc: " Thierry Reding
2019-06-25 12:42   ` Olof Johansson
2019-06-21 15:02 ` [GIT PULL 4/5] arm64: tegra: Device tree changes " Thierry Reding
2019-06-25 11:49   ` Olof Johansson
2019-06-21 15:02 ` [GIT PULL 5/5] arm64: tegra: Default configuration " Thierry Reding
2019-06-25 12:20   ` Olof Johansson
2019-06-25 12:42 ` [GIT PULL 1/5] firmware: tegra: Changes " Olof Johansson

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