public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware
@ 2024-04-15 12:50 Hannah Peuckmann
  2024-04-15 12:50 ` [PATCH v1 1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Hannah Peuckmann
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Hannah Peuckmann @ 2024-04-15 12:50 UTC (permalink / raw)
  To: linux-riscv, devicetree, linux-kernel
  Cc: Emil Renner Berthing, Conor Dooley, Rob Herring,
	Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Walker Chen, Hal Feng, Xingyu Wu

This series fixes the device tree for the VisionFive 2 which has nodes for
non-existing hardware which should have been left to overlays. It also results
in error on boot when both both the TDM and I2S drivers tries to claim GPIO 44.

Hannah Peuckmann (2):
  riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware
  riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware

 .../jh7110-starfive-visionfive-2.dtsi         | 98 -------------------
 1 file changed, 98 deletions(-)

-- 
2.40.1


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

* [PATCH v1 1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware
  2024-04-15 12:50 [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Hannah Peuckmann
@ 2024-04-15 12:50 ` Hannah Peuckmann
  2024-04-15 12:50 ` [PATCH v1 2/2] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware Hannah Peuckmann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Hannah Peuckmann @ 2024-04-15 12:50 UTC (permalink / raw)
  To: linux-riscv, devicetree, linux-kernel
  Cc: Emil Renner Berthing, Conor Dooley, Rob Herring,
	Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Walker Chen, Hal Feng, Xingyu Wu

This partially reverts
commit e7c304c0346d ("riscv: dts: starfive: jh7110: add the node and pins configuration for tdm")

This added device tree nodes for TDM hardware that is not actually on the
VisionFive 2 board, but connected on the 40pin header. Many different extension
boards could be added on those pins, so this should be handled by overlays
instead.
This also conflicts with the I2S node which also attempts to grab GPIO 44:

  starfive-jh7110-sys-pinctrl 13040000.pinctrl: pin GPIO44 already requested by 10090000.tdm; cannot claim for 120c0000.i2s

Fixes: e7c304c0346d ("riscv: dts: starfive: jh7110: add the node and pins configuration for tdm")
Signed-off-by: Hannah Peuckmann <hannah.peuckmann@canonical.com>
---
 .../jh7110-starfive-visionfive-2.dtsi         | 40 -------------------
 1 file changed, 40 deletions(-)

diff --git a/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi b/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
index 45b58b6f3df8..d89eef6e2633 100644
--- a/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
+++ b/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
@@ -622,40 +622,6 @@ GPOEN_ENABLE,
 		};
 	};
 
-	tdm_pins: tdm-0 {
-		tx-pins {
-			pinmux = <GPIOMUX(44, GPOUT_SYS_TDM_TXD,
-					      GPOEN_ENABLE,
-					      GPI_NONE)>;
-			bias-pull-up;
-			drive-strength = <2>;
-			input-disable;
-			input-schmitt-disable;
-			slew-rate = <0>;
-		};
-
-		rx-pins {
-			pinmux = <GPIOMUX(61, GPOUT_HIGH,
-					      GPOEN_DISABLE,
-					      GPI_SYS_TDM_RXD)>;
-			input-enable;
-		};
-
-		sync-pins {
-			pinmux = <GPIOMUX(63, GPOUT_HIGH,
-					      GPOEN_DISABLE,
-					      GPI_SYS_TDM_SYNC)>;
-			input-enable;
-		};
-
-		pcmclk-pins {
-			pinmux = <GPIOMUX(38, GPOUT_HIGH,
-					      GPOEN_DISABLE,
-					      GPI_SYS_TDM_CLK)>;
-			input-enable;
-		};
-	};
-
 	uart0_pins: uart0-0 {
 		tx-pins {
 			pinmux = <GPIOMUX(5, GPOUT_SYS_UART0_TX,
@@ -681,12 +647,6 @@ GPOEN_DISABLE,
 	};
 };
 
-&tdm {
-	pinctrl-names = "default";
-	pinctrl-0 = <&tdm_pins>;
-	status = "okay";
-};
-
 &uart0 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&uart0_pins>;
-- 
2.40.1


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

* [PATCH v1 2/2] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware
  2024-04-15 12:50 [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Hannah Peuckmann
  2024-04-15 12:50 ` [PATCH v1 1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Hannah Peuckmann
@ 2024-04-15 12:50 ` Hannah Peuckmann
  2024-04-15 15:06 ` [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Emil Renner Berthing
  2024-04-15 15:31 ` Conor Dooley
  3 siblings, 0 replies; 5+ messages in thread
From: Hannah Peuckmann @ 2024-04-15 12:50 UTC (permalink / raw)
  To: linux-riscv, devicetree, linux-kernel
  Cc: Emil Renner Berthing, Conor Dooley, Rob Herring,
	Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Walker Chen, Hal Feng, Xingyu Wu

This partially reverts
commit 92cfc35838b2 ("riscv: dts: starfive: Add the nodes and pins of I2Srx/I2Stx0/I2Stx1")

This added device tree nodes for I2S hardware that is not actually on the
VisionFive 2 board, but connected on the 40pin header. Many different extension
boards could be added on those pins, so this should be handled by overlays
instead.
This also conflicts with the TDM node which also attempts to grab GPIO 44:

  starfive-jh7110-sys-pinctrl 13040000.pinctrl: pin GPIO44 already requested by 10090000.tdm; cannot claim for 120c0000.i2s

Fixes: 92cfc35838b2 ("riscv: dts: starfive: Add the nodes and pins of I2Srx/I2Stx0/I2Stx1")
Signed-off-by: Hannah Peuckmann <hannah.peuckmann@canonical.com>
---
 .../jh7110-starfive-visionfive-2.dtsi         | 58 -------------------
 1 file changed, 58 deletions(-)

diff --git a/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi b/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
index d89eef6e2633..2b3e952513e4 100644
--- a/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
+++ b/arch/riscv/boot/dts/starfive/jh7110-starfive-visionfive-2.dtsi
@@ -279,24 +279,6 @@ &i2c6 {
 	status = "okay";
 };
 
-&i2srx {
-	pinctrl-names = "default";
-	pinctrl-0 = <&i2srx_pins>;
-	status = "okay";
-};
-
-&i2stx0 {
-	pinctrl-names = "default";
-	pinctrl-0 = <&mclk_ext_pins>;
-	status = "okay";
-};
-
-&i2stx1 {
-	pinctrl-names = "default";
-	pinctrl-0 = <&i2stx1_pins>;
-	status = "okay";
-};
-
 &mmc0 {
 	max-frequency = <100000000>;
 	assigned-clocks = <&syscrg JH7110_SYSCLK_SDIO0_SDCARD>;
@@ -447,46 +429,6 @@ GPOEN_SYS_I2C6_DATA,
 		};
 	};
 
-	i2srx_pins: i2srx-0 {
-		clk-sd-pins {
-			pinmux = <GPIOMUX(38, GPOUT_LOW,
-					      GPOEN_DISABLE,
-					      GPI_SYS_I2SRX_BCLK)>,
-				 <GPIOMUX(63, GPOUT_LOW,
-					      GPOEN_DISABLE,
-					      GPI_SYS_I2SRX_LRCK)>,
-				 <GPIOMUX(38, GPOUT_LOW,
-					      GPOEN_DISABLE,
-					      GPI_SYS_I2STX1_BCLK)>,
-				 <GPIOMUX(63, GPOUT_LOW,
-					      GPOEN_DISABLE,
-					      GPI_SYS_I2STX1_LRCK)>,
-				 <GPIOMUX(61, GPOUT_LOW,
-					      GPOEN_DISABLE,
-					      GPI_SYS_I2SRX_SDIN0)>;
-			input-enable;
-		};
-	};
-
-	i2stx1_pins: i2stx1-0 {
-		sd-pins {
-			pinmux = <GPIOMUX(44, GPOUT_SYS_I2STX1_SDO0,
-					      GPOEN_ENABLE,
-					      GPI_NONE)>;
-			bias-disable;
-			input-disable;
-		};
-	};
-
-	mclk_ext_pins: mclk-ext-0 {
-		mclk-ext-pins {
-			pinmux = <GPIOMUX(4, GPOUT_LOW,
-					     GPOEN_DISABLE,
-					     GPI_SYS_MCLK_EXT)>;
-			input-enable;
-		};
-	};
-
 	mmc0_pins: mmc0-0 {
 		 rst-pins {
 			pinmux = <GPIOMUX(62, GPOUT_SYS_SDIO0_RST,
-- 
2.40.1


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

* Re: [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware
  2024-04-15 12:50 [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Hannah Peuckmann
  2024-04-15 12:50 ` [PATCH v1 1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Hannah Peuckmann
  2024-04-15 12:50 ` [PATCH v1 2/2] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware Hannah Peuckmann
@ 2024-04-15 15:06 ` Emil Renner Berthing
  2024-04-15 15:31 ` Conor Dooley
  3 siblings, 0 replies; 5+ messages in thread
From: Emil Renner Berthing @ 2024-04-15 15:06 UTC (permalink / raw)
  To: Hannah Peuckmann, linux-riscv, devicetree, linux-kernel
  Cc: Emil Renner Berthing, Conor Dooley, Rob Herring,
	Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Walker Chen, Hal Feng, Xingyu Wu

Hannah Peuckmann wrote:
> This series fixes the device tree for the VisionFive 2 which has nodes for
> non-existing hardware which should have been left to overlays. It also results
> in error on boot when both both the TDM and I2S drivers tries to claim GPIO 44.
>

Thanks! This fixes the error mentioned in the commit messages for me.

For the series:

Reviewed-by: Emil Renner Berthing <emil.renner.berthing@canonical.com>
Tested-by: Emil Renner Berthing <emil.renner.berthing@canonical.com>

/Emil

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

* Re: [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware
  2024-04-15 12:50 [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Hannah Peuckmann
                   ` (2 preceding siblings ...)
  2024-04-15 15:06 ` [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Emil Renner Berthing
@ 2024-04-15 15:31 ` Conor Dooley
  3 siblings, 0 replies; 5+ messages in thread
From: Conor Dooley @ 2024-04-15 15:31 UTC (permalink / raw)
  To: linux-riscv, devicetree, linux-kernel, Hannah Peuckmann
  Cc: conor, Conor Dooley, Emil Renner Berthing, Rob Herring,
	Krzysztof Kozlowski, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Walker Chen, Hal Feng, Xingyu Wu

From: Conor Dooley <conor.dooley@microchip.com>

On Mon, 15 Apr 2024 14:50:31 +0200, Hannah Peuckmann wrote:
> This series fixes the device tree for the VisionFive 2 which has nodes for
> non-existing hardware which should have been left to overlays. It also results
> in error on boot when both both the TDM and I2S drivers tries to claim GPIO 44.
> 
> Hannah Peuckmann (2):
>   riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware
>   riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware
> 
> [...]

Applied to riscv-dt-fixes, thanks. I should've probably realised this
when I merged them - thinking back I think I might even have had to do a
conflict resolution. Sorry about this.

[1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware
      https://git.kernel.org/conor/c/dcde4e97b122
[2/2] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware
      https://git.kernel.org/conor/c/e0503d47e93d

Thanks,
Conor.

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

end of thread, other threads:[~2024-04-15 15:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-15 12:50 [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Hannah Peuckmann
2024-04-15 12:50 ` [PATCH v1 1/2] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Hannah Peuckmann
2024-04-15 12:50 ` [PATCH v1 2/2] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware Hannah Peuckmann
2024-04-15 15:06 ` [PATCH v1 0/2] riscv: dts: starfive: visionfive 2: Remove non-existing hardware Emil Renner Berthing
2024-04-15 15:31 ` Conor Dooley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox