All of lore.kernel.org
 help / color / mirror / Atom feed
From: Drew Fustini <fustini@kernel.org>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>, Vinod Koul <vkoul@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Paul Walmsley <pjw@kernel.org>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>,
	Alexandre Ghiti <alex@ghiti.fr>,
	Jisheng Zhang <jszhang@kernel.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-gpio@vger.kernel.org, linux-phy@lists.infradead.org,
	linux-usb@vger.kernel.org, Han Gao <rabenda.cn@gmail.com>,
	Yao Zi <ziyao@disroot.org>
Subject: Re: [PATCH 02/12] clk: thead: th1520-ap: add support for MISC subsys clocks
Date: Mon, 17 Aug 2026 16:52:34 -0700	[thread overview]
Message-ID: <aoOewlbMfey0DLwp@thelio> (raw)
In-Reply-To: <3f0268a19aab46d602dffc9e14fc6683af7a20cd.camel@icenowy.me>

On Mon, Aug 17, 2026 at 12:24:26PM +0800, Icenowy Zheng wrote:
> 在 2026-08-16日的 11:12 -0700,Drew Fustini写道:
> > On Tue, Jun 09, 2026 at 09:33:22PM -0700, Drew Fustini wrote:
> > > On Mon, Jun 08, 2026 at 11:15:39PM -0700, Drew Fustini wrote:
> > > > On Tue, Jun 09, 2026 at 02:01:43PM +0800, Icenowy Zheng wrote:
> > > > > 在 2026-06-08一的 23:00 -0700,Drew Fustini写道:
> > > > > > On Thu, May 07, 2026 at 04:17:00PM +0800, Icenowy Zheng
> > > > > > wrote:
> > > > > > > The TH1520 SoC contains a MISC_SUBSYS clock controller,
> > > > > > > which
> > > > > > > allows
> > > > > > > controlling of USB related clocks and MMC/SD controller AHB
> > > > > > > bus
> > > > > > > clocks.
> > > > > > > 
> > > > > > > Add support for this clock controller, in order to enable
> > > > > > > USB
> > > > > > > support.
> > > > > > > 
> > > > > > > Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> > > > > > > ---
> > > > > > >  drivers/clk/thead/clk-th1520-ap.c | 64
> > > > > > > +++++++++++++++++++++++++++++++
> > > > > > >  1 file changed, 64 insertions(+)
> > > > > > > 
> > > > > > > diff --git a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > index 3a6847f1c950f..24f785f0b329a 100644
> > > > > > > --- a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > +++ b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > [...]
> > > > > > > @@ -1609,6 +1663,12 @@ static int th1520_clk_probe(struct
> > > > > > > platform_device *pdev)
> > > > > > >  			return ret;
> > > > > > >  	}
> > > > > > >  
> > > > > > > +	if (plat_data == &th1520_ap_platdata) {
> > > > > > > +		ret = devm_clk_hw_register(dev,
> > > > > > > &usb_suspend_div_clk.hw);
> > > > > > > +		if (ret)
> > > > > > > +			return ret;
> > > > > > > +	}
> > > > > > 
> > > > > > Should usb_suspend_div_clk.hw instead be registered under
> > > > > > 'if (plat_data == &th1520_ap_platdata)'?
> > > > > 
> > > > > Do you mean misc_platdata?
> > > > > 
> > > > > Yes, this is an copy-n-paste error that deserves a fix.
> > > > 
> > > > Hah, yes, I also had a typo :)
> > > 
> > > Assuming that gets fixed in the next rev:
> > > 
> > > Reviewed-by: Drew Fusini <fustini@kernel.org>
> > 
> > I will fixup the typo and apply to thead-clk-for-next once 7.3-rc1 is
> > released.
> 
> BTW I think the binding patch should go through your tree too.

Yes, I will plan to take patch 1 and 2 through thead-clk-for-next and
patch 3 through thead-dt-for-next.

Thanks,
Drew

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

WARNING: multiple messages have this Message-ID (diff)
From: Drew Fustini <fustini@kernel.org>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>, Vinod Koul <vkoul@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Paul Walmsley <pjw@kernel.org>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>,
	Alexandre Ghiti <alex@ghiti.fr>,
	Jisheng Zhang <jszhang@kernel.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-gpio@vger.kernel.org, linux-phy@lists.infradead.org,
	linux-usb@vger.kernel.org, Han Gao <rabenda.cn@gmail.com>,
	Yao Zi <ziyao@disroot.org>
Subject: Re: [PATCH 02/12] clk: thead: th1520-ap: add support for MISC subsys clocks
Date: Mon, 17 Aug 2026 16:52:34 -0700	[thread overview]
Message-ID: <aoOewlbMfey0DLwp@thelio> (raw)
In-Reply-To: <3f0268a19aab46d602dffc9e14fc6683af7a20cd.camel@icenowy.me>

On Mon, Aug 17, 2026 at 12:24:26PM +0800, Icenowy Zheng wrote:
> 在 2026-08-16日的 11:12 -0700,Drew Fustini写道:
> > On Tue, Jun 09, 2026 at 09:33:22PM -0700, Drew Fustini wrote:
> > > On Mon, Jun 08, 2026 at 11:15:39PM -0700, Drew Fustini wrote:
> > > > On Tue, Jun 09, 2026 at 02:01:43PM +0800, Icenowy Zheng wrote:
> > > > > 在 2026-06-08一的 23:00 -0700,Drew Fustini写道:
> > > > > > On Thu, May 07, 2026 at 04:17:00PM +0800, Icenowy Zheng
> > > > > > wrote:
> > > > > > > The TH1520 SoC contains a MISC_SUBSYS clock controller,
> > > > > > > which
> > > > > > > allows
> > > > > > > controlling of USB related clocks and MMC/SD controller AHB
> > > > > > > bus
> > > > > > > clocks.
> > > > > > > 
> > > > > > > Add support for this clock controller, in order to enable
> > > > > > > USB
> > > > > > > support.
> > > > > > > 
> > > > > > > Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> > > > > > > ---
> > > > > > >  drivers/clk/thead/clk-th1520-ap.c | 64
> > > > > > > +++++++++++++++++++++++++++++++
> > > > > > >  1 file changed, 64 insertions(+)
> > > > > > > 
> > > > > > > diff --git a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > index 3a6847f1c950f..24f785f0b329a 100644
> > > > > > > --- a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > +++ b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > [...]
> > > > > > > @@ -1609,6 +1663,12 @@ static int th1520_clk_probe(struct
> > > > > > > platform_device *pdev)
> > > > > > >  			return ret;
> > > > > > >  	}
> > > > > > >  
> > > > > > > +	if (plat_data == &th1520_ap_platdata) {
> > > > > > > +		ret = devm_clk_hw_register(dev,
> > > > > > > &usb_suspend_div_clk.hw);
> > > > > > > +		if (ret)
> > > > > > > +			return ret;
> > > > > > > +	}
> > > > > > 
> > > > > > Should usb_suspend_div_clk.hw instead be registered under
> > > > > > 'if (plat_data == &th1520_ap_platdata)'?
> > > > > 
> > > > > Do you mean misc_platdata?
> > > > > 
> > > > > Yes, this is an copy-n-paste error that deserves a fix.
> > > > 
> > > > Hah, yes, I also had a typo :)
> > > 
> > > Assuming that gets fixed in the next rev:
> > > 
> > > Reviewed-by: Drew Fusini <fustini@kernel.org>
> > 
> > I will fixup the typo and apply to thead-clk-for-next once 7.3-rc1 is
> > released.
> 
> BTW I think the binding patch should go through your tree too.

Yes, I will plan to take patch 1 and 2 through thead-clk-for-next and
patch 3 through thead-dt-for-next.

Thanks,
Drew

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

WARNING: multiple messages have this Message-ID (diff)
From: Drew Fustini <fustini@kernel.org>
To: Icenowy Zheng <uwu@icenowy.me>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>, Vinod Koul <vkoul@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Paul Walmsley <pjw@kernel.org>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>,
	Alexandre Ghiti <alex@ghiti.fr>,
	Jisheng Zhang <jszhang@kernel.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-riscv@lists.infradead.org, linux-clk@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-gpio@vger.kernel.org, linux-phy@lists.infradead.org,
	linux-usb@vger.kernel.org, Han Gao <rabenda.cn@gmail.com>,
	Yao Zi <ziyao@disroot.org>
Subject: Re: [PATCH 02/12] clk: thead: th1520-ap: add support for MISC subsys clocks
Date: Mon, 17 Aug 2026 16:52:34 -0700	[thread overview]
Message-ID: <aoOewlbMfey0DLwp@thelio> (raw)
In-Reply-To: <3f0268a19aab46d602dffc9e14fc6683af7a20cd.camel@icenowy.me>

On Mon, Aug 17, 2026 at 12:24:26PM +0800, Icenowy Zheng wrote:
> 在 2026-08-16日的 11:12 -0700,Drew Fustini写道:
> > On Tue, Jun 09, 2026 at 09:33:22PM -0700, Drew Fustini wrote:
> > > On Mon, Jun 08, 2026 at 11:15:39PM -0700, Drew Fustini wrote:
> > > > On Tue, Jun 09, 2026 at 02:01:43PM +0800, Icenowy Zheng wrote:
> > > > > 在 2026-06-08一的 23:00 -0700,Drew Fustini写道:
> > > > > > On Thu, May 07, 2026 at 04:17:00PM +0800, Icenowy Zheng
> > > > > > wrote:
> > > > > > > The TH1520 SoC contains a MISC_SUBSYS clock controller,
> > > > > > > which
> > > > > > > allows
> > > > > > > controlling of USB related clocks and MMC/SD controller AHB
> > > > > > > bus
> > > > > > > clocks.
> > > > > > > 
> > > > > > > Add support for this clock controller, in order to enable
> > > > > > > USB
> > > > > > > support.
> > > > > > > 
> > > > > > > Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> > > > > > > ---
> > > > > > >  drivers/clk/thead/clk-th1520-ap.c | 64
> > > > > > > +++++++++++++++++++++++++++++++
> > > > > > >  1 file changed, 64 insertions(+)
> > > > > > > 
> > > > > > > diff --git a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > index 3a6847f1c950f..24f785f0b329a 100644
> > > > > > > --- a/drivers/clk/thead/clk-th1520-ap.c
> > > > > > > +++ b/drivers/clk/thead/clk-th1520-ap.c
> > > > > > [...]
> > > > > > > @@ -1609,6 +1663,12 @@ static int th1520_clk_probe(struct
> > > > > > > platform_device *pdev)
> > > > > > >  			return ret;
> > > > > > >  	}
> > > > > > >  
> > > > > > > +	if (plat_data == &th1520_ap_platdata) {
> > > > > > > +		ret = devm_clk_hw_register(dev,
> > > > > > > &usb_suspend_div_clk.hw);
> > > > > > > +		if (ret)
> > > > > > > +			return ret;
> > > > > > > +	}
> > > > > > 
> > > > > > Should usb_suspend_div_clk.hw instead be registered under
> > > > > > 'if (plat_data == &th1520_ap_platdata)'?
> > > > > 
> > > > > Do you mean misc_platdata?
> > > > > 
> > > > > Yes, this is an copy-n-paste error that deserves a fix.
> > > > 
> > > > Hah, yes, I also had a typo :)
> > > 
> > > Assuming that gets fixed in the next rev:
> > > 
> > > Reviewed-by: Drew Fusini <fustini@kernel.org>
> > 
> > I will fixup the typo and apply to thead-clk-for-next once 7.3-rc1 is
> > released.
> 
> BTW I think the binding patch should go through your tree too.

Yes, I will plan to take patch 1 and 2 through thead-clk-for-next and
patch 3 through thead-dt-for-next.

Thanks,
Drew

  reply	other threads:[~2026-08-17 23:52 UTC|newest]

Thread overview: 114+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-07  8:16 [PATCH 00/12] Add TH1520 USB support Icenowy Zheng
2026-05-07  8:16 ` Icenowy Zheng
2026-05-07  8:16 ` Icenowy Zheng
2026-05-07  8:16 ` [PATCH 01/12] dt-bindings: clock: thead: add TH1520 MISC subsys clock controller Icenowy Zheng
2026-05-07  8:16   ` Icenowy Zheng
2026-05-07  8:16   ` Icenowy Zheng
2026-05-07 17:26   ` Conor Dooley
2026-05-07 17:26     ` Conor Dooley
2026-05-07 17:26     ` Conor Dooley
2026-06-09  3:26   ` Drew Fustini
2026-06-09  3:26     ` Drew Fustini
2026-06-09  3:26     ` Drew Fustini
2026-05-07  8:17 ` [PATCH 02/12] clk: thead: th1520-ap: add support for MISC subsys clocks Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-06-09  6:00   ` Drew Fustini
2026-06-09  6:00     ` Drew Fustini
2026-06-09  6:00     ` Drew Fustini
2026-06-09  6:01     ` Icenowy Zheng
2026-06-09  6:01       ` Icenowy Zheng
2026-06-09  6:01       ` Icenowy Zheng
2026-06-09  6:15       ` Drew Fustini
2026-06-09  6:15         ` Drew Fustini
2026-06-09  6:15         ` Drew Fustini
2026-06-10  4:33         ` Drew Fustini
2026-06-10  4:33           ` Drew Fustini
2026-06-10  4:33           ` Drew Fustini
2026-08-16 18:12           ` Drew Fustini
2026-08-16 18:12             ` Drew Fustini
2026-08-16 18:12             ` Drew Fustini
2026-08-17  4:24             ` Icenowy Zheng
2026-08-17  4:24               ` Icenowy Zheng
2026-08-17  4:24               ` Icenowy Zheng
2026-08-17 23:52               ` Drew Fustini [this message]
2026-08-17 23:52                 ` Drew Fustini
2026-08-17 23:52                 ` Drew Fustini
2026-05-07  8:17 ` [PATCH 03/12] riscv: dts: thead: add device tree node for MISC clock controller Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-06-09  5:14   ` Drew Fustini
2026-06-09  5:14     ` Drew Fustini
2026-06-09  5:14     ` Drew Fustini
2026-06-09  5:35     ` Icenowy Zheng
2026-06-09  5:35       ` Icenowy Zheng
2026-06-09  5:35       ` Icenowy Zheng
2026-06-09  6:16       ` Drew Fustini
2026-06-09  6:16         ` Drew Fustini
2026-06-09  6:16         ` Drew Fustini
2026-08-17 23:49         ` Drew Fustini
2026-08-17 23:49           ` Drew Fustini
2026-08-17 23:49           ` Drew Fustini
2026-05-07  8:17 ` [PATCH 04/12] dt-bindings: phy: add binding for T-Head TH1520 USB PHY Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07 17:26   ` Conor Dooley
2026-05-07 17:26     ` Conor Dooley
2026-05-07 17:26     ` Conor Dooley
2026-05-07  8:17 ` [PATCH 05/12] phy: add a driver " Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-10  7:44   ` Vinod Koul
2026-05-10  7:44     ` Vinod Koul
2026-05-10  7:44     ` Vinod Koul
2026-05-10  9:17     ` Icenowy Zheng
2026-05-10  9:17       ` Icenowy Zheng
2026-05-10  9:17       ` Icenowy Zheng
2026-05-11 16:16       ` Vinod Koul
2026-05-11 16:16         ` Vinod Koul
2026-05-11 16:16         ` Vinod Koul
2026-05-07  8:17 ` [PATCH 06/12] riscv: dts: thead: add device nodes for USB Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17 ` [PATCH 07/12] dt-bindings: gpio: dwapb: allow GPIO hogs Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07 17:25   ` Conor Dooley
2026-05-07 17:25     ` Conor Dooley
2026-05-07 17:25     ` Conor Dooley
2026-05-07  8:17 ` [PATCH 08/12] dt-bindings: usb: vialab,vl817: allow ports property Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07 17:25   ` Conor Dooley
2026-05-07 17:25     ` Conor Dooley
2026-05-07 17:25     ` Conor Dooley
2026-05-07  8:17 ` [PATCH 09/12] riscv: dts: thead: lpi4a: sort nodes Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17 ` [PATCH 10/12] riscv: dts: thead: Add TH1520 I2C nodes Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17 ` [PATCH 11/12] riscv: dts: thead: Add Lichee Pi 4A IO expansions Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-07-10 14:56   ` Icenowy Zheng
2026-07-10 14:56     ` Icenowy Zheng
2026-07-10 14:56     ` Icenowy Zheng
2026-07-10 15:55     ` Drew Fustini
2026-07-10 15:55       ` Drew Fustini
2026-07-10 15:55       ` Drew Fustini
2026-05-07  8:17 ` [PATCH 12/12] riscv: dts: thead: enable USB3 ports on Lichee Pi 4A Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-07  8:17   ` Icenowy Zheng
2026-05-11 10:54 ` (subset) [PATCH 00/12] Add TH1520 USB support Bartosz Golaszewski
2026-05-11 10:54   ` Bartosz Golaszewski
2026-05-11 10:54   ` Bartosz Golaszewski
2026-06-09  4:17 ` Drew Fustini
2026-06-09  4:17   ` Drew Fustini
2026-06-09  4:17   ` Drew Fustini
2026-06-09  5:10   ` Icenowy Zheng
2026-06-09  5:10     ` Icenowy Zheng
2026-06-09  5:10     ` Icenowy Zheng
2026-06-09  6:14     ` Drew Fustini
2026-06-09  6:14       ` Drew Fustini
2026-06-09  6:14       ` Drew Fustini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aoOewlbMfey0DLwp@thelio \
    --to=fustini@kernel.org \
    --cc=alex@ghiti.fr \
    --cc=aou@eecs.berkeley.edu \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=guoren@kernel.org \
    --cc=jszhang@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=neil.armstrong@linaro.org \
    --cc=p.zabel@pengutronix.de \
    --cc=palmer@dabbelt.com \
    --cc=pjw@kernel.org \
    --cc=rabenda.cn@gmail.com \
    --cc=robh@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=uwu@icenowy.me \
    --cc=vkoul@kernel.org \
    --cc=wefu@redhat.com \
    --cc=ziyao@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.