* [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support
@ 2025-02-27 11:18 Kever Yang
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Kever Yang @ 2025-02-27 11:18 UTC (permalink / raw)
To: heiko
Cc: linux-rockchip, Kever Yang, Simon Xue, Guenter Roeck, linux-usb,
Chris Morgan, Frank Wang, Jamie Iles, Bjorn Helgaas, linux-pci,
Jonas Karlman, Johan Jonker, David Airlie, dri-devel, linux-i2c,
Shawn Lin, Simona Vetter, Elaine Zhang, Conor Dooley, Finley Xiao,
Maxime Ripard, Krzysztof Wilczyński, FUKAUMI Naoki,
linux-pwm, Krzysztof Kozlowski, linux-serial, Michael Riesch,
Greg Kroah-Hartman, ulf.hansson, Jiri Slaby, Detlev Casanova,
Andi Shyti, devicetree, Diederik de Haas, linux-watchdog,
Rob Herring, Cristian Ciocaltea, Wim Van Sebroeck, Shresth Prasad,
Tim Lunn, Lorenzo Pieralisi, Maarten Lankhorst, linux-arm-kernel,
Jisheng Zhang, Dragan Simic, Mark Brown, linux-mmc, linux-kernel,
linux-spi, Andy Yan, Manivannan Sadhasivam, Thomas Zimmermann,
Uwe Kleine-König
This patch set adds rk3562 SoC and its evb support.
I have split out patches need driver change for different subsystem.
And all the modules with dt-binding document update in this patch set
do not need any driver change. I put them together to make it clear we
have a new SoC and board to use the new compatible. Please pick up the
patch for your subsystem, or please let me know if the patch has to
send separate.
Test with GMAC, USB, PCIe, EMMC, SD Card.
This patch set is base on the patch set for rk3576 evb1 support.
V2:
https://lore.kernel.org/linux-rockchip/b4df8a73-58a2-4765-a9e4-3513cb2bc720@rock-chips.com/T/
Changes in v3:
- Rebase the change base on rk3576 pcie patches
- Updae to fix dt_binding_check fail
- update commit msg
- Collect review tag
- Update the commit message,
- remove the change for clock maxItems
- Collect reveiw tag
- Collect review tag
- Update the commit message
- Update commit message and add per device schema for clock name change
- Update the commit message and collect the Acked-by tag.
- Collect the Acked-by tag
- remove i2c/serial/spi alias
- add soc node
Changes in v2:
- Update in sort order
- remove grf in cru
- Update some properties order
Finley Xiao (2):
arm64: dts: rockchip: add core dtsi for RK3562 Soc
arm64: dts: rockchip: Add RK3562 evb2 devicetree
Kever Yang (13):
dt-bindings: PCI: dwc: rockchip: Add rk3562 support
dt-bindings: mmc: Add support for rk3562 eMMC
dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562
dt-bindings: i2c: i2c-rk3x: Add rk3562 support
dt-bindings: gpu: Add rockchip,rk3562-mali compatible
dt-bindings: watchdog: Add rk3562 compatible
dt-bindings: spi: Add rk3562 support
dt-bindings: serial: snps-dw-apb-uart: Add support for rk3562
dt-bindings: usb: dwc3: Add support for rk3562
dt-bindings: pwm: rockchip: Add rockchip,rk3562-pwm
dt-bindings: rockchip: pmu: Add rk3562 compatible
dt-bindings: soc: rockchip: Add rk3562 syscon compatibles
dt-bindings: arm: rockchip: Add rk3562 evb2 board
.../devicetree/bindings/arm/rockchip.yaml | 5 +
.../devicetree/bindings/arm/rockchip/pmu.yaml | 2 +
.../bindings/gpu/arm,mali-bifrost.yaml | 1 +
.../devicetree/bindings/i2c/i2c-rk3x.yaml | 1 +
.../bindings/mmc/rockchip-dw-mshc.yaml | 1 +
.../bindings/mmc/snps,dwcmshc-sdhci.yaml | 4 +-
.../bindings/pci/rockchip-dw-pcie.yaml | 9 +-
.../devicetree/bindings/pwm/pwm-rockchip.yaml | 1 +
.../bindings/serial/snps-dw-apb-uart.yaml | 1 +
.../devicetree/bindings/soc/rockchip/grf.yaml | 7 +
.../devicetree/bindings/spi/spi-rockchip.yaml | 1 +
.../bindings/usb/rockchip,dwc3.yaml | 19 +
.../bindings/watchdog/snps,dw-wdt.yaml | 1 +
arch/arm64/boot/dts/rockchip/Makefile | 1 +
.../boot/dts/rockchip/rk3562-evb2-v10.dts | 520 ++++
.../boot/dts/rockchip/rk3562-pinctrl.dtsi | 2352 +++++++++++++++++
arch/arm64/boot/dts/rockchip/rk3562.dtsi | 1374 ++++++++++
17 files changed, 4297 insertions(+), 3 deletions(-)
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562-evb2-v10.dts
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562-pinctrl.dtsi
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562.dtsi
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC
2025-02-27 11:18 [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Kever Yang
@ 2025-02-27 11:19 ` Kever Yang
2025-02-28 20:15 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
2025-02-27 11:19 ` [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562 Kever Yang
` (2 subsequent siblings)
3 siblings, 2 replies; 9+ messages in thread
From: Kever Yang @ 2025-02-27 11:19 UTC (permalink / raw)
To: heiko
Cc: linux-rockchip, Kever Yang, devicetree, Conor Dooley, Rob Herring,
Jisheng Zhang, linux-mmc, linux-kernel, Krzysztof Kozlowski,
Ulf Hansson
The eMMC core on Rockchip's RK3562 is the same as the one already
included in RK3588. Extend the binding accordingly to allow
compatible = "rockchip,rk3562-dwcmshc", "rockchip,rk3588-dwcmshc";
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
---
Changes in v3:
- Updae to fix dt_binding_check fail
Changes in v2: None
Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
index c3d5e0230af1..2d5c9931f623 100644
--- a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
+++ b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
@@ -14,7 +14,9 @@ properties:
compatible:
oneOf:
- items:
- - const: rockchip,rk3576-dwcmshc
+ - enum:
+ - rockchip,rk3562-dwcmshc
+ - rockchip,rk3576-dwcmshc
- const: rockchip,rk3588-dwcmshc
- enum:
- rockchip,rk3568-dwcmshc
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562
2025-02-27 11:18 [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Kever Yang
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
@ 2025-02-27 11:19 ` Kever Yang
2025-02-28 20:16 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
2025-02-27 13:48 ` (subset) [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Mark Brown
2025-02-28 22:10 ` Heiko Stuebner
3 siblings, 2 replies; 9+ messages in thread
From: Kever Yang @ 2025-02-27 11:19 UTC (permalink / raw)
To: heiko
Cc: linux-rockchip, Kever Yang, devicetree, Conor Dooley, Rob Herring,
linux-mmc, linux-kernel, Krzysztof Kozlowski, linux-arm-kernel,
Ulf Hansson
The dw-mshc core on Rockchip's RK3562 is the same as the one already
included in RK3288. Extend the binding accordingly to allow
compatible = "rockchip,rk3562-dw-mshc", "rockchip,rk3288-dw-mshc";
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
---
Changes in v3:
- update commit msg
Changes in v2: None
Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml b/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
index 06df1269f247..772f592291bf 100644
--- a/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
+++ b/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
@@ -38,6 +38,7 @@ properties:
- rockchip,rk3328-dw-mshc
- rockchip,rk3368-dw-mshc
- rockchip,rk3399-dw-mshc
+ - rockchip,rk3562-dw-mshc
- rockchip,rk3568-dw-mshc
- rockchip,rk3588-dw-mshc
- rockchip,rv1108-dw-mshc
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: (subset) [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support
2025-02-27 11:18 [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Kever Yang
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
2025-02-27 11:19 ` [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562 Kever Yang
@ 2025-02-27 13:48 ` Mark Brown
2025-02-28 22:10 ` Heiko Stuebner
3 siblings, 0 replies; 9+ messages in thread
From: Mark Brown @ 2025-02-27 13:48 UTC (permalink / raw)
To: heiko, Kever Yang
Cc: linux-rockchip, Simon Xue, Guenter Roeck, linux-usb, Chris Morgan,
Frank Wang, Jamie Iles, Bjorn Helgaas, linux-pci, Jonas Karlman,
Johan Jonker, David Airlie, dri-devel, linux-i2c, Shawn Lin,
Simona Vetter, Elaine Zhang, Conor Dooley, Finley Xiao,
Maxime Ripard, Krzysztof Wilczyński, FUKAUMI Naoki,
linux-pwm, Krzysztof Kozlowski, linux-serial, Michael Riesch,
Greg Kroah-Hartman, ulf.hansson, Jiri Slaby, Detlev Casanova,
Andi Shyti, devicetree, Diederik de Haas, linux-watchdog,
Rob Herring, Cristian Ciocaltea, Wim Van Sebroeck, Shresth Prasad,
Tim Lunn, Lorenzo Pieralisi, Maarten Lankhorst, linux-arm-kernel,
Jisheng Zhang, Dragan Simic, linux-mmc, linux-kernel, linux-spi,
Andy Yan, Manivannan Sadhasivam, Thomas Zimmermann,
Uwe Kleine-König
On Thu, 27 Feb 2025 19:18:58 +0800, Kever Yang wrote:
> This patch set adds rk3562 SoC and its evb support.
>
> I have split out patches need driver change for different subsystem.
> And all the modules with dt-binding document update in this patch set
> do not need any driver change. I put them together to make it clear we
> have a new SoC and board to use the new compatible. Please pick up the
> patch for your subsystem, or please let me know if the patch has to
> send separate.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[07/15] dt-bindings: spi: Add rk3562 support
commit: 825687c1662c53ecda991adf0ecfd8dd3d864043
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
@ 2025-02-28 20:15 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
1 sibling, 0 replies; 9+ messages in thread
From: Rob Herring (Arm) @ 2025-02-28 20:15 UTC (permalink / raw)
To: Kever Yang
Cc: Jisheng Zhang, Conor Dooley, Krzysztof Kozlowski, Ulf Hansson,
linux-mmc, devicetree, linux-kernel, linux-rockchip, heiko
On Thu, 27 Feb 2025 19:19:00 +0800, Kever Yang wrote:
> The eMMC core on Rockchip's RK3562 is the same as the one already
> included in RK3588. Extend the binding accordingly to allow
>
> compatible = "rockchip,rk3562-dwcmshc", "rockchip,rk3588-dwcmshc";
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
> ---
>
> Changes in v3:
> - Updae to fix dt_binding_check fail
>
> Changes in v2: None
>
> Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562
2025-02-27 11:19 ` [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562 Kever Yang
@ 2025-02-28 20:16 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
1 sibling, 0 replies; 9+ messages in thread
From: Rob Herring (Arm) @ 2025-02-28 20:16 UTC (permalink / raw)
To: Kever Yang
Cc: linux-mmc, devicetree, heiko, linux-kernel, linux-arm-kernel,
Ulf Hansson, Conor Dooley, Krzysztof Kozlowski, linux-rockchip
On Thu, 27 Feb 2025 19:19:01 +0800, Kever Yang wrote:
> The dw-mshc core on Rockchip's RK3562 is the same as the one already
> included in RK3288. Extend the binding accordingly to allow
>
> compatible = "rockchip,rk3562-dw-mshc", "rockchip,rk3288-dw-mshc";
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
> ---
>
> Changes in v3:
> - update commit msg
>
> Changes in v2: None
>
> Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: (subset) [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support
2025-02-27 11:18 [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Kever Yang
` (2 preceding siblings ...)
2025-02-27 13:48 ` (subset) [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Mark Brown
@ 2025-02-28 22:10 ` Heiko Stuebner
3 siblings, 0 replies; 9+ messages in thread
From: Heiko Stuebner @ 2025-02-28 22:10 UTC (permalink / raw)
To: Kever Yang
Cc: Heiko Stuebner, linux-rockchip, Simon Xue, Guenter Roeck,
linux-usb, Chris Morgan, Frank Wang, Jamie Iles, Bjorn Helgaas,
linux-pci, Jonas Karlman, Johan Jonker, David Airlie, dri-devel,
linux-i2c, Shawn Lin, Simona Vetter, Elaine Zhang, Conor Dooley,
Finley Xiao, Maxime Ripard, Krzysztof Wilczyński,
FUKAUMI Naoki, linux-pwm, Krzysztof Kozlowski, linux-serial,
Michael Riesch, Greg Kroah-Hartman, ulf.hansson, Jiri Slaby,
Detlev Casanova, Andi Shyti, devicetree, Diederik de Haas,
linux-watchdog, Rob Herring, Cristian Ciocaltea, Wim Van Sebroeck,
Shresth Prasad, Tim Lunn, Lorenzo Pieralisi, Maarten Lankhorst,
linux-arm-kernel, Jisheng Zhang, Dragan Simic, Mark Brown,
linux-mmc, linux-kernel, linux-spi, Andy Yan,
Manivannan Sadhasivam, Thomas Zimmermann, Uwe Kleine-König
On Thu, 27 Feb 2025 19:18:58 +0800, Kever Yang wrote:
> This patch set adds rk3562 SoC and its evb support.
>
> I have split out patches need driver change for different subsystem.
> And all the modules with dt-binding document update in this patch set
> do not need any driver change. I put them together to make it clear we
> have a new SoC and board to use the new compatible. Please pick up the
> patch for your subsystem, or please let me know if the patch has to
> send separate.
>
> [...]
Applied, thanks!
[05/15] dt-bindings: gpu: Add rockchip,rk3562-mali compatible
commit: 049e7ac203d51fdc3a739f5f28906788e8eeea03
Best regards,
--
Heiko Stuebner <heiko@sntech.de>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
2025-02-28 20:15 ` Rob Herring (Arm)
@ 2025-03-12 11:24 ` Ulf Hansson
1 sibling, 0 replies; 9+ messages in thread
From: Ulf Hansson @ 2025-03-12 11:24 UTC (permalink / raw)
To: Kever Yang
Cc: heiko, linux-rockchip, devicetree, Conor Dooley, Rob Herring,
Jisheng Zhang, linux-mmc, linux-kernel, Krzysztof Kozlowski
On Thu, 27 Feb 2025 at 12:19, Kever Yang <kever.yang@rock-chips.com> wrote:
>
> The eMMC core on Rockchip's RK3562 is the same as the one already
> included in RK3588. Extend the binding accordingly to allow
>
> compatible = "rockchip,rk3562-dwcmshc", "rockchip,rk3588-dwcmshc";
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Applied for next, thanks!
Kind regards
Uffe
> ---
>
> Changes in v3:
> - Updae to fix dt_binding_check fail
>
> Changes in v2: None
>
> Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> index c3d5e0230af1..2d5c9931f623 100644
> --- a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> +++ b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> @@ -14,7 +14,9 @@ properties:
> compatible:
> oneOf:
> - items:
> - - const: rockchip,rk3576-dwcmshc
> + - enum:
> + - rockchip,rk3562-dwcmshc
> + - rockchip,rk3576-dwcmshc
> - const: rockchip,rk3588-dwcmshc
> - enum:
> - rockchip,rk3568-dwcmshc
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562
2025-02-27 11:19 ` [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562 Kever Yang
2025-02-28 20:16 ` Rob Herring (Arm)
@ 2025-03-12 11:24 ` Ulf Hansson
1 sibling, 0 replies; 9+ messages in thread
From: Ulf Hansson @ 2025-03-12 11:24 UTC (permalink / raw)
To: Kever Yang
Cc: heiko, linux-rockchip, devicetree, Conor Dooley, Rob Herring,
linux-mmc, linux-kernel, Krzysztof Kozlowski, linux-arm-kernel
On Thu, 27 Feb 2025 at 12:19, Kever Yang <kever.yang@rock-chips.com> wrote:
>
> The dw-mshc core on Rockchip's RK3562 is the same as the one already
> included in RK3288. Extend the binding accordingly to allow
>
> compatible = "rockchip,rk3562-dw-mshc", "rockchip,rk3288-dw-mshc";
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Applied for next, thanks!
Kind regards
Uffe
> ---
>
> Changes in v3:
> - update commit msg
>
> Changes in v2: None
>
> Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml b/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
> index 06df1269f247..772f592291bf 100644
> --- a/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
> +++ b/Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
> @@ -38,6 +38,7 @@ properties:
> - rockchip,rk3328-dw-mshc
> - rockchip,rk3368-dw-mshc
> - rockchip,rk3399-dw-mshc
> + - rockchip,rk3562-dw-mshc
> - rockchip,rk3568-dw-mshc
> - rockchip,rk3588-dw-mshc
> - rockchip,rv1108-dw-mshc
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-03-12 11:25 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-27 11:18 [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Kever Yang
2025-02-27 11:19 ` [PATCH v3 02/15] dt-bindings: mmc: Add support for rk3562 eMMC Kever Yang
2025-02-28 20:15 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
2025-02-27 11:19 ` [PATCH v3 03/15] dt-bindings: mmc: rockchip-dw-mshc: Add support for rk3562 Kever Yang
2025-02-28 20:16 ` Rob Herring (Arm)
2025-03-12 11:24 ` Ulf Hansson
2025-02-27 13:48 ` (subset) [PATCH v3 00/15] rockchip: Add rk3562 SoC and evb support Mark Brown
2025-02-28 22:10 ` Heiko Stuebner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox