* [PATCH] ARM: dts: stm32: Deduplicate DSI node
@ 2023-05-31 23:10 Marek Vasut
2023-06-01 16:46 ` Raphael Gallais-Pou
2023-07-11 9:01 ` Alexandre TORGUE
0 siblings, 2 replies; 5+ messages in thread
From: Marek Vasut @ 2023-05-31 23:10 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Marek Vasut, Alexandre Torgue, Conor Dooley, Krzysztof Kozlowski,
Maxime Coquelin, Raphael Gallais-Pou, Rob Herring, devicetree,
linux-stm32
All boards using the DSI node duplicate the same pattern common pattern
in board DTs, that pattern is ports with endpoint labels and the same
in-SoC regulator connection. Move that common pattern into stm32mp157.dtsi
instead.
The two boards which do define panel@0 directly in the DSI bridge node now
have #address-cells/#size-cells in their board DT instead of it being in
stm32mp157.dtsi and activated incorrectly for all boards, even the ones
which use e.g. another DSI-to-something bridge.
Signed-off-by: Marek Vasut <marex@denx.de>
---
Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: Conor Dooley <conor+dt@kernel.org>
Cc: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-stm32@st-md-mailman.stormreply.com
---
arch/arm/boot/dts/stm32mp157.dtsi | 18 ++++++++++++
...tm32mp157a-icore-stm32mp1-ctouch2-of10.dts | 24 ++++------------
.../stm32mp157a-icore-stm32mp1-edimm2.2.dts | 28 ++++++-------------
arch/arm/boot/dts/stm32mp157c-dk2.dts | 28 ++++++-------------
arch/arm/boot/dts/stm32mp157c-ev1.dts | 28 ++++++-------------
5 files changed, 48 insertions(+), 78 deletions(-)
diff --git a/arch/arm/boot/dts/stm32mp157.dtsi b/arch/arm/boot/dts/stm32mp157.dtsi
index 5e733cd16ff9e..6197d878894de 100644
--- a/arch/arm/boot/dts/stm32mp157.dtsi
+++ b/arch/arm/boot/dts/stm32mp157.dtsi
@@ -22,9 +22,27 @@ dsi: dsi@5a000000 {
reg = <0x5a000000 0x800>;
clocks = <&rcc DSI_K>, <&clk_hse>, <&rcc DSI_PX>;
clock-names = "pclk", "ref", "px_clk";
+ phy-dsi-supply = <®18>;
resets = <&rcc DSI_R>;
reset-names = "apb";
status = "disabled";
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+ dsi_in: endpoint {
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+ dsi_out: endpoint {
+ };
+ };
+ };
};
};
};
diff --git a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
index 4279b26547dfd..df97e03d2a5ac 100644
--- a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
+++ b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
@@ -46,26 +46,14 @@ panel_in_lvds: endpoint {
&dsi {
status = "okay";
- phy-dsi-supply = <®18>;
-
- ports {
- #address-cells = <1>;
- #size-cells = <0>;
+};
- port@0 {
- reg = <0>;
- dsi_in: endpoint {
- remote-endpoint = <<dc_ep0_out>;
- };
- };
+&dsi_in {
+ remote-endpoint = <<dc_ep0_out>;
+};
- port@1 {
- reg = <1>;
- dsi_out: endpoint {
- remote-endpoint = <&bridge_in>;
- };
- };
- };
+&dsi_out {
+ remote-endpoint = <&bridge_in>;
};
&i2c6 {
diff --git a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
index efba542898207..f8e4043463964 100644
--- a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
+++ b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
@@ -46,26 +46,14 @@ panel_out_bridge: endpoint {
&dsi {
status = "okay";
- phy-dsi-supply = <®18>;
-
- ports {
- #address-cells = <1>;
- #size-cells = <0>;
+};
- port@0 {
- reg = <0>;
- dsi_in_ltdc: endpoint {
- remote-endpoint = <<dc_out_dsi>;
- };
- };
+&dsi_in {
+ remote-endpoint = <<dc_out_dsi>;
+};
- port@1 {
- reg = <1>;
- dsi_out_bridge: endpoint {
- remote-endpoint = <&bridge_in_dsi>;
- };
- };
- };
+&dsi_out {
+ remote-endpoint = <&bridge_in_dsi>;
};
&i2c6 {
@@ -88,7 +76,7 @@ ports {
port@0 {
reg = <0>;
bridge_in_dsi: endpoint {
- remote-endpoint = <&dsi_out_bridge>;
+ remote-endpoint = <&dsi_out>;
data-lanes = <1 2>;
};
};
@@ -108,7 +96,7 @@ <dc {
port {
ltdc_out_dsi: endpoint {
- remote-endpoint = <&dsi_in_ltdc>;
+ remote-endpoint = <&dsi_in>;
};
};
};
diff --git a/arch/arm/boot/dts/stm32mp157c-dk2.dts b/arch/arm/boot/dts/stm32mp157c-dk2.dts
index 4bef2300ed7ca..510cca5acb79c 100644
--- a/arch/arm/boot/dts/stm32mp157c-dk2.dts
+++ b/arch/arm/boot/dts/stm32mp157c-dk2.dts
@@ -34,26 +34,6 @@ &dsi {
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
- phy-dsi-supply = <®18>;
-
- ports {
- #address-cells = <1>;
- #size-cells = <0>;
-
- port@0 {
- reg = <0>;
- dsi_in: endpoint {
- remote-endpoint = <<dc_ep1_out>;
- };
- };
-
- port@1 {
- reg = <1>;
- dsi_out: endpoint {
- remote-endpoint = <&panel_in>;
- };
- };
- };
panel@0 {
compatible = "orisetech,otm8009a";
@@ -70,6 +50,14 @@ panel_in: endpoint {
};
};
+&dsi_in {
+ remote-endpoint = <<dc_ep1_out>;
+};
+
+&dsi_out {
+ remote-endpoint = <&panel_in>;
+};
+
&i2c1 {
touchscreen@38 {
compatible = "focaltech,ft6236";
diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts b/arch/arm/boot/dts/stm32mp157c-ev1.dts
index 49ca94c19b02b..874770c997997 100644
--- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
+++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
@@ -100,30 +100,10 @@ dcmi_0: endpoint {
};
&dsi {
- phy-dsi-supply = <®18>;
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
- ports {
- #address-cells = <1>;
- #size-cells = <0>;
-
- port@0 {
- reg = <0>;
- dsi_in: endpoint {
- remote-endpoint = <<dc_ep0_out>;
- };
- };
-
- port@1 {
- reg = <1>;
- dsi_out: endpoint {
- remote-endpoint = <&dsi_panel_in>;
- };
- };
- };
-
panel@0 {
compatible = "raydium,rm68200";
reg = <0>;
@@ -140,6 +120,14 @@ dsi_panel_in: endpoint {
};
};
+&dsi_in {
+ remote-endpoint = <<dc_ep0_out>;
+};
+
+&dsi_out {
+ remote-endpoint = <&dsi_panel_in>;
+};
+
ðernet0 {
status = "okay";
pinctrl-0 = <ðernet0_rgmii_pins_a>;
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] ARM: dts: stm32: Deduplicate DSI node
2023-05-31 23:10 [PATCH] ARM: dts: stm32: Deduplicate DSI node Marek Vasut
@ 2023-06-01 16:46 ` Raphael Gallais-Pou
2023-06-01 20:32 ` Marek Vasut
2023-07-11 9:01 ` Alexandre TORGUE
1 sibling, 1 reply; 5+ messages in thread
From: Raphael Gallais-Pou @ 2023-06-01 16:46 UTC (permalink / raw)
To: Marek Vasut, linux-arm-kernel, Philippe CORNU - foss,
yannick Fertre
Cc: Alexandre Torgue, Conor Dooley, Krzysztof Kozlowski,
Maxime Coquelin, Rob Herring, devicetree, linux-stm32
Hi Marek,
On 6/1/23 01:10, Marek Vasut wrote:
> All boards using the DSI node duplicate the same pattern common pattern
> in board DTs, that pattern is ports with endpoint labels and the same
> in-SoC regulator connection. Move that common pattern into stm32mp157.dtsi
> instead.
I think that is a good idea, while it did not crossed my mind implementing it
this way on the first time.
I'll let my peers Philippe and Yannick review and ack it this time. I tested it
on DK2, it seems fine.
Thanks :)
> The two boards which do define panel@0 directly in the DSI bridge node now
> have #address-cells/#size-cells in their board DT instead of it being in
> stm32mp157.dtsi and activated incorrectly for all boards, even the ones
> which use e.g. another DSI-to-something bridge.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
> ---
> Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
> Cc: Conor Dooley <conor+dt@kernel.org>
> Cc: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
> Cc: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: devicetree@vger.kernel.org
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-stm32@st-md-mailman.stormreply.com
> ---
> arch/arm/boot/dts/stm32mp157.dtsi | 18 ++++++++++++
> ...tm32mp157a-icore-stm32mp1-ctouch2-of10.dts | 24 ++++------------
> .../stm32mp157a-icore-stm32mp1-edimm2.2.dts | 28 ++++++-------------
> arch/arm/boot/dts/stm32mp157c-dk2.dts | 28 ++++++-------------
> arch/arm/boot/dts/stm32mp157c-ev1.dts | 28 ++++++-------------
> 5 files changed, 48 insertions(+), 78 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: stm32: Deduplicate DSI node
2023-06-01 16:46 ` Raphael Gallais-Pou
@ 2023-06-01 20:32 ` Marek Vasut
2023-06-09 14:17 ` Raphael Gallais-Pou
0 siblings, 1 reply; 5+ messages in thread
From: Marek Vasut @ 2023-06-01 20:32 UTC (permalink / raw)
To: Raphael Gallais-Pou, linux-arm-kernel, Philippe CORNU - foss,
yannick Fertre
Cc: Alexandre Torgue, Conor Dooley, Krzysztof Kozlowski,
Maxime Coquelin, Rob Herring, devicetree, linux-stm32
On 6/1/23 18:46, Raphael Gallais-Pou wrote:
> Hi Marek,
Hi,
> On 6/1/23 01:10, Marek Vasut wrote:
>> All boards using the DSI node duplicate the same pattern common pattern
>> in board DTs, that pattern is ports with endpoint labels and the same
>> in-SoC regulator connection. Move that common pattern into stm32mp157.dtsi
>> instead.
>
> I think that is a good idea, while it did not crossed my mind implementing it
> this way on the first time.
>
> I'll let my peers Philippe and Yannick review and ack it this time. I tested it
> on DK2, it seems fine.
Thanks for testing. There's no rush, so take your time.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: stm32: Deduplicate DSI node
2023-06-01 20:32 ` Marek Vasut
@ 2023-06-09 14:17 ` Raphael Gallais-Pou
0 siblings, 0 replies; 5+ messages in thread
From: Raphael Gallais-Pou @ 2023-06-09 14:17 UTC (permalink / raw)
To: Marek Vasut, linux-arm-kernel, Philippe CORNU - foss,
yannick Fertre
Cc: Alexandre Torgue, Conor Dooley, Krzysztof Kozlowski,
Maxime Coquelin, Rob Herring, devicetree, linux-stm32
Hi Marek,
On 6/1/23 22:32, Marek Vasut wrote:
> On 6/1/23 18:46, Raphael Gallais-Pou wrote:
>> Hi Marek,
>
> Hi,
>
>> On 6/1/23 01:10, Marek Vasut wrote:
>>> All boards using the DSI node duplicate the same pattern common pattern
>>> in board DTs, that pattern is ports with endpoint labels and the same
>>> in-SoC regulator connection. Move that common pattern into stm32mp157.dtsi
>>> instead.
>>
>> I think that is a good idea, while it did not crossed my mind implementing it
>> this way on the first time.
>>
>> I'll let my peers Philippe and Yannick review and ack it this time. I tested it
>> on DK2, it seems fine.
>
> Thanks for testing. There's no rush, so take your time.
Acked-by: Raphaël Gallais-Pou <raphael.gallais-pou@foss.st.com>
Thank you,
Raphaël
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: stm32: Deduplicate DSI node
2023-05-31 23:10 [PATCH] ARM: dts: stm32: Deduplicate DSI node Marek Vasut
2023-06-01 16:46 ` Raphael Gallais-Pou
@ 2023-07-11 9:01 ` Alexandre TORGUE
1 sibling, 0 replies; 5+ messages in thread
From: Alexandre TORGUE @ 2023-07-11 9:01 UTC (permalink / raw)
To: Marek Vasut, linux-arm-kernel
Cc: Conor Dooley, Krzysztof Kozlowski, Maxime Coquelin,
Raphael Gallais-Pou, Rob Herring, devicetree, linux-stm32
Hi Marek
On 6/1/23 01:10, Marek Vasut wrote:
> All boards using the DSI node duplicate the same pattern common pattern
> in board DTs, that pattern is ports with endpoint labels and the same
> in-SoC regulator connection. Move that common pattern into stm32mp157.dtsi
> instead.
>
> The two boards which do define panel@0 directly in the DSI bridge node now
> have #address-cells/#size-cells in their board DT instead of it being in
> stm32mp157.dtsi and activated incorrectly for all boards, even the ones
> which use e.g. another DSI-to-something bridge.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
Applied on stm32-next.
Thanks.
Alex
> ---
> Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
> Cc: Conor Dooley <conor+dt@kernel.org>
> Cc: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
> Cc: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: devicetree@vger.kernel.org
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-stm32@st-md-mailman.stormreply.com
> ---
> arch/arm/boot/dts/stm32mp157.dtsi | 18 ++++++++++++
> ...tm32mp157a-icore-stm32mp1-ctouch2-of10.dts | 24 ++++------------
> .../stm32mp157a-icore-stm32mp1-edimm2.2.dts | 28 ++++++-------------
> arch/arm/boot/dts/stm32mp157c-dk2.dts | 28 ++++++-------------
> arch/arm/boot/dts/stm32mp157c-ev1.dts | 28 ++++++-------------
> 5 files changed, 48 insertions(+), 78 deletions(-)
>
> diff --git a/arch/arm/boot/dts/stm32mp157.dtsi b/arch/arm/boot/dts/stm32mp157.dtsi
> index 5e733cd16ff9e..6197d878894de 100644
> --- a/arch/arm/boot/dts/stm32mp157.dtsi
> +++ b/arch/arm/boot/dts/stm32mp157.dtsi
> @@ -22,9 +22,27 @@ dsi: dsi@5a000000 {
> reg = <0x5a000000 0x800>;
> clocks = <&rcc DSI_K>, <&clk_hse>, <&rcc DSI_PX>;
> clock-names = "pclk", "ref", "px_clk";
> + phy-dsi-supply = <®18>;
> resets = <&rcc DSI_R>;
> reset-names = "apb";
> status = "disabled";
> +
> + ports {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + port@0 {
> + reg = <0>;
> + dsi_in: endpoint {
> + };
> + };
> +
> + port@1 {
> + reg = <1>;
> + dsi_out: endpoint {
> + };
> + };
> + };
> };
> };
> };
> diff --git a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
> index 4279b26547dfd..df97e03d2a5ac 100644
> --- a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
> +++ b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-ctouch2-of10.dts
> @@ -46,26 +46,14 @@ panel_in_lvds: endpoint {
>
> &dsi {
> status = "okay";
> - phy-dsi-supply = <®18>;
> -
> - ports {
> - #address-cells = <1>;
> - #size-cells = <0>;
> +};
>
> - port@0 {
> - reg = <0>;
> - dsi_in: endpoint {
> - remote-endpoint = <<dc_ep0_out>;
> - };
> - };
> +&dsi_in {
> + remote-endpoint = <<dc_ep0_out>;
> +};
>
> - port@1 {
> - reg = <1>;
> - dsi_out: endpoint {
> - remote-endpoint = <&bridge_in>;
> - };
> - };
> - };
> +&dsi_out {
> + remote-endpoint = <&bridge_in>;
> };
>
> &i2c6 {
> diff --git a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
> index efba542898207..f8e4043463964 100644
> --- a/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
> +++ b/arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
> @@ -46,26 +46,14 @@ panel_out_bridge: endpoint {
>
> &dsi {
> status = "okay";
> - phy-dsi-supply = <®18>;
> -
> - ports {
> - #address-cells = <1>;
> - #size-cells = <0>;
> +};
>
> - port@0 {
> - reg = <0>;
> - dsi_in_ltdc: endpoint {
> - remote-endpoint = <<dc_out_dsi>;
> - };
> - };
> +&dsi_in {
> + remote-endpoint = <<dc_out_dsi>;
> +};
>
> - port@1 {
> - reg = <1>;
> - dsi_out_bridge: endpoint {
> - remote-endpoint = <&bridge_in_dsi>;
> - };
> - };
> - };
> +&dsi_out {
> + remote-endpoint = <&bridge_in_dsi>;
> };
>
> &i2c6 {
> @@ -88,7 +76,7 @@ ports {
> port@0 {
> reg = <0>;
> bridge_in_dsi: endpoint {
> - remote-endpoint = <&dsi_out_bridge>;
> + remote-endpoint = <&dsi_out>;
> data-lanes = <1 2>;
> };
> };
> @@ -108,7 +96,7 @@ <dc {
>
> port {
> ltdc_out_dsi: endpoint {
> - remote-endpoint = <&dsi_in_ltdc>;
> + remote-endpoint = <&dsi_in>;
> };
> };
> };
> diff --git a/arch/arm/boot/dts/stm32mp157c-dk2.dts b/arch/arm/boot/dts/stm32mp157c-dk2.dts
> index 4bef2300ed7ca..510cca5acb79c 100644
> --- a/arch/arm/boot/dts/stm32mp157c-dk2.dts
> +++ b/arch/arm/boot/dts/stm32mp157c-dk2.dts
> @@ -34,26 +34,6 @@ &dsi {
> #address-cells = <1>;
> #size-cells = <0>;
> status = "okay";
> - phy-dsi-supply = <®18>;
> -
> - ports {
> - #address-cells = <1>;
> - #size-cells = <0>;
> -
> - port@0 {
> - reg = <0>;
> - dsi_in: endpoint {
> - remote-endpoint = <<dc_ep1_out>;
> - };
> - };
> -
> - port@1 {
> - reg = <1>;
> - dsi_out: endpoint {
> - remote-endpoint = <&panel_in>;
> - };
> - };
> - };
>
> panel@0 {
> compatible = "orisetech,otm8009a";
> @@ -70,6 +50,14 @@ panel_in: endpoint {
> };
> };
>
> +&dsi_in {
> + remote-endpoint = <<dc_ep1_out>;
> +};
> +
> +&dsi_out {
> + remote-endpoint = <&panel_in>;
> +};
> +
> &i2c1 {
> touchscreen@38 {
> compatible = "focaltech,ft6236";
> diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> index 49ca94c19b02b..874770c997997 100644
> --- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
> +++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> @@ -100,30 +100,10 @@ dcmi_0: endpoint {
> };
>
> &dsi {
> - phy-dsi-supply = <®18>;
> #address-cells = <1>;
> #size-cells = <0>;
> status = "okay";
>
> - ports {
> - #address-cells = <1>;
> - #size-cells = <0>;
> -
> - port@0 {
> - reg = <0>;
> - dsi_in: endpoint {
> - remote-endpoint = <<dc_ep0_out>;
> - };
> - };
> -
> - port@1 {
> - reg = <1>;
> - dsi_out: endpoint {
> - remote-endpoint = <&dsi_panel_in>;
> - };
> - };
> - };
> -
> panel@0 {
> compatible = "raydium,rm68200";
> reg = <0>;
> @@ -140,6 +120,14 @@ dsi_panel_in: endpoint {
> };
> };
>
> +&dsi_in {
> + remote-endpoint = <<dc_ep0_out>;
> +};
> +
> +&dsi_out {
> + remote-endpoint = <&dsi_panel_in>;
> +};
> +
> ðernet0 {
> status = "okay";
> pinctrl-0 = <ðernet0_rgmii_pins_a>;
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-07-11 9:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-31 23:10 [PATCH] ARM: dts: stm32: Deduplicate DSI node Marek Vasut
2023-06-01 16:46 ` Raphael Gallais-Pou
2023-06-01 20:32 ` Marek Vasut
2023-06-09 14:17 ` Raphael Gallais-Pou
2023-07-11 9:01 ` Alexandre TORGUE
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).