* [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
@ 2024-12-10 4:06 E Shattow
2024-12-16 20:11 ` Conor Dooley
2024-12-16 20:12 ` Conor Dooley
0 siblings, 2 replies; 8+ messages in thread
From: E Shattow @ 2024-12-10 4:06 UTC (permalink / raw)
To: Conor Dooley, Emil Renner Berthing, Rob Herring,
Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Jisheng Zhang
Cc: E Shattow, Conor Dooley, Emil Renner Berthing, linux-riscv,
devicetree, linux-kernel
Use named definition for mmc1 card detect GPIO instead of numeric literal.
Fixes: ac9a37e2d6b63 ("riscv: dts: starfive: introduce a common board dtsi for jh7110 based boards")
Signed-off-by: E Shattow <e@freeshell.de>
---
arch/riscv/boot/dts/starfive/jh7110-common.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/riscv/boot/dts/starfive/jh7110-common.dtsi b/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
index 48fb5091b817..12a90d38ab31 100644
--- a/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
+++ b/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
@@ -281,7 +281,7 @@ &mmc1 {
bus-width = <4>;
no-sdio;
no-mmc;
- cd-gpios = <&sysgpio 41 GPIO_ACTIVE_LOW>;
+ cd-gpios = <&sysgpio GPI_SYS_SDIO1_CD GPIO_ACTIVE_LOW>;
disable-wp;
cap-sd-highspeed;
post-power-on-delay-ms = <200>;
base-commit: 708d55db3edbe2ccf88d94b5f2e2b404bc0ba37c
--
2.45.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-10 4:06 [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect E Shattow
@ 2024-12-16 20:11 ` Conor Dooley
2024-12-16 20:12 ` Conor Dooley
1 sibling, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2024-12-16 20:11 UTC (permalink / raw)
To: E Shattow
Cc: Emil Renner Berthing, Rob Herring, Krzysztof Kozlowski,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Jisheng Zhang,
Conor Dooley, Emil Renner Berthing, linux-riscv, devicetree,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1107 bytes --]
On Mon, Dec 09, 2024 at 08:06:46PM -0800, E Shattow wrote:
> Use named definition for mmc1 card detect GPIO instead of numeric literal.
>
> Fixes: ac9a37e2d6b63 ("riscv: dts: starfive: introduce a common board dtsi for jh7110 based boards")
I don't think this is a fix. Don't resend for that, I'll remove the tag.
> Signed-off-by: E Shattow <e@freeshell.de>
> ---
> arch/riscv/boot/dts/starfive/jh7110-common.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/riscv/boot/dts/starfive/jh7110-common.dtsi b/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
> index 48fb5091b817..12a90d38ab31 100644
> --- a/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
> +++ b/arch/riscv/boot/dts/starfive/jh7110-common.dtsi
> @@ -281,7 +281,7 @@ &mmc1 {
> bus-width = <4>;
> no-sdio;
> no-mmc;
> - cd-gpios = <&sysgpio 41 GPIO_ACTIVE_LOW>;
> + cd-gpios = <&sysgpio GPI_SYS_SDIO1_CD GPIO_ACTIVE_LOW>;
> disable-wp;
> cap-sd-highspeed;
> post-power-on-delay-ms = <200>;
>
> base-commit: 708d55db3edbe2ccf88d94b5f2e2b404bc0ba37c
> --
> 2.45.2
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-10 4:06 [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect E Shattow
2024-12-16 20:11 ` Conor Dooley
@ 2024-12-16 20:12 ` Conor Dooley
2024-12-17 2:02 ` Hal Feng
1 sibling, 1 reply; 8+ messages in thread
From: Conor Dooley @ 2024-12-16 20:12 UTC (permalink / raw)
To: Emil Renner Berthing, Conor Dooley, Rob Herring,
Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Hal Feng, Jianlong Huang, E Shattow, Jisheng Zhang
Cc: Conor Dooley, linux-riscv, devicetree, linux-kernel,
Emil Renner Berthing
From: Conor Dooley <conor.dooley@microchip.com>
On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
> Use named definition for mmc1 card detect GPIO instead of numeric literal.
>
>
Applied to riscv-dt-for-next, thanks!
[1/1] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
https://git.kernel.org/conor/c/c96f15d79172
Thanks,
Conor.
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-16 20:12 ` Conor Dooley
@ 2024-12-17 2:02 ` Hal Feng
2024-12-17 3:25 ` E Shattow
0 siblings, 1 reply; 8+ messages in thread
From: Hal Feng @ 2024-12-17 2:02 UTC (permalink / raw)
To: Conor Dooley, Emil Renner Berthing, Rob Herring,
Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Jianlong Huang, E Shattow, Jisheng Zhang
Cc: Conor Dooley, linux-riscv@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Emil Renner Berthing
> On 17.12.24 04:13, Conor Dooley wrote:
> On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
> > Use named definition for mmc1 card detect GPIO instead of numeric literal.
> >
> >
>
> Applied to riscv-dt-for-next, thanks!
>
> [1/1] riscv: dts: starfive: jh7110-common: Use named definition for mmc1
> card detect
> https://git.kernel.org/conor/c/c96f15d79172
No, here "41" means the GPIO number, but GPI_SYS_SDIO1_CD means the
multiplexed function and should be used by pinctrl pinmux not gpio subsystem.
Although GPI-SYS_SDIO1_CD is numerically the same as 41.
Best regards,
Hal
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-17 2:02 ` Hal Feng
@ 2024-12-17 3:25 ` E Shattow
2024-12-17 18:33 ` Conor Dooley
0 siblings, 1 reply; 8+ messages in thread
From: E Shattow @ 2024-12-17 3:25 UTC (permalink / raw)
To: Hal Feng, Conor Dooley, Emil Renner Berthing, Rob Herring,
Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Jianlong Huang, Jisheng Zhang
Cc: Conor Dooley, linux-riscv@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Emil Renner Berthing
Hi, Hal
On 12/16/24 18:02, Hal Feng wrote:
>> On 17.12.24 04:13, Conor Dooley wrote:
>> On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
>>> Use named definition for mmc1 card detect GPIO instead of numeric literal.
>>>
>>>
>>
>> Applied to riscv-dt-for-next, thanks!
>>
>> [1/1] riscv: dts: starfive: jh7110-common: Use named definition for mmc1
>> card detect
>> https://git.kernel.org/conor/c/c96f15d79172
>
> No, here "41" means the GPIO number, but GPI_SYS_SDIO1_CD means the
> multiplexed function and should be used by pinctrl pinmux not gpio subsystem.
> Although GPI-SYS_SDIO1_CD is numerically the same as 41.
>
> Best regards,
> Hal
You're right, Hal. I'm confused trying to make sense of this.
From dts/upstream/src/riscv/starfive/jh7110-pinfunc.h:
"gpio nr: gpio number, 0 - 63"
And yet in dts/upstream/src/riscv/starfive/jh7110-common.dtsi there's:
> pinmux = <PINMUX(64, 0)>,
> <PINMUX(65, 0)>,
> <PINMUX(66, 0)>,
> <PINMUX(67, 0)>,
> <PINMUX(68, 0)>,
> <PINMUX(69, 0)>,
> <PINMUX(70, 0)>,
> <PINMUX(71, 0)>,
> <PINMUX(72, 0)>,
> <PINMUX(73, 0)>;
Loosely on the subject of MMC interface and GPIO numbering, what is the
above code doing? These are not GPIO numbers 0-63 so what is this?
I'm trying to understand this so I can write the Mars CM (-Lite) dts.
Conor, and Hal: sorry for the mistake there.
-E
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-17 3:25 ` E Shattow
@ 2024-12-17 18:33 ` Conor Dooley
2024-12-19 9:41 ` E Shattow
0 siblings, 1 reply; 8+ messages in thread
From: Conor Dooley @ 2024-12-17 18:33 UTC (permalink / raw)
To: E Shattow
Cc: Hal Feng, Emil Renner Berthing, Rob Herring, Krzysztof Kozlowski,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Jianlong Huang,
Jisheng Zhang, Conor Dooley, linux-riscv@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Emil Renner Berthing
[-- Attachment #1: Type: text/plain, Size: 1916 bytes --]
On Mon, Dec 16, 2024 at 07:25:59PM -0800, E Shattow wrote:
> Hi, Hal
>
> On 12/16/24 18:02, Hal Feng wrote:
> > > On 17.12.24 04:13, Conor Dooley wrote:
> > > On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
> > > > Use named definition for mmc1 card detect GPIO instead of numeric literal.
> > > >
> > > >
> > >
> > > Applied to riscv-dt-for-next, thanks!
> > >
> > > [1/1] riscv: dts: starfive: jh7110-common: Use named definition for mmc1
> > > card detect
> > > https://git.kernel.org/conor/c/c96f15d79172
> >
> > No, here "41" means the GPIO number, but GPI_SYS_SDIO1_CD means the
> > multiplexed function and should be used by pinctrl pinmux not gpio subsystem.
> > Although GPI-SYS_SDIO1_CD is numerically the same as 41.
> >
> > Best regards,
> > Hal
>
> You're right, Hal. I'm confused trying to make sense of this.
>
> From dts/upstream/src/riscv/starfive/jh7110-pinfunc.h:
>
> "gpio nr: gpio number, 0 - 63"
>
> And yet in dts/upstream/src/riscv/starfive/jh7110-common.dtsi there's:
>
> > pinmux = <PINMUX(64, 0)>,
> > <PINMUX(65, 0)>,
> > <PINMUX(66, 0)>,
> > <PINMUX(67, 0)>,
> > <PINMUX(68, 0)>,
> > <PINMUX(69, 0)>,
> > <PINMUX(70, 0)>,
> > <PINMUX(71, 0)>,
> > <PINMUX(72, 0)>,
> > <PINMUX(73, 0)>;
>
>
> Loosely on the subject of MMC interface and GPIO numbering, what is the
> above code doing? These are not GPIO numbers 0-63 so what is this?
>
> I'm trying to understand this so I can write the Mars CM (-Lite) dts.
>
> Conor, and Hal: sorry for the mistake there.
No worries, I've dropped the patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-17 18:33 ` Conor Dooley
@ 2024-12-19 9:41 ` E Shattow
2024-12-21 4:15 ` Hal Feng
0 siblings, 1 reply; 8+ messages in thread
From: E Shattow @ 2024-12-19 9:41 UTC (permalink / raw)
To: Conor Dooley
Cc: Hal Feng, Emil Renner Berthing, Rob Herring, Krzysztof Kozlowski,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Jianlong Huang,
Jisheng Zhang, Conor Dooley, linux-riscv@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Emil Renner Berthing
On 12/17/24 10:33, Conor Dooley wrote:
> On Mon, Dec 16, 2024 at 07:25:59PM -0800, E Shattow wrote:
>> Hi, Hal
>>
>> On 12/16/24 18:02, Hal Feng wrote:
>>>> On 17.12.24 04:13, Conor Dooley wrote:
>>>> On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
>>>>> Use named definition for mmc1 card detect GPIO instead of numeric literal.
>>>>>
>>>>>
>>>>
>>>> Applied to riscv-dt-for-next, thanks!
>>>>
>>>> [1/1] riscv: dts: starfive: jh7110-common: Use named definition for mmc1
>>>> card detect
>>>> https://git.kernel.org/conor/c/c96f15d79172
>>>
>>> No, here "41" means the GPIO number, but GPI_SYS_SDIO1_CD means the
>>> multiplexed function and should be used by pinctrl pinmux not gpio subsystem.
>>> Although GPI-SYS_SDIO1_CD is numerically the same as 41.
>>>
>>> Best regards,
>>> Hal
>>
>> You're right, Hal. I'm confused trying to make sense of this.
>>
>> From dts/upstream/src/riscv/starfive/jh7110-pinfunc.h:
>>
>> "gpio nr: gpio number, 0 - 63"
>>
>> And yet in dts/upstream/src/riscv/starfive/jh7110-common.dtsi there's:
>>
>>> pinmux = <PINMUX(64, 0)>,
>>> <PINMUX(65, 0)>,
>>> <PINMUX(66, 0)>,
>>> <PINMUX(67, 0)>,
>>> <PINMUX(68, 0)>,
>>> <PINMUX(69, 0)>,
>>> <PINMUX(70, 0)>,
>>> <PINMUX(71, 0)>,
>>> <PINMUX(72, 0)>,
>>> <PINMUX(73, 0)>;
>>
>>
>> Loosely on the subject of MMC interface and GPIO numbering, what is the
>> above code doing? These are not GPIO numbers 0-63 so what is this?
>>
>> I'm trying to understand this so I can write the Mars CM (-Lite) dts.
>>
>
>
>> Conor, and Hal: sorry for the mistake there.
>
> No worries, I've dropped the patch.
Okay. I was able to find pad definitions in the vendor Linux source:
https://github.com/starfive-tech/linux/blob/5dfc879916d946dcc2521ef1eccd1d8bfb06a75e/include/dt-bindings/pinctrl/starfive%2Cjh7110-pinfunc.h
There are definitions for GPIO indexes beyond 0-63:
> #define PAD_SD0_CLK 64
> #define PAD_SD0_CMD 65
> #define PAD_SD0_DATA0 66
> #define PAD_SD0_DATA1 67
> #define PAD_SD0_DATA2 68
> #define PAD_SD0_DATA3 69
> #define PAD_SD0_DATA4 70
> #define PAD_SD0_DATA5 71
> #define PAD_SD0_DATA6 72
> #define PAD_SD0_DATA7 73
> #define PAD_SD0_STRB 74
> #define PAD_GMAC1_MDC 75
> #define PAD_GMAC1_MDIO 76
> #define PAD_GMAC1_RXD0 77
> #define PAD_GMAC1_RXD1 78
> #define PAD_GMAC1_RXD2 79
> #define PAD_GMAC1_RXD3 80
> #define PAD_GMAC1_RXDV 81
> #define PAD_GMAC1_RXC 82
> #define PAD_GMAC1_TXD0 83
> #define PAD_GMAC1_TXD1 84
> #define PAD_GMAC1_TXD2 85
> #define PAD_GMAC1_TXD3 86
> #define PAD_GMAC1_TXEN 87
> #define PAD_GMAC1_TXC 88
> #define PAD_QSPI_SCLK 89
> #define PAD_QSPI_CSn0 90
> #define PAD_QSPI_DATA0 91
> #define PAD_QSPI_DATA1 92
> #define PAD_QSPI_DATA2 93
> #define PAD_QSPI_DATA3 94
Where I got lost is that these are in mainline with
include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
I did not find these pad definitions above index 63 mentioned in the
JH7110 Technical Reference Manual.
Is it worth sending a patch to use those definitions in jh7110-common.dtsi?
-E
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect
2024-12-19 9:41 ` E Shattow
@ 2024-12-21 4:15 ` Hal Feng
0 siblings, 0 replies; 8+ messages in thread
From: Hal Feng @ 2024-12-21 4:15 UTC (permalink / raw)
To: E Shattow, Conor Dooley
Cc: Emil Renner Berthing, Rob Herring, Krzysztof Kozlowski,
Paul Walmsley, Palmer Dabbelt, Albert Ou, Jianlong Huang,
Jisheng Zhang, Conor Dooley, linux-riscv@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Emil Renner Berthing
> On 19.12.24 17:42, E Shattow wrote:
> On 12/17/24 10:33, Conor Dooley wrote:
> > On Mon, Dec 16, 2024 at 07:25:59PM -0800, E Shattow wrote:
> >> Hi, Hal
> >>
> >> On 12/16/24 18:02, Hal Feng wrote:
> >>>> On 17.12.24 04:13, Conor Dooley wrote:
> >>>> On Mon, 09 Dec 2024 20:06:46 -0800, E Shattow wrote:
> >>>>> Use named definition for mmc1 card detect GPIO instead of numeric
> literal.
> >>>>>
> >>>>>
> >>>>
> >>>> Applied to riscv-dt-for-next, thanks!
> >>>>
> >>>> [1/1] riscv: dts: starfive: jh7110-common: Use named definition for
> >>>> mmc1 card detect
> >>>> https://git.kernel.org/conor/c/c96f15d79172
> >>>
> >>> No, here "41" means the GPIO number, but GPI_SYS_SDIO1_CD means
> the
> >>> multiplexed function and should be used by pinctrl pinmux not gpio
> subsystem.
> >>> Although GPI-SYS_SDIO1_CD is numerically the same as 41.
> >>>
> >>> Best regards,
> >>> Hal
> >>
> >> You're right, Hal. I'm confused trying to make sense of this.
> >>
> >> From dts/upstream/src/riscv/starfive/jh7110-pinfunc.h:
> >>
> >> "gpio nr: gpio number, 0 - 63"
This place needs to be updated.
For sysgpio:
gpio nr: gpio number, 0 - 63 when using GPIOMUX(n, ...),
6 - 63 or 82 when using PINMUX(n, 1 or 2), 64 - 74 or 89 - 94 when using PINMUX(n, 0)
For aongpio:
gpio nr: gpio number, 0 - 3 when using GPIOMUX(n, ...),
0 - 5 when using PINMUX(n, 0)
> >>
> >> And yet in dts/upstream/src/riscv/starfive/jh7110-common.dtsi there's:
> >>
> >>> pinmux = <PINMUX(64, 0)>,
> >>> <PINMUX(65, 0)>,
> >>> <PINMUX(66, 0)>,
> >>> <PINMUX(67, 0)>,
> >>> <PINMUX(68, 0)>,
> >>> <PINMUX(69, 0)>,
> >>> <PINMUX(70, 0)>,
> >>> <PINMUX(71, 0)>,
> >>> <PINMUX(72, 0)>,
> >>> <PINMUX(73, 0)>;
> >>
> >>
> >> Loosely on the subject of MMC interface and GPIO numbering, what is
> >> the above code doing? These are not GPIO numbers 0-63 so what is this?
> >>
> >> I'm trying to understand this so I can write the Mars CM (-Lite) dts.
> >>
> >
> >
> >> Conor, and Hal: sorry for the mistake there.
> >
> > No worries, I've dropped the patch.
>
> Okay. I was able to find pad definitions in the vendor Linux source:
> https://github.com/starfive-
> tech/linux/blob/5dfc879916d946dcc2521ef1eccd1d8bfb06a75e/include/dt-
> bindings/pinctrl/starfive%2Cjh7110-pinfunc.h
>
> There are definitions for GPIO indexes beyond 0-63:
>
> > #define PAD_SD0_CLK 64
> > #define PAD_SD0_CMD 65
> > #define PAD_SD0_DATA0 66
> > #define PAD_SD0_DATA1 67
> > #define PAD_SD0_DATA2 68
> > #define PAD_SD0_DATA3 69
> > #define PAD_SD0_DATA4 70
> > #define PAD_SD0_DATA5 71
> > #define PAD_SD0_DATA6 72
> > #define PAD_SD0_DATA7 73
> > #define PAD_SD0_STRB 74
> > #define PAD_GMAC1_MDC 75
> > #define PAD_GMAC1_MDIO 76
> > #define PAD_GMAC1_RXD0 77
> > #define PAD_GMAC1_RXD1 78
> > #define PAD_GMAC1_RXD2 79
> > #define PAD_GMAC1_RXD3 80
> > #define PAD_GMAC1_RXDV 81
> > #define PAD_GMAC1_RXC 82
> > #define PAD_GMAC1_TXD0 83
> > #define PAD_GMAC1_TXD1 84
> > #define PAD_GMAC1_TXD2 85
> > #define PAD_GMAC1_TXD3 86
> > #define PAD_GMAC1_TXEN 87
> > #define PAD_GMAC1_TXC 88
> > #define PAD_QSPI_SCLK 89
> > #define PAD_QSPI_CSn0 90
> > #define PAD_QSPI_DATA0 91
> > #define PAD_QSPI_DATA1 92
> > #define PAD_QSPI_DATA2 93
> > #define PAD_QSPI_DATA3 94
Yes, these pins with indexes beyond 0-63 are actually existed and
they are set to unchangeable fixed functions.
>
> Where I got lost is that these are in mainline with include/dt-
> bindings/pinctrl/starfive,jh7110-pinctrl.h
>
> I did not find these pad definitions above index 63 mentioned in the
> JH7110 Technical Reference Manual.
>
> Is it worth sending a patch to use those definitions in jh7110-common.dtsi?
Yeah, actually it will be more readable to use the definitions to replace pin 64~94.
Best regards,
Hal
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-21 13:30 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-10 4:06 [PATCH] riscv: dts: starfive: jh7110-common: Use named definition for mmc1 card detect E Shattow
2024-12-16 20:11 ` Conor Dooley
2024-12-16 20:12 ` Conor Dooley
2024-12-17 2:02 ` Hal Feng
2024-12-17 3:25 ` E Shattow
2024-12-17 18:33 ` Conor Dooley
2024-12-19 9:41 ` E Shattow
2024-12-21 4:15 ` Hal Feng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox