All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-09  8:45 ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Hi all,

The patch series adds DT nodes for Display SubSystem (DSS) and other
peripherals required to enable the HDMI audio and video on the AM625 SK,
AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
monitor can be connected to the boards for the audio/video outputs.

The series adding the compatible and basic driver support[0] is in the
drm-misc-next and linux-next queues and is expected to be in the
mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
that introduces debounce select mux macros. This patch too is not in
v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
linux-next.

Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
linux-kernel v6.1.

Regards
Aradhya

Change Log:
V4 -> V5:
  - Cosmetic changes as suggested by Jayesh.
  - Fixed the mis-represented DSS VP1 clock, and added a
    fixed-factor-clock.

V3 -> V4:
  - Added "Fixes" tag for patch 1/6.
  - Rebased to linux-next.
  - Enabled display at board level and disabled at SoC level.
  - Dropped OLDI pinmux configuration as OLDI output comes directly from
    the SoC and muxing is not required.
  - Squashed DSS pinmux patches into their platform specific HDMI
    support patches, because it did not make sense to have only one set
    of pinmux config separated in a patch.

V2 -> V3:
  - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
  - Peripheral nodes like HDMI TX, HDMI connector are now added to
    k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
    support AM62-LP SK-EVM as well.
  - Dropped the HDMI master clock node as it is not connected on the
    EVM, and should not have been added in the first place.
  - Re-worded and Re-ordered commits.
  - Dropped Rahul Ravikumar's R-bs because of the changes.
  - Added AM625 based Beagle-Play for HDMI support.
  - Added HDMI audio support as well.

V1 -> V2:
 - Removed repetitive data in dss_ports

V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/

[0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
[1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
[2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
[3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd


Aradhya Bhatia (4):
  arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
  arm64: dts: ti: k3-am62-main: Add node for DSS
  arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
  arm64: defconfig: Enable ITE_IT66121 HDMI transmitter

Jai Luthra (1):
  arm64: dts: ti: am62x-sk: Add overlay for HDMI audio

Nishanth Menon (1):
  arm64: dts: ti: k3-am625-beagleplay: Add HDMI support

 arch/arm64/boot/dts/ti/Makefile               |   3 +
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
 arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
 .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
 .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
 .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
 arch/arm64/configs/defconfig                  |   1 +
 7 files changed, 319 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso


base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
-- 
2.40.1


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

* [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-09  8:45 ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Hi all,

The patch series adds DT nodes for Display SubSystem (DSS) and other
peripherals required to enable the HDMI audio and video on the AM625 SK,
AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
monitor can be connected to the boards for the audio/video outputs.

The series adding the compatible and basic driver support[0] is in the
drm-misc-next and linux-next queues and is expected to be in the
mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
that introduces debounce select mux macros. This patch too is not in
v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
linux-next.

Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
linux-kernel v6.1.

Regards
Aradhya

Change Log:
V4 -> V5:
  - Cosmetic changes as suggested by Jayesh.
  - Fixed the mis-represented DSS VP1 clock, and added a
    fixed-factor-clock.

V3 -> V4:
  - Added "Fixes" tag for patch 1/6.
  - Rebased to linux-next.
  - Enabled display at board level and disabled at SoC level.
  - Dropped OLDI pinmux configuration as OLDI output comes directly from
    the SoC and muxing is not required.
  - Squashed DSS pinmux patches into their platform specific HDMI
    support patches, because it did not make sense to have only one set
    of pinmux config separated in a patch.

V2 -> V3:
  - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
  - Peripheral nodes like HDMI TX, HDMI connector are now added to
    k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
    support AM62-LP SK-EVM as well.
  - Dropped the HDMI master clock node as it is not connected on the
    EVM, and should not have been added in the first place.
  - Re-worded and Re-ordered commits.
  - Dropped Rahul Ravikumar's R-bs because of the changes.
  - Added AM625 based Beagle-Play for HDMI support.
  - Added HDMI audio support as well.

V1 -> V2:
 - Removed repetitive data in dss_ports

V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/

[0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
[1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
[2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
[3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd


Aradhya Bhatia (4):
  arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
  arm64: dts: ti: k3-am62-main: Add node for DSS
  arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
  arm64: defconfig: Enable ITE_IT66121 HDMI transmitter

Jai Luthra (1):
  arm64: dts: ti: am62x-sk: Add overlay for HDMI audio

Nishanth Menon (1):
  arm64: dts: ti: k3-am625-beagleplay: Add HDMI support

 arch/arm64/boot/dts/ti/Makefile               |   3 +
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
 arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
 .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
 .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
 .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
 arch/arm64/configs/defconfig                  |   1 +
 7 files changed, 319 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso


base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
-- 
2.40.1


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

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

* [PATCH v5 1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

The Display Data Channel (DDC) transactions between an HDMI transmitter
(SIL9022A in this case) and an HDMI monitor, occur at a maximum of
100KHz. That's the maximum supported frequency within DDC standards.

While the SIL9022A can transact with the core at 400KHz, it needs to
drop the frequency to 100KHz when communicating with the monitor,
otherwise, the i2c controller times out and shows warning like this.

[  985.773431] omap_i2c 20010000.i2c: controller timed out

That feature, however, has not been enabled in the SIL9022 driver.

Since, dropping the frequency doesn't affect any other devices on the
bus, drop the main-i2c1 frequency from 400KHz to 100KHz.

Fixes: a841581451af ("arm64: dts: ti: Refractor AM625 SK dts")
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
index 34c8ffc553ec..540ed8a0d7fb 100644
--- a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
@@ -300,7 +300,7 @@ &main_i2c1 {
 	status = "okay";
 	pinctrl-names = "default";
 	pinctrl-0 = <&main_i2c1_pins_default>;
-	clock-frequency = <400000>;
+	clock-frequency = <100000>;
 
 	tlv320aic3106: audio-codec@1b {
 		#sound-dai-cells = <0>;
-- 
2.40.1


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

* [PATCH v5 1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

The Display Data Channel (DDC) transactions between an HDMI transmitter
(SIL9022A in this case) and an HDMI monitor, occur at a maximum of
100KHz. That's the maximum supported frequency within DDC standards.

While the SIL9022A can transact with the core at 400KHz, it needs to
drop the frequency to 100KHz when communicating with the monitor,
otherwise, the i2c controller times out and shows warning like this.

[  985.773431] omap_i2c 20010000.i2c: controller timed out

That feature, however, has not been enabled in the SIL9022 driver.

Since, dropping the frequency doesn't affect any other devices on the
bus, drop the main-i2c1 frequency from 400KHz to 100KHz.

Fixes: a841581451af ("arm64: dts: ti: Refractor AM625 SK dts")
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
index 34c8ffc553ec..540ed8a0d7fb 100644
--- a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
@@ -300,7 +300,7 @@ &main_i2c1 {
 	status = "okay";
 	pinctrl-names = "default";
 	pinctrl-0 = <&main_i2c1_pins_default>;
-	clock-frequency = <400000>;
+	clock-frequency = <100000>;
 
 	tlv320aic3106: audio-codec@1b {
 		#sound-dai-cells = <0>;
-- 
2.40.1


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

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

* [PATCH v5 2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Add Display SubSystem (DSS) DT node for the AM625 SoC.

The DSS supports one each of video pipeline (vid) and video-lite
pipeline (vidl1). It outputs OLDI signals on one video port (VP1) and
DPI signals on another (VP2). The video ports are connected to the
pipelines via 2 identical overlay managers (ovr1 and ovr2).

Also add the DT node for DSS clock divider. This is a fixed-factor-clock
and does not have any register. This comes into effect whenenver OLDI
display is used. The input to this divider is a serial clock used by
OLDI TXes. The divider divides the input clock by 7, and provides the
pixel clock to VP1.

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 25 ++++++++++++++++++++++++
 arch/arm64/boot/dts/ti/k3-am62.dtsi      |  8 ++++++++
 2 files changed, 33 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index ef90b2bc81eb..7ce39c91a2af 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -717,6 +717,31 @@ cpts@3d000 {
 		};
 	};
 
+	dss: dss@30200000 {
+		compatible = "ti,am625-dss";
+		reg = <0x00 0x30200000 0x00 0x1000>, /* common */
+		      <0x00 0x30202000 0x00 0x1000>, /* vidl1 */
+		      <0x00 0x30206000 0x00 0x1000>, /* vid */
+		      <0x00 0x30207000 0x00 0x1000>, /* ovr1 */
+		      <0x00 0x30208000 0x00 0x1000>, /* ovr2 */
+		      <0x00 0x3020a000 0x00 0x1000>, /* vp1: Used for OLDI */
+		      <0x00 0x3020b000 0x00 0x1000>; /* vp2: Used as DPI Out */
+		reg-names = "common", "vidl1", "vid",
+			    "ovr1", "ovr2", "vp1", "vp2";
+		power-domains = <&k3_pds 186 TI_SCI_PD_EXCLUSIVE>;
+		clocks = <&k3_clks 186 6>,
+			 <&dss_vp1_clk>,
+			 <&k3_clks 186 2>;
+		clock-names = "fck", "vp1", "vp2";
+		interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
+		status = "disabled";
+
+		dss_ports: ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+		};
+	};
+
 	hwspinlock: spinlock@2a000000 {
 		compatible = "ti,am64-hwspinlock";
 		reg = <0x00 0x2a000000 0x00 0x1000>;
diff --git a/arch/arm64/boot/dts/ti/k3-am62.dtsi b/arch/arm64/boot/dts/ti/k3-am62.dtsi
index 5e72c445f37a..11f14eef2d44 100644
--- a/arch/arm64/boot/dts/ti/k3-am62.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62.dtsi
@@ -102,6 +102,14 @@ cbass_wakeup: bus@b00000 {
 		};
 	};
 
+	dss_vp1_clk: clock-divider-oldi {
+		compatible = "fixed-factor-clock";
+		clocks = <&k3_clks 186 0>;
+		#clock-cells = <0>;
+		clock-div = <7>;
+		clock-mult = <1>;
+	};
+
 	#include "k3-am62-thermal.dtsi"
 };
 
-- 
2.40.1


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

* [PATCH v5 2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Add Display SubSystem (DSS) DT node for the AM625 SoC.

The DSS supports one each of video pipeline (vid) and video-lite
pipeline (vidl1). It outputs OLDI signals on one video port (VP1) and
DPI signals on another (VP2). The video ports are connected to the
pipelines via 2 identical overlay managers (ovr1 and ovr2).

Also add the DT node for DSS clock divider. This is a fixed-factor-clock
and does not have any register. This comes into effect whenenver OLDI
display is used. The input to this divider is a serial clock used by
OLDI TXes. The divider divides the input clock by 7, and provides the
pixel clock to VP1.

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 25 ++++++++++++++++++++++++
 arch/arm64/boot/dts/ti/k3-am62.dtsi      |  8 ++++++++
 2 files changed, 33 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index ef90b2bc81eb..7ce39c91a2af 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -717,6 +717,31 @@ cpts@3d000 {
 		};
 	};
 
+	dss: dss@30200000 {
+		compatible = "ti,am625-dss";
+		reg = <0x00 0x30200000 0x00 0x1000>, /* common */
+		      <0x00 0x30202000 0x00 0x1000>, /* vidl1 */
+		      <0x00 0x30206000 0x00 0x1000>, /* vid */
+		      <0x00 0x30207000 0x00 0x1000>, /* ovr1 */
+		      <0x00 0x30208000 0x00 0x1000>, /* ovr2 */
+		      <0x00 0x3020a000 0x00 0x1000>, /* vp1: Used for OLDI */
+		      <0x00 0x3020b000 0x00 0x1000>; /* vp2: Used as DPI Out */
+		reg-names = "common", "vidl1", "vid",
+			    "ovr1", "ovr2", "vp1", "vp2";
+		power-domains = <&k3_pds 186 TI_SCI_PD_EXCLUSIVE>;
+		clocks = <&k3_clks 186 6>,
+			 <&dss_vp1_clk>,
+			 <&k3_clks 186 2>;
+		clock-names = "fck", "vp1", "vp2";
+		interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
+		status = "disabled";
+
+		dss_ports: ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+		};
+	};
+
 	hwspinlock: spinlock@2a000000 {
 		compatible = "ti,am64-hwspinlock";
 		reg = <0x00 0x2a000000 0x00 0x1000>;
diff --git a/arch/arm64/boot/dts/ti/k3-am62.dtsi b/arch/arm64/boot/dts/ti/k3-am62.dtsi
index 5e72c445f37a..11f14eef2d44 100644
--- a/arch/arm64/boot/dts/ti/k3-am62.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62.dtsi
@@ -102,6 +102,14 @@ cbass_wakeup: bus@b00000 {
 		};
 	};
 
+	dss_vp1_clk: clock-divider-oldi {
+		compatible = "fixed-factor-clock";
+		clocks = <&k3_clks 186 0>;
+		#clock-cells = <0>;
+		clock-div = <7>;
+		clock-mult = <1>;
+	};
+
 	#include "k3-am62-thermal.dtsi"
 };
 
-- 
2.40.1


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

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

* [PATCH v5 3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

The DSS outputs DPI signals via its second video port (VP2). The DPI
output from DSS is 24 bits (RGB888) and is forwarded to an HDMI
transmitter (SIL9022) on the board.

Add pinmux info for DSS DPI output.

Add DT nodes for SIL9022 HDMI transmitter (TX), and the HDMI connector
on the AM625 SK and AM62-LP SK platforms.

Additionally, connect the output of DSS (VP2) with input of the HDMI TX,
and the output of HDMI TX to the input of the HDMI connector.

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 91 +++++++++++++++++++
 1 file changed, 91 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
index 540ed8a0d7fb..677ff8de4b6e 100644
--- a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
@@ -114,6 +114,17 @@ sound_master: simple-audio-card,codec {
 			clocks = <&tlv320_mclk>;
 		};
 	};
+
+	hdmi0: connector-hdmi {
+		compatible = "hdmi-connector";
+		label = "hdmi";
+		type = "a";
+		port {
+			hdmi_connector_in: endpoint {
+				remote-endpoint = <&sii9022_out>;
+			};
+		};
+	};
 };
 
 &main_pmx0 {
@@ -226,6 +237,39 @@ AM62X_IOPAD(0x08c, PIN_OUTPUT, 2) /* (L25/J17) GPMC0_WEN.MCASP1_AXR0 */
 			AM62X_IOPAD(0x084, PIN_INPUT, 2) /* (L23/K20) GPMC0_ADVN_ALE.MCASP1_AXR2 */
 		>;
 	};
+
+	main_dss0_pins_default: main-dss0-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x100, PIN_OUTPUT, 0) /* (AC25) VOUT0_VSYNC */
+			AM62X_IOPAD(0x0f8, PIN_OUTPUT, 0) /* (AB24) VOUT0_HSYNC */
+			AM62X_IOPAD(0x104, PIN_OUTPUT, 0) /* (AC24) VOUT0_PCLK */
+			AM62X_IOPAD(0x0fc, PIN_OUTPUT, 0) /* (Y20) VOUT0_DE */
+			AM62X_IOPAD(0x0b8, PIN_OUTPUT, 0) /* (U22) VOUT0_DATA0 */
+			AM62X_IOPAD(0x0bc, PIN_OUTPUT, 0) /* (V24) VOUT0_DATA1 */
+			AM62X_IOPAD(0x0c0, PIN_OUTPUT, 0) /* (W25) VOUT0_DATA2 */
+			AM62X_IOPAD(0x0c4, PIN_OUTPUT, 0) /* (W24) VOUT0_DATA3 */
+			AM62X_IOPAD(0x0c8, PIN_OUTPUT, 0) /* (Y25) VOUT0_DATA4 */
+			AM62X_IOPAD(0x0cc, PIN_OUTPUT, 0) /* (Y24) VOUT0_DATA5 */
+			AM62X_IOPAD(0x0d0, PIN_OUTPUT, 0) /* (Y23) VOUT0_DATA6 */
+			AM62X_IOPAD(0x0d4, PIN_OUTPUT, 0) /* (AA25) VOUT0_DATA7 */
+			AM62X_IOPAD(0x0d8, PIN_OUTPUT, 0) /* (V21) VOUT0_DATA8 */
+			AM62X_IOPAD(0x0dc, PIN_OUTPUT, 0) /* (W21) VOUT0_DATA9 */
+			AM62X_IOPAD(0x0e0, PIN_OUTPUT, 0) /* (V20) VOUT0_DATA10 */
+			AM62X_IOPAD(0x0e4, PIN_OUTPUT, 0) /* (AA23) VOUT0_DATA11 */
+			AM62X_IOPAD(0x0e8, PIN_OUTPUT, 0) /* (AB25) VOUT0_DATA12 */
+			AM62X_IOPAD(0x0ec, PIN_OUTPUT, 0) /* (AA24) VOUT0_DATA13 */
+			AM62X_IOPAD(0x0f0, PIN_OUTPUT, 0) /* (Y22) VOUT0_DATA14 */
+			AM62X_IOPAD(0x0f4, PIN_OUTPUT, 0) /* (AA21) VOUT0_DATA15 */
+			AM62X_IOPAD(0x05c, PIN_OUTPUT, 1) /* (R24) GPMC0_AD8.VOUT0_DATA16 */
+			AM62X_IOPAD(0x060, PIN_OUTPUT, 1) /* (R25) GPMC0_AD9.VOUT0_DATA17 */
+			AM62X_IOPAD(0x064, PIN_OUTPUT, 1) /* (T25) GPMC0_AD10.VOUT0_DATA18 */
+			AM62X_IOPAD(0x068, PIN_OUTPUT, 1) /* (R21) GPMC0_AD11.VOUT0_DATA19 */
+			AM62X_IOPAD(0x06c, PIN_OUTPUT, 1) /* (T22) GPMC0_AD12.VOUT0_DATA20 */
+			AM62X_IOPAD(0x070, PIN_OUTPUT, 1) /* (T24) GPMC0_AD13.VOUT0_DATA21 */
+			AM62X_IOPAD(0x074, PIN_OUTPUT, 1) /* (U25) GPMC0_AD14.VOUT0_DATA22 */
+			AM62X_IOPAD(0x078, PIN_OUTPUT, 1) /* (U24) GPMC0_AD15.VOUT0_DATA23 */
+		>;
+	};
 };
 
 &mcu_pmx0 {
@@ -313,6 +357,36 @@ tlv320aic3106: audio-codec@1b {
 		IOVDD-supply = <&vcc_3v3_sys>;
 		DRVDD-supply = <&vcc_3v3_sys>;
 	};
+
+	sii9022: bridge-hdmi@3b {
+		compatible = "sil,sii9022";
+		reg = <0x3b>;
+		interrupt-parent = <&exp1>;
+		interrupts = <16 IRQ_TYPE_EDGE_FALLING>;
+		#sound-dai-cells = <0>;
+		sil,i2s-data-lanes = < 0 >;
+
+		ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			port@0 {
+				reg = <0>;
+
+				sii9022_in: endpoint {
+					remote-endpoint = <&dpi1_out>;
+				};
+			};
+
+			port@1 {
+				reg = <1>;
+
+				sii9022_out: endpoint {
+					remote-endpoint = <&hdmi_connector_in>;
+				};
+			};
+		};
+	};
 };
 
 &sdhci0 {
@@ -410,3 +484,20 @@ &mcasp1 {
 	tx-num-evt = <32>;
 	rx-num-evt = <32>;
 };
+
+&dss {
+	status = "okay";
+	pinctrl-names = "default";
+	pinctrl-0 = <&main_dss0_pins_default>;
+};
+
+&dss_ports {
+	/* VP2: DPI Output */
+	port@1 {
+		reg = <1>;
+
+		dpi1_out: endpoint {
+			remote-endpoint = <&sii9022_in>;
+		};
+	};
+};
-- 
2.40.1


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

* [PATCH v5 3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

The DSS outputs DPI signals via its second video port (VP2). The DPI
output from DSS is 24 bits (RGB888) and is forwarded to an HDMI
transmitter (SIL9022) on the board.

Add pinmux info for DSS DPI output.

Add DT nodes for SIL9022 HDMI transmitter (TX), and the HDMI connector
on the AM625 SK and AM62-LP SK platforms.

Additionally, connect the output of DSS (VP2) with input of the HDMI TX,
and the output of HDMI TX to the input of the HDMI connector.

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 91 +++++++++++++++++++
 1 file changed, 91 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
index 540ed8a0d7fb..677ff8de4b6e 100644
--- a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
@@ -114,6 +114,17 @@ sound_master: simple-audio-card,codec {
 			clocks = <&tlv320_mclk>;
 		};
 	};
+
+	hdmi0: connector-hdmi {
+		compatible = "hdmi-connector";
+		label = "hdmi";
+		type = "a";
+		port {
+			hdmi_connector_in: endpoint {
+				remote-endpoint = <&sii9022_out>;
+			};
+		};
+	};
 };
 
 &main_pmx0 {
@@ -226,6 +237,39 @@ AM62X_IOPAD(0x08c, PIN_OUTPUT, 2) /* (L25/J17) GPMC0_WEN.MCASP1_AXR0 */
 			AM62X_IOPAD(0x084, PIN_INPUT, 2) /* (L23/K20) GPMC0_ADVN_ALE.MCASP1_AXR2 */
 		>;
 	};
+
+	main_dss0_pins_default: main-dss0-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x100, PIN_OUTPUT, 0) /* (AC25) VOUT0_VSYNC */
+			AM62X_IOPAD(0x0f8, PIN_OUTPUT, 0) /* (AB24) VOUT0_HSYNC */
+			AM62X_IOPAD(0x104, PIN_OUTPUT, 0) /* (AC24) VOUT0_PCLK */
+			AM62X_IOPAD(0x0fc, PIN_OUTPUT, 0) /* (Y20) VOUT0_DE */
+			AM62X_IOPAD(0x0b8, PIN_OUTPUT, 0) /* (U22) VOUT0_DATA0 */
+			AM62X_IOPAD(0x0bc, PIN_OUTPUT, 0) /* (V24) VOUT0_DATA1 */
+			AM62X_IOPAD(0x0c0, PIN_OUTPUT, 0) /* (W25) VOUT0_DATA2 */
+			AM62X_IOPAD(0x0c4, PIN_OUTPUT, 0) /* (W24) VOUT0_DATA3 */
+			AM62X_IOPAD(0x0c8, PIN_OUTPUT, 0) /* (Y25) VOUT0_DATA4 */
+			AM62X_IOPAD(0x0cc, PIN_OUTPUT, 0) /* (Y24) VOUT0_DATA5 */
+			AM62X_IOPAD(0x0d0, PIN_OUTPUT, 0) /* (Y23) VOUT0_DATA6 */
+			AM62X_IOPAD(0x0d4, PIN_OUTPUT, 0) /* (AA25) VOUT0_DATA7 */
+			AM62X_IOPAD(0x0d8, PIN_OUTPUT, 0) /* (V21) VOUT0_DATA8 */
+			AM62X_IOPAD(0x0dc, PIN_OUTPUT, 0) /* (W21) VOUT0_DATA9 */
+			AM62X_IOPAD(0x0e0, PIN_OUTPUT, 0) /* (V20) VOUT0_DATA10 */
+			AM62X_IOPAD(0x0e4, PIN_OUTPUT, 0) /* (AA23) VOUT0_DATA11 */
+			AM62X_IOPAD(0x0e8, PIN_OUTPUT, 0) /* (AB25) VOUT0_DATA12 */
+			AM62X_IOPAD(0x0ec, PIN_OUTPUT, 0) /* (AA24) VOUT0_DATA13 */
+			AM62X_IOPAD(0x0f0, PIN_OUTPUT, 0) /* (Y22) VOUT0_DATA14 */
+			AM62X_IOPAD(0x0f4, PIN_OUTPUT, 0) /* (AA21) VOUT0_DATA15 */
+			AM62X_IOPAD(0x05c, PIN_OUTPUT, 1) /* (R24) GPMC0_AD8.VOUT0_DATA16 */
+			AM62X_IOPAD(0x060, PIN_OUTPUT, 1) /* (R25) GPMC0_AD9.VOUT0_DATA17 */
+			AM62X_IOPAD(0x064, PIN_OUTPUT, 1) /* (T25) GPMC0_AD10.VOUT0_DATA18 */
+			AM62X_IOPAD(0x068, PIN_OUTPUT, 1) /* (R21) GPMC0_AD11.VOUT0_DATA19 */
+			AM62X_IOPAD(0x06c, PIN_OUTPUT, 1) /* (T22) GPMC0_AD12.VOUT0_DATA20 */
+			AM62X_IOPAD(0x070, PIN_OUTPUT, 1) /* (T24) GPMC0_AD13.VOUT0_DATA21 */
+			AM62X_IOPAD(0x074, PIN_OUTPUT, 1) /* (U25) GPMC0_AD14.VOUT0_DATA22 */
+			AM62X_IOPAD(0x078, PIN_OUTPUT, 1) /* (U24) GPMC0_AD15.VOUT0_DATA23 */
+		>;
+	};
 };
 
 &mcu_pmx0 {
@@ -313,6 +357,36 @@ tlv320aic3106: audio-codec@1b {
 		IOVDD-supply = <&vcc_3v3_sys>;
 		DRVDD-supply = <&vcc_3v3_sys>;
 	};
+
+	sii9022: bridge-hdmi@3b {
+		compatible = "sil,sii9022";
+		reg = <0x3b>;
+		interrupt-parent = <&exp1>;
+		interrupts = <16 IRQ_TYPE_EDGE_FALLING>;
+		#sound-dai-cells = <0>;
+		sil,i2s-data-lanes = < 0 >;
+
+		ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			port@0 {
+				reg = <0>;
+
+				sii9022_in: endpoint {
+					remote-endpoint = <&dpi1_out>;
+				};
+			};
+
+			port@1 {
+				reg = <1>;
+
+				sii9022_out: endpoint {
+					remote-endpoint = <&hdmi_connector_in>;
+				};
+			};
+		};
+	};
 };
 
 &sdhci0 {
@@ -410,3 +484,20 @@ &mcasp1 {
 	tx-num-evt = <32>;
 	rx-num-evt = <32>;
 };
+
+&dss {
+	status = "okay";
+	pinctrl-names = "default";
+	pinctrl-0 = <&main_dss0_pins_default>;
+};
+
+&dss_ports {
+	/* VP2: DPI Output */
+	port@1 {
+		reg = <1>;
+
+		dpi1_out: endpoint {
+			remote-endpoint = <&sii9022_in>;
+		};
+	};
+};
-- 
2.40.1


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

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

* [PATCH v5 4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

From: Jai Luthra <j-luthra@ti.com>

Enable audio output over HDMI instead of the 3.5mm jack.

A FET switch (U65) on the EVM muxes serial audio lines coming from McASP
between the codec (tlv320aic3106) and the HDMI bridge (sii9022).

By default it uses the codec, but it can be toggled to use the HDMI
bridge by shorting a (J24) header on the board.

Signed-off-by: Jai Luthra <j-luthra@ti.com>
[a-bhatia1: Cosmetic changes]
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/Makefile               |  3 ++
 .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   | 40 +++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso

diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile
index 437a3d7e8e3a..e3eadf69d43b 100644
--- a/arch/arm64/boot/dts/ti/Makefile
+++ b/arch/arm64/boot/dts/ti/Makefile
@@ -19,6 +19,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dahlia.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dev.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-yavia.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am62-lp-sk.dtb
+dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo
 
 # Boards with AM62Ax SoC
 dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk.dtb
@@ -68,6 +69,8 @@ dtb-$(CONFIG_ARCH_K3) += k3-am69-sk.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-j784s4-evm.dtb
 
 # Enable support for device-tree overlays
+DTC_FLAGS_k3-am625-sk += -@
+DTC_FLAGS_k3-am62-lp-sk += -@
 DTC_FLAGS_k3-am6548-iot2050-advanced-m2 += -@
 DTC_FLAGS_k3-j721e-common-proc-board += -@
 DTC_FLAGS_k3-j721s2-common-proc-board += -@
diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso b/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
new file mode 100644
index 000000000000..43a0ddc123e5
--- /dev/null
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
@@ -0,0 +1,40 @@
+// SPDX-License-Identifier: GPL-2.0
+/**
+ * Audio playback via HDMI for AM625-SK and AM62-LP SK.
+ *
+ * Links:
+ * AM625 SK: https://www.ti.com/tool/SK-AM62
+ * AM62-LP SK: https://www.ti.com/tool/SK-AM62-LP
+ *
+ * Copyright (C) 2023 Texas Instruments Incorporated - http://www.ti.com/
+ */
+
+/dts-v1/;
+/plugin/;
+
+&{/} {
+	hdmi_audio: sound-sii9022 {
+		compatible = "simple-audio-card";
+		simple-audio-card,name = "AM62x-Sil9022-HDMI";
+		simple-audio-card,format = "i2s";
+		simple-audio-card,bitclock-master = <&hdmi_dailink_master>;
+		simple-audio-card,frame-master = <&hdmi_dailink_master>;
+
+		hdmi_dailink_master: simple-audio-card,cpu {
+			sound-dai = <&mcasp1>;
+			system-clock-direction-out;
+		};
+
+		simple-audio-card,codec {
+			sound-dai = <&sii9022>;
+		};
+	};
+};
+
+&mcasp1 {
+	auxclk-fs-ratio = <2177>;
+};
+
+&codec_audio {
+	status = "disabled";
+};
-- 
2.40.1


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

* [PATCH v5 4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

From: Jai Luthra <j-luthra@ti.com>

Enable audio output over HDMI instead of the 3.5mm jack.

A FET switch (U65) on the EVM muxes serial audio lines coming from McASP
between the codec (tlv320aic3106) and the HDMI bridge (sii9022).

By default it uses the codec, but it can be toggled to use the HDMI
bridge by shorting a (J24) header on the board.

Signed-off-by: Jai Luthra <j-luthra@ti.com>
[a-bhatia1: Cosmetic changes]
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/boot/dts/ti/Makefile               |  3 ++
 .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   | 40 +++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso

diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile
index 437a3d7e8e3a..e3eadf69d43b 100644
--- a/arch/arm64/boot/dts/ti/Makefile
+++ b/arch/arm64/boot/dts/ti/Makefile
@@ -19,6 +19,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dahlia.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dev.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-yavia.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-am62-lp-sk.dtb
+dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo
 
 # Boards with AM62Ax SoC
 dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk.dtb
@@ -68,6 +69,8 @@ dtb-$(CONFIG_ARCH_K3) += k3-am69-sk.dtb
 dtb-$(CONFIG_ARCH_K3) += k3-j784s4-evm.dtb
 
 # Enable support for device-tree overlays
+DTC_FLAGS_k3-am625-sk += -@
+DTC_FLAGS_k3-am62-lp-sk += -@
 DTC_FLAGS_k3-am6548-iot2050-advanced-m2 += -@
 DTC_FLAGS_k3-j721e-common-proc-board += -@
 DTC_FLAGS_k3-j721s2-common-proc-board += -@
diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso b/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
new file mode 100644
index 000000000000..43a0ddc123e5
--- /dev/null
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
@@ -0,0 +1,40 @@
+// SPDX-License-Identifier: GPL-2.0
+/**
+ * Audio playback via HDMI for AM625-SK and AM62-LP SK.
+ *
+ * Links:
+ * AM625 SK: https://www.ti.com/tool/SK-AM62
+ * AM62-LP SK: https://www.ti.com/tool/SK-AM62-LP
+ *
+ * Copyright (C) 2023 Texas Instruments Incorporated - http://www.ti.com/
+ */
+
+/dts-v1/;
+/plugin/;
+
+&{/} {
+	hdmi_audio: sound-sii9022 {
+		compatible = "simple-audio-card";
+		simple-audio-card,name = "AM62x-Sil9022-HDMI";
+		simple-audio-card,format = "i2s";
+		simple-audio-card,bitclock-master = <&hdmi_dailink_master>;
+		simple-audio-card,frame-master = <&hdmi_dailink_master>;
+
+		hdmi_dailink_master: simple-audio-card,cpu {
+			sound-dai = <&mcasp1>;
+			system-clock-direction-out;
+		};
+
+		simple-audio-card,codec {
+			sound-dai = <&sii9022>;
+		};
+	};
+};
+
+&mcasp1 {
+	auxclk-fs-ratio = <2177>;
+};
+
+&codec_audio {
+	status = "disabled";
+};
-- 
2.40.1


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

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

* [PATCH v5 5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

From: Nishanth Menon <nm@ti.com>

The DSS outputs DPI signals via its second video port (VP2). The DPI
output from DSS is 24 bits (RGB888) and is forwarded to an HDMI
transmitter (ITE-IT66121) on the BeaglePlay platform. For audio output,
BeaglePlay uses mcasp1.

Add pinmux info for DSS DPI signals.

Further, add support for HDMI audio and video output.

Signed-off-by: Nishanth Menon <nm@ti.com>
[a-bhatia1: Edit sound node properties and HDMI node and label names]
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
 1 file changed, 150 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
index e07ddff22e07..7cfdf562b53b 100644
--- a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
+++ b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
@@ -192,6 +192,34 @@ usr: button-usr {
 
 	};
 
+	hdmi0: connector-hdmi {
+		compatible = "hdmi-connector";
+		label = "hdmi";
+		type = "a";
+		port {
+			hdmi_connector_in: endpoint {
+				remote-endpoint = <&it66121_out>;
+			};
+		};
+	};
+
+	sound {
+		compatible = "simple-audio-card";
+		simple-audio-card,name = "it66121 HDMI";
+		simple-audio-card,format = "i2s";
+		simple-audio-card,bitclock-master = <&hdmi_dailink_master>;
+		simple-audio-card,frame-master = <&hdmi_dailink_master>;
+
+		hdmi_dailink_master: simple-audio-card,cpu {
+			sound-dai = <&mcasp1>;
+			system-clock-direction-out;
+		};
+
+		simple-audio-card,codec {
+			sound-dai = <&it66121>;
+		};
+	};
+
 	/* Workaround for errata i2329 - just use mdio bitbang */
 	mdio0: mdio {
 		compatible = "virtual,mdio-gpio";
@@ -422,6 +450,57 @@ pmic_irq_pins_default: pmic-irq-default-pins {
 			AM62X_IOPAD(0x01f4, PIN_INPUT_PULLUP, 0) /* (D16) EXTINTn */
 		>;
 	};
+
+	hdmi_gpio_pins_default: hdmi-gpio-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0094, PIN_INPUT_PULLUP | PIN_DEBOUNCE_CONF6, 7) /* (N20) GPMC0_BE1n.GPIO0_36 */
+			AM62X_IOPAD(0x0054, PIN_OUTPUT_PULLUP, 7) /* (P21) GPMC0_AD6.GPIO0_21 */
+		>;
+	};
+
+	mcasp_hdmi_pins_default: mcasp-hdmi-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0090, PIN_INPUT, 2) /* (M24) GPMC0_BE0n_CLE.MCASP1_ACLKX */
+			AM62X_IOPAD(0x0098, PIN_INPUT, 2) /* (U23) GPMC0_WAIT0.MCASP1_AFSX */
+			AM62X_IOPAD(0x008c, PIN_OUTPUT, 2) /* (L25) GPMC0_WEn.MCASP1_AXR0 */
+			AM62X_IOPAD(0x0088, PIN_INPUT, 2) /* (L24) GPMC0_OEn_REn.MCASP1_AXR1 */
+			AM62X_IOPAD(0x0084, PIN_INPUT, 2) /* (L23) GPMC0_ADVn_ALE.MCASP1_AXR2 */
+			AM62X_IOPAD(0x007c, PIN_INPUT, 2) /* (P25) GPMC0_CLK.MCASP1_AXR3 */
+		>;
+	};
+
+	dss0_pins_default: dss0-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0100, PIN_OUTPUT, 0) /* (AC25) VOUT0_VSYNC */
+			AM62X_IOPAD(0x00f8, PIN_OUTPUT, 0) /* (AB24) VOUT0_HSYNC */
+			AM62X_IOPAD(0x0104, PIN_OUTPUT, 0) /* (AC24) VOUT0_PCLK */
+			AM62X_IOPAD(0x00fc, PIN_OUTPUT, 0) /* (Y20) VOUT0_DE */
+			AM62X_IOPAD(0x00b8, PIN_OUTPUT, 0) /* (U22) VOUT0_DATA0 */
+			AM62X_IOPAD(0x00bc, PIN_OUTPUT, 0) /* (V24) VOUT0_DATA1 */
+			AM62X_IOPAD(0x00c0, PIN_OUTPUT, 0) /* (W25) VOUT0_DATA2 */
+			AM62X_IOPAD(0x00c4, PIN_OUTPUT, 0) /* (W24) VOUT0_DATA3 */
+			AM62X_IOPAD(0x00c8, PIN_OUTPUT, 0) /* (Y25) VOUT0_DATA4 */
+			AM62X_IOPAD(0x00cc, PIN_OUTPUT, 0) /* (Y24) VOUT0_DATA5 */
+			AM62X_IOPAD(0x00d0, PIN_OUTPUT, 0) /* (Y23) VOUT0_DATA6 */
+			AM62X_IOPAD(0x00d4, PIN_OUTPUT, 0) /* (AA25) VOUT0_DATA7 */
+			AM62X_IOPAD(0x00d8, PIN_OUTPUT, 0) /* (V21) VOUT0_DATA8 */
+			AM62X_IOPAD(0x00dc, PIN_OUTPUT, 0) /* (W21) VOUT0_DATA9 */
+			AM62X_IOPAD(0x00e0, PIN_OUTPUT, 0) /* (V20) VOUT0_DATA10 */
+			AM62X_IOPAD(0x00e4, PIN_OUTPUT, 0) /* (AA23) VOUT0_DATA11 */
+			AM62X_IOPAD(0x00e8, PIN_OUTPUT, 0) /* (AB25) VOUT0_DATA12 */
+			AM62X_IOPAD(0x00ec, PIN_OUTPUT, 0) /* (AA24) VOUT0_DATA13 */
+			AM62X_IOPAD(0x00f0, PIN_OUTPUT, 0) /* (Y22) VOUT0_DATA14 */
+			AM62X_IOPAD(0x00f4, PIN_OUTPUT, 0) /* (AA21) VOUT0_DATA15 */
+			AM62X_IOPAD(0x005c, PIN_OUTPUT, 1) /* (R24) GPMC0_AD8.VOUT0_DATA16 */
+			AM62X_IOPAD(0x0060, PIN_OUTPUT, 1) /* (R25) GPMC0_AD9.VOUT0_DATA17 */
+			AM62X_IOPAD(0x0064, PIN_OUTPUT, 1) /* (T25) GPMC0_AD10.VOUT0_DATA18 */
+			AM62X_IOPAD(0x0068, PIN_OUTPUT, 1) /* (R21) GPMC0_AD11.VOUT0_DATA19 */
+			AM62X_IOPAD(0x006c, PIN_OUTPUT, 1) /* (T22) GPMC0_AD12.VOUT0_DATA20 */
+			AM62X_IOPAD(0x0070, PIN_OUTPUT, 1) /* (T24) GPMC0_AD13.VOUT0_DATA21 */
+			AM62X_IOPAD(0x0074, PIN_OUTPUT, 1) /* (U25) GPMC0_AD14.VOUT0_DATA22 */
+			AM62X_IOPAD(0x0078, PIN_OUTPUT, 1) /* (U24) GPMC0_AD15.VOUT0_DATA23 */
+		>;
+	};
 };
 
 &mcu_pmx0 {
@@ -670,6 +749,42 @@ &main_i2c2 {
 	pinctrl-0 = <&i2c2_1v8_pins_default>;
 	clock-frequency = <100000>;
 	status = "okay";
+
+	it66121: bridge-hdmi@4c {
+		compatible = "ite,it66121";
+		reg = <0x4c>;
+		pinctrl-names = "default";
+		pinctrl-0 = <&hdmi_gpio_pins_default>;
+		vcn33-supply = <&vdd_3v3>;
+		vcn18-supply = <&buck2_reg>;
+		vrf12-supply = <&buck3_reg>;
+		reset-gpios = <&main_gpio0 21 GPIO_ACTIVE_LOW>;
+		interrupt-parent = <&main_gpio0>;
+		interrupts = <36 IRQ_TYPE_EDGE_FALLING>;
+		#sound-dai-cells = <0>;
+
+		ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			port@0 {
+				reg = <0>;
+
+				it66121_in: endpoint {
+					bus-width = <24>;
+					remote-endpoint = <&dpi1_out>;
+				};
+			};
+
+			port@1 {
+				reg = <1>;
+
+				it66121_out: endpoint {
+					remote-endpoint = <&hdmi_connector_in>;
+				};
+			};
+		};
+	};
 };
 
 &main_i2c3 {
@@ -756,3 +871,38 @@ &main_uart6 {
 	pinctrl-0 = <&wifi_debug_uart_pins_default>;
 	status = "okay";
 };
+
+&dss {
+	status = "okay";
+	pinctrl-names = "default";
+	pinctrl-0 = <&dss0_pins_default>;
+};
+
+&dss_ports {
+	/* VP2: DPI Output */
+	port@1 {
+		reg = <1>;
+
+		dpi1_out: endpoint {
+			remote-endpoint = <&it66121_in>;
+		};
+	};
+};
+
+&mcasp1 {
+	status = "okay";
+	#sound-dai-cells = <0>;
+	pinctrl-names = "default";
+	pinctrl-0 = <&mcasp_hdmi_pins_default>;
+	auxclk-fs-ratio = <2177>;
+	op-mode = <0>;          /* MCASP_IIS_MODE */
+	tdm-slots = <2>;
+	serial-dir = <  /* 0: INACTIVE, 1: TX, 2: RX */
+	       1 0 0 0
+	       0 0 0 0
+	       0 0 0 0
+	       0 0 0 0
+	>;
+	tx-num-evt = <32>;
+	rx-num-evt = <32>;
+};
-- 
2.40.1


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

* [PATCH v5 5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

From: Nishanth Menon <nm@ti.com>

The DSS outputs DPI signals via its second video port (VP2). The DPI
output from DSS is 24 bits (RGB888) and is forwarded to an HDMI
transmitter (ITE-IT66121) on the BeaglePlay platform. For audio output,
BeaglePlay uses mcasp1.

Add pinmux info for DSS DPI signals.

Further, add support for HDMI audio and video output.

Signed-off-by: Nishanth Menon <nm@ti.com>
[a-bhatia1: Edit sound node properties and HDMI node and label names]
Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
 1 file changed, 150 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
index e07ddff22e07..7cfdf562b53b 100644
--- a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
+++ b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
@@ -192,6 +192,34 @@ usr: button-usr {
 
 	};
 
+	hdmi0: connector-hdmi {
+		compatible = "hdmi-connector";
+		label = "hdmi";
+		type = "a";
+		port {
+			hdmi_connector_in: endpoint {
+				remote-endpoint = <&it66121_out>;
+			};
+		};
+	};
+
+	sound {
+		compatible = "simple-audio-card";
+		simple-audio-card,name = "it66121 HDMI";
+		simple-audio-card,format = "i2s";
+		simple-audio-card,bitclock-master = <&hdmi_dailink_master>;
+		simple-audio-card,frame-master = <&hdmi_dailink_master>;
+
+		hdmi_dailink_master: simple-audio-card,cpu {
+			sound-dai = <&mcasp1>;
+			system-clock-direction-out;
+		};
+
+		simple-audio-card,codec {
+			sound-dai = <&it66121>;
+		};
+	};
+
 	/* Workaround for errata i2329 - just use mdio bitbang */
 	mdio0: mdio {
 		compatible = "virtual,mdio-gpio";
@@ -422,6 +450,57 @@ pmic_irq_pins_default: pmic-irq-default-pins {
 			AM62X_IOPAD(0x01f4, PIN_INPUT_PULLUP, 0) /* (D16) EXTINTn */
 		>;
 	};
+
+	hdmi_gpio_pins_default: hdmi-gpio-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0094, PIN_INPUT_PULLUP | PIN_DEBOUNCE_CONF6, 7) /* (N20) GPMC0_BE1n.GPIO0_36 */
+			AM62X_IOPAD(0x0054, PIN_OUTPUT_PULLUP, 7) /* (P21) GPMC0_AD6.GPIO0_21 */
+		>;
+	};
+
+	mcasp_hdmi_pins_default: mcasp-hdmi-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0090, PIN_INPUT, 2) /* (M24) GPMC0_BE0n_CLE.MCASP1_ACLKX */
+			AM62X_IOPAD(0x0098, PIN_INPUT, 2) /* (U23) GPMC0_WAIT0.MCASP1_AFSX */
+			AM62X_IOPAD(0x008c, PIN_OUTPUT, 2) /* (L25) GPMC0_WEn.MCASP1_AXR0 */
+			AM62X_IOPAD(0x0088, PIN_INPUT, 2) /* (L24) GPMC0_OEn_REn.MCASP1_AXR1 */
+			AM62X_IOPAD(0x0084, PIN_INPUT, 2) /* (L23) GPMC0_ADVn_ALE.MCASP1_AXR2 */
+			AM62X_IOPAD(0x007c, PIN_INPUT, 2) /* (P25) GPMC0_CLK.MCASP1_AXR3 */
+		>;
+	};
+
+	dss0_pins_default: dss0-default-pins {
+		pinctrl-single,pins = <
+			AM62X_IOPAD(0x0100, PIN_OUTPUT, 0) /* (AC25) VOUT0_VSYNC */
+			AM62X_IOPAD(0x00f8, PIN_OUTPUT, 0) /* (AB24) VOUT0_HSYNC */
+			AM62X_IOPAD(0x0104, PIN_OUTPUT, 0) /* (AC24) VOUT0_PCLK */
+			AM62X_IOPAD(0x00fc, PIN_OUTPUT, 0) /* (Y20) VOUT0_DE */
+			AM62X_IOPAD(0x00b8, PIN_OUTPUT, 0) /* (U22) VOUT0_DATA0 */
+			AM62X_IOPAD(0x00bc, PIN_OUTPUT, 0) /* (V24) VOUT0_DATA1 */
+			AM62X_IOPAD(0x00c0, PIN_OUTPUT, 0) /* (W25) VOUT0_DATA2 */
+			AM62X_IOPAD(0x00c4, PIN_OUTPUT, 0) /* (W24) VOUT0_DATA3 */
+			AM62X_IOPAD(0x00c8, PIN_OUTPUT, 0) /* (Y25) VOUT0_DATA4 */
+			AM62X_IOPAD(0x00cc, PIN_OUTPUT, 0) /* (Y24) VOUT0_DATA5 */
+			AM62X_IOPAD(0x00d0, PIN_OUTPUT, 0) /* (Y23) VOUT0_DATA6 */
+			AM62X_IOPAD(0x00d4, PIN_OUTPUT, 0) /* (AA25) VOUT0_DATA7 */
+			AM62X_IOPAD(0x00d8, PIN_OUTPUT, 0) /* (V21) VOUT0_DATA8 */
+			AM62X_IOPAD(0x00dc, PIN_OUTPUT, 0) /* (W21) VOUT0_DATA9 */
+			AM62X_IOPAD(0x00e0, PIN_OUTPUT, 0) /* (V20) VOUT0_DATA10 */
+			AM62X_IOPAD(0x00e4, PIN_OUTPUT, 0) /* (AA23) VOUT0_DATA11 */
+			AM62X_IOPAD(0x00e8, PIN_OUTPUT, 0) /* (AB25) VOUT0_DATA12 */
+			AM62X_IOPAD(0x00ec, PIN_OUTPUT, 0) /* (AA24) VOUT0_DATA13 */
+			AM62X_IOPAD(0x00f0, PIN_OUTPUT, 0) /* (Y22) VOUT0_DATA14 */
+			AM62X_IOPAD(0x00f4, PIN_OUTPUT, 0) /* (AA21) VOUT0_DATA15 */
+			AM62X_IOPAD(0x005c, PIN_OUTPUT, 1) /* (R24) GPMC0_AD8.VOUT0_DATA16 */
+			AM62X_IOPAD(0x0060, PIN_OUTPUT, 1) /* (R25) GPMC0_AD9.VOUT0_DATA17 */
+			AM62X_IOPAD(0x0064, PIN_OUTPUT, 1) /* (T25) GPMC0_AD10.VOUT0_DATA18 */
+			AM62X_IOPAD(0x0068, PIN_OUTPUT, 1) /* (R21) GPMC0_AD11.VOUT0_DATA19 */
+			AM62X_IOPAD(0x006c, PIN_OUTPUT, 1) /* (T22) GPMC0_AD12.VOUT0_DATA20 */
+			AM62X_IOPAD(0x0070, PIN_OUTPUT, 1) /* (T24) GPMC0_AD13.VOUT0_DATA21 */
+			AM62X_IOPAD(0x0074, PIN_OUTPUT, 1) /* (U25) GPMC0_AD14.VOUT0_DATA22 */
+			AM62X_IOPAD(0x0078, PIN_OUTPUT, 1) /* (U24) GPMC0_AD15.VOUT0_DATA23 */
+		>;
+	};
 };
 
 &mcu_pmx0 {
@@ -670,6 +749,42 @@ &main_i2c2 {
 	pinctrl-0 = <&i2c2_1v8_pins_default>;
 	clock-frequency = <100000>;
 	status = "okay";
+
+	it66121: bridge-hdmi@4c {
+		compatible = "ite,it66121";
+		reg = <0x4c>;
+		pinctrl-names = "default";
+		pinctrl-0 = <&hdmi_gpio_pins_default>;
+		vcn33-supply = <&vdd_3v3>;
+		vcn18-supply = <&buck2_reg>;
+		vrf12-supply = <&buck3_reg>;
+		reset-gpios = <&main_gpio0 21 GPIO_ACTIVE_LOW>;
+		interrupt-parent = <&main_gpio0>;
+		interrupts = <36 IRQ_TYPE_EDGE_FALLING>;
+		#sound-dai-cells = <0>;
+
+		ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			port@0 {
+				reg = <0>;
+
+				it66121_in: endpoint {
+					bus-width = <24>;
+					remote-endpoint = <&dpi1_out>;
+				};
+			};
+
+			port@1 {
+				reg = <1>;
+
+				it66121_out: endpoint {
+					remote-endpoint = <&hdmi_connector_in>;
+				};
+			};
+		};
+	};
 };
 
 &main_i2c3 {
@@ -756,3 +871,38 @@ &main_uart6 {
 	pinctrl-0 = <&wifi_debug_uart_pins_default>;
 	status = "okay";
 };
+
+&dss {
+	status = "okay";
+	pinctrl-names = "default";
+	pinctrl-0 = <&dss0_pins_default>;
+};
+
+&dss_ports {
+	/* VP2: DPI Output */
+	port@1 {
+		reg = <1>;
+
+		dpi1_out: endpoint {
+			remote-endpoint = <&it66121_in>;
+		};
+	};
+};
+
+&mcasp1 {
+	status = "okay";
+	#sound-dai-cells = <0>;
+	pinctrl-names = "default";
+	pinctrl-0 = <&mcasp_hdmi_pins_default>;
+	auxclk-fs-ratio = <2177>;
+	op-mode = <0>;          /* MCASP_IIS_MODE */
+	tdm-slots = <2>;
+	serial-dir = <  /* 0: INACTIVE, 1: TX, 2: RX */
+	       1 0 0 0
+	       0 0 0 0
+	       0 0 0 0
+	       0 0 0 0
+	>;
+	tx-num-evt = <32>;
+	rx-num-evt = <32>;
+};
-- 
2.40.1


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

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

* [PATCH v5 6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09  8:45   ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Enable CONFIG_DRM_ITE_IT66121.

ILITEK ITE-IT66121 is an HDMI transmitter, which takes parallel video
signals (DPI) as input. It is being used on TI's AM625 SoC based
BeaglePlay platform[0].

[0]: https://beagleboard.org/play

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index bf13d5c46578..87c5d2273535 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -840,6 +840,7 @@ CONFIG_DRM_PANEL_VISIONOX_VTDR6130=m
 CONFIG_DRM_LONTIUM_LT8912B=m
 CONFIG_DRM_LONTIUM_LT9611=m
 CONFIG_DRM_LONTIUM_LT9611UXC=m
+CONFIG_DRM_ITE_IT66121=m
 CONFIG_DRM_NWL_MIPI_DSI=m
 CONFIG_DRM_PARADE_PS8640=m
 CONFIG_DRM_SII902X=m
-- 
2.40.1


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

* [PATCH v5 6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
@ 2023-08-09  8:45   ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-09  8:45 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary, Aradhya Bhatia

Enable CONFIG_DRM_ITE_IT66121.

ILITEK ITE-IT66121 is an HDMI transmitter, which takes parallel video
signals (DPI) as input. It is being used on TI's AM625 SoC based
BeaglePlay platform[0].

[0]: https://beagleboard.org/play

Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index bf13d5c46578..87c5d2273535 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -840,6 +840,7 @@ CONFIG_DRM_PANEL_VISIONOX_VTDR6130=m
 CONFIG_DRM_LONTIUM_LT8912B=m
 CONFIG_DRM_LONTIUM_LT9611=m
 CONFIG_DRM_LONTIUM_LT9611UXC=m
+CONFIG_DRM_ITE_IT66121=m
 CONFIG_DRM_NWL_MIPI_DSI=m
 CONFIG_DRM_PARADE_PS8640=m
 CONFIG_DRM_SII902X=m
-- 
2.40.1


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

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-09 14:40   ` Nishanth Menon
  -1 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-09 14:40 UTC (permalink / raw)
  To: Aradhya Bhatia
  Cc: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 14:15-20230809, Aradhya Bhatia wrote:
> Hi all,
> 
> The patch series adds DT nodes for Display SubSystem (DSS) and other
> peripherals required to enable the HDMI audio and video on the AM625 SK,
> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
> monitor can be connected to the boards for the audio/video outputs.
> 
> The series adding the compatible and basic driver support[0] is in the
> drm-misc-next and linux-next queues and is expected to be in the
> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
> that introduces debounce select mux macros. This patch too is not in
> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
> linux-next.
> 
> Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
> linux-kernel v6.1.
> 
> Regards
> Aradhya
> 
> Change Log:
> V4 -> V5:
>   - Cosmetic changes as suggested by Jayesh.
>   - Fixed the mis-represented DSS VP1 clock, and added a
>     fixed-factor-clock.
> 
> V3 -> V4:
>   - Added "Fixes" tag for patch 1/6.
>   - Rebased to linux-next.
>   - Enabled display at board level and disabled at SoC level.
>   - Dropped OLDI pinmux configuration as OLDI output comes directly from
>     the SoC and muxing is not required.
>   - Squashed DSS pinmux patches into their platform specific HDMI
>     support patches, because it did not make sense to have only one set
>     of pinmux config separated in a patch.
> 
> V2 -> V3:
>   - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
>   - Peripheral nodes like HDMI TX, HDMI connector are now added to
>     k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
>     support AM62-LP SK-EVM as well.
>   - Dropped the HDMI master clock node as it is not connected on the
>     EVM, and should not have been added in the first place.
>   - Re-worded and Re-ordered commits.
>   - Dropped Rahul Ravikumar's R-bs because of the changes.
>   - Added AM625 based Beagle-Play for HDMI support.
>   - Added HDMI audio support as well.
> 
> V1 -> V2:
>  - Removed repetitive data in dss_ports
> 
> V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
> V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
> V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
> V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/
> 
> [0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
> [1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
> [2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
> [3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd
> 
> 
> Aradhya Bhatia (4):
>   arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>   arm64: dts: ti: k3-am62-main: Add node for DSS
>   arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>   arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
> 
> Jai Luthra (1):
>   arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
> 
> Nishanth Menon (1):
>   arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
> 
>  arch/arm64/boot/dts/ti/Makefile               |   3 +
>  arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
>  arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
>  .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
>  .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
>  .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
>  arch/arm64/configs/defconfig                  |   1 +
>  7 files changed, 319 insertions(+), 1 deletion(-)
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
> 
> 
> base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
> -- 
> 2.40.1
> 

Can you help cleanup the following before we start introducing new oldi
and dss support? I am not sure if these were introduced due to yaml
updates or something pre-existing.

linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-m2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-09 14:40   ` Nishanth Menon
  0 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-09 14:40 UTC (permalink / raw)
  To: Aradhya Bhatia
  Cc: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 14:15-20230809, Aradhya Bhatia wrote:
> Hi all,
> 
> The patch series adds DT nodes for Display SubSystem (DSS) and other
> peripherals required to enable the HDMI audio and video on the AM625 SK,
> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
> monitor can be connected to the boards for the audio/video outputs.
> 
> The series adding the compatible and basic driver support[0] is in the
> drm-misc-next and linux-next queues and is expected to be in the
> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
> that introduces debounce select mux macros. This patch too is not in
> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
> linux-next.
> 
> Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
> linux-kernel v6.1.
> 
> Regards
> Aradhya
> 
> Change Log:
> V4 -> V5:
>   - Cosmetic changes as suggested by Jayesh.
>   - Fixed the mis-represented DSS VP1 clock, and added a
>     fixed-factor-clock.
> 
> V3 -> V4:
>   - Added "Fixes" tag for patch 1/6.
>   - Rebased to linux-next.
>   - Enabled display at board level and disabled at SoC level.
>   - Dropped OLDI pinmux configuration as OLDI output comes directly from
>     the SoC and muxing is not required.
>   - Squashed DSS pinmux patches into their platform specific HDMI
>     support patches, because it did not make sense to have only one set
>     of pinmux config separated in a patch.
> 
> V2 -> V3:
>   - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
>   - Peripheral nodes like HDMI TX, HDMI connector are now added to
>     k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
>     support AM62-LP SK-EVM as well.
>   - Dropped the HDMI master clock node as it is not connected on the
>     EVM, and should not have been added in the first place.
>   - Re-worded and Re-ordered commits.
>   - Dropped Rahul Ravikumar's R-bs because of the changes.
>   - Added AM625 based Beagle-Play for HDMI support.
>   - Added HDMI audio support as well.
> 
> V1 -> V2:
>  - Removed repetitive data in dss_ports
> 
> V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
> V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
> V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
> V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/
> 
> [0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
> [1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
> [2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
> [3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd
> 
> 
> Aradhya Bhatia (4):
>   arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>   arm64: dts: ti: k3-am62-main: Add node for DSS
>   arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>   arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
> 
> Jai Luthra (1):
>   arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
> 
> Nishanth Menon (1):
>   arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
> 
>  arch/arm64/boot/dts/ti/Makefile               |   3 +
>  arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
>  arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
>  .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
>  .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
>  .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
>  arch/arm64/configs/defconfig                  |   1 +
>  7 files changed, 319 insertions(+), 1 deletion(-)
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
> 
> 
> base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
> -- 
> 2.40.1
> 

Can you help cleanup the following before we start introducing new oldi
and dss support? I am not sure if these were introduced due to yaml
updates or something pre-existing.

linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-m2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
  2023-08-09 14:40   ` Nishanth Menon
@ 2023-08-09 17:01     ` Andrew Davis
  -1 siblings, 0 replies; 26+ messages in thread
From: Andrew Davis @ 2023-08-09 17:01 UTC (permalink / raw)
  To: Nishanth Menon, Aradhya Bhatia
  Cc: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 8/9/23 9:40 AM, Nishanth Menon wrote:
> On 14:15-20230809, Aradhya Bhatia wrote:
>> Hi all,
>>
>> The patch series adds DT nodes for Display SubSystem (DSS) and other
>> peripherals required to enable the HDMI audio and video on the AM625 SK,
>> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
>> monitor can be connected to the boards for the audio/video outputs.
>>
>> The series adding the compatible and basic driver support[0] is in the
>> drm-misc-next and linux-next queues and is expected to be in the
>> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
>> that introduces debounce select mux macros. This patch too is not in
>> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
>> linux-next.
>>
>> Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
>> linux-kernel v6.1.
>>
>> Regards
>> Aradhya
>>
>> Change Log:
>> V4 -> V5:
>>    - Cosmetic changes as suggested by Jayesh.
>>    - Fixed the mis-represented DSS VP1 clock, and added a
>>      fixed-factor-clock.
>>
>> V3 -> V4:
>>    - Added "Fixes" tag for patch 1/6.
>>    - Rebased to linux-next.
>>    - Enabled display at board level and disabled at SoC level.
>>    - Dropped OLDI pinmux configuration as OLDI output comes directly from
>>      the SoC and muxing is not required.
>>    - Squashed DSS pinmux patches into their platform specific HDMI
>>      support patches, because it did not make sense to have only one set
>>      of pinmux config separated in a patch.
>>
>> V2 -> V3:
>>    - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
>>    - Peripheral nodes like HDMI TX, HDMI connector are now added to
>>      k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
>>      support AM62-LP SK-EVM as well.
>>    - Dropped the HDMI master clock node as it is not connected on the
>>      EVM, and should not have been added in the first place.
>>    - Re-worded and Re-ordered commits.
>>    - Dropped Rahul Ravikumar's R-bs because of the changes.
>>    - Added AM625 based Beagle-Play for HDMI support.
>>    - Added HDMI audio support as well.
>>
>> V1 -> V2:
>>   - Removed repetitive data in dss_ports
>>
>> V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
>> V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
>> V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
>> V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/
>>
>> [0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
>> [1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
>> [2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
>> [3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd
>>
>>
>> Aradhya Bhatia (4):
>>    arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>>    arm64: dts: ti: k3-am62-main: Add node for DSS
>>    arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>>    arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
>>
>> Jai Luthra (1):
>>    arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
>>
>> Nishanth Menon (1):
>>    arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
>>
>>   arch/arm64/boot/dts/ti/Makefile               |   3 +
>>   arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
>>   arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
>>   .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
>>   .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
>>   .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
>>   arch/arm64/configs/defconfig                  |   1 +
>>   7 files changed, 319 insertions(+), 1 deletion(-)
>>   create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
>>
>>
>> base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
>> -- 
>> 2.40.1
>>
> 
> Can you help cleanup the following before we start introducing new oldi
> and dss support? I am not sure if these were introduced due to yaml
> updates or something pre-existing.

This is a pre-existing issue. Lets not fault Aradhya nor hold back this
series for an issue we caused way back when initially adding AM65 support.

Just to help this along, I've gone and added the fix for these warnings
here[0][1].

Andrew

[0] https://lkml.org/lkml/2023/8/9/889
[1] https://lkml.org/lkml/2023/8/9/888

> 
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-m2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> 

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-09 17:01     ` Andrew Davis
  0 siblings, 0 replies; 26+ messages in thread
From: Andrew Davis @ 2023-08-09 17:01 UTC (permalink / raw)
  To: Nishanth Menon, Aradhya Bhatia
  Cc: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 8/9/23 9:40 AM, Nishanth Menon wrote:
> On 14:15-20230809, Aradhya Bhatia wrote:
>> Hi all,
>>
>> The patch series adds DT nodes for Display SubSystem (DSS) and other
>> peripherals required to enable the HDMI audio and video on the AM625 SK,
>> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
>> monitor can be connected to the boards for the audio/video outputs.
>>
>> The series adding the compatible and basic driver support[0] is in the
>> drm-misc-next and linux-next queues and is expected to be in the
>> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
>> that introduces debounce select mux macros. This patch too is not in
>> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
>> linux-next.
>>
>> Patches 4 and 5 have been picked up from TI's vendor tree[3] based off
>> linux-kernel v6.1.
>>
>> Regards
>> Aradhya
>>
>> Change Log:
>> V4 -> V5:
>>    - Cosmetic changes as suggested by Jayesh.
>>    - Fixed the mis-represented DSS VP1 clock, and added a
>>      fixed-factor-clock.
>>
>> V3 -> V4:
>>    - Added "Fixes" tag for patch 1/6.
>>    - Rebased to linux-next.
>>    - Enabled display at board level and disabled at SoC level.
>>    - Dropped OLDI pinmux configuration as OLDI output comes directly from
>>      the SoC and muxing is not required.
>>    - Squashed DSS pinmux patches into their platform specific HDMI
>>      support patches, because it did not make sense to have only one set
>>      of pinmux config separated in a patch.
>>
>> V2 -> V3:
>>    - Updated the compatible from "ti,am65x-dss" to "ti,am625-dss".
>>    - Peripheral nodes like HDMI TX, HDMI connector are now added to
>>      k3-am62x-sk-common.dtsi instead of k3-am625-sk.dts, in order to
>>      support AM62-LP SK-EVM as well.
>>    - Dropped the HDMI master clock node as it is not connected on the
>>      EVM, and should not have been added in the first place.
>>    - Re-worded and Re-ordered commits.
>>    - Dropped Rahul Ravikumar's R-bs because of the changes.
>>    - Added AM625 based Beagle-Play for HDMI support.
>>    - Added HDMI audio support as well.
>>
>> V1 -> V2:
>>   - Removed repetitive data in dss_ports
>>
>> V4: https://lore.kernel.org/all/20230807153307.22174-1-a-bhatia1@ti.com/
>> V3: https://lore.kernel.org/all/20230728173438.12995-1-a-bhatia1@ti.com/
>> V2: https://lore.kernel.org/all/20220505134303.23208-1-a-bhatia1@ti.com/
>> V1: https://lore.kernel.org/all/20220427090850.32280-1-a-bhatia1@ti.com/
>>
>> [0]: https://lore.kernel.org/all/20230616150900.6617-1-a-bhatia1@ti.com/
>> [1]: https://lore.kernel.org/all/20230619131620.3286650-1-nm@ti.com/
>> [2]: https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git/commit/?id=0bec3d7ecc7493b0e530f6f34539841ef6779006
>> [3]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/log/?h=ti-linux-6.1.y-cicd
>>
>>
>> Aradhya Bhatia (4):
>>    arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>>    arm64: dts: ti: k3-am62-main: Add node for DSS
>>    arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>>    arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
>>
>> Jai Luthra (1):
>>    arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
>>
>> Nishanth Menon (1):
>>    arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
>>
>>   arch/arm64/boot/dts/ti/Makefile               |   3 +
>>   arch/arm64/boot/dts/ti/k3-am62-main.dtsi      |  25 +++
>>   arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +
>>   .../arm64/boot/dts/ti/k3-am625-beagleplay.dts | 150 ++++++++++++++++++
>>   .../arm64/boot/dts/ti/k3-am62x-sk-common.dtsi |  93 ++++++++++-
>>   .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   |  40 +++++
>>   arch/arm64/configs/defconfig                  |   1 +
>>   7 files changed, 319 insertions(+), 1 deletion(-)
>>   create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
>>
>>
>> base-commit: 71cd4fc492ec41e4acd85e98bbf7a13753fc1e03
>> -- 
>> 2.40.1
>>
> 
> Can you help cleanup the following before we start introducing new oldi
> and dss support? I am not sure if these were introduced due to yaml
> updates or something pre-existing.

This is a pre-existing issue. Lets not fault Aradhya nor hold back this
series for an issue we caused way back when initially adding AM65 support.

Just to help this along, I've gone and added the fix for these warnings
here[0][1].

Andrew

[0] https://lkml.org/lkml/2023/8/9/889
[1] https://lkml.org/lkml/2023/8/9/888

> 
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-m2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced-pg2.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> linux/build/arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced.dtb: dss-oldi-io-ctrl@41e0: compatible: 'anyOf' conditional failed, one must be fixed:
> 

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

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
  2023-08-09 17:01     ` Andrew Davis
@ 2023-08-09 17:59       ` Nishanth Menon
  -1 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-09 17:59 UTC (permalink / raw)
  To: Andrew Davis
  Cc: Aradhya Bhatia, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 12:01-20230809, Andrew Davis wrote:
[...]
> > Can you help cleanup the following before we start introducing new oldi
> > and dss support? I am not sure if these were introduced due to yaml
> > updates or something pre-existing.
> 
> This is a pre-existing issue. Lets not fault Aradhya nor hold back this
> series for an issue we caused way back when initially adding AM65 support.
> 
> Just to help this along, I've gone and added the fix for these warnings
> here[0][1].
> 
> Andrew
> 
> [0] https://lkml.org/lkml/2023/8/9/889
> [1] https://lkml.org/lkml/2023/8/9/888
> 

I am tempted to plagiarize Lt. Aldo Raine "I want my fixes", but quips
aside, exactly why not picking up patches without fixes is the last
knob I have to force long standing issue resolution :). unfortunate to
need to use it, happy to see it still work.

That said, the patches will have to wait a cycle anyways (cant take
checkpatch warnings with rc1) for the binding to hit 6.6-rc1. In the
meanwhile lets see about getting that fix series merged..

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-09 17:59       ` Nishanth Menon
  0 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-09 17:59 UTC (permalink / raw)
  To: Andrew Davis
  Cc: Aradhya Bhatia, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On 12:01-20230809, Andrew Davis wrote:
[...]
> > Can you help cleanup the following before we start introducing new oldi
> > and dss support? I am not sure if these were introduced due to yaml
> > updates or something pre-existing.
> 
> This is a pre-existing issue. Lets not fault Aradhya nor hold back this
> series for an issue we caused way back when initially adding AM65 support.
> 
> Just to help this along, I've gone and added the fix for these warnings
> here[0][1].
> 
> Andrew
> 
> [0] https://lkml.org/lkml/2023/8/9/889
> [1] https://lkml.org/lkml/2023/8/9/888
> 

I am tempted to plagiarize Lt. Aldo Raine "I want my fixes", but quips
aside, exactly why not picking up patches without fixes is the last
knob I have to force long standing issue resolution :). unfortunate to
need to use it, happy to see it still work.

That said, the patches will have to wait a cycle anyways (cant take
checkpatch warnings with rc1) for the binding to hit 6.6-rc1. In the
meanwhile lets see about getting that fix series merged..

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
  2023-08-09  8:45 ` Aradhya Bhatia
@ 2023-08-11 22:32   ` Nishanth Menon
  -1 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-11 22:32 UTC (permalink / raw)
  To: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Aradhya Bhatia
  Cc: Nishanth Menon, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

Hi Aradhya Bhatia,

On Wed, 09 Aug 2023 14:15:53 +0530, Aradhya Bhatia wrote:
> The patch series adds DT nodes for Display SubSystem (DSS) and other
> peripherals required to enable the HDMI audio and video on the AM625 SK,
> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
> monitor can be connected to the boards for the audio/video outputs.
> 
> The series adding the compatible and basic driver support[0] is in the
> drm-misc-next and linux-next queues and is expected to be in the
> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
> that introduces debounce select mux macros. This patch too is not in
> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
> linux-next.
> 
> [...]

NOTE: This series creates checkpatch warnings against v6.5-rc1 and
complains that it cannot find ti,am625-dss which has been merged in
drm tree for next. This is clean in linux-next for a few weeks now.
Given the number of people who would really like to see it in v6.6-rc1
to keep the display support working in the tree without carried
patches and work on next set of features on display and graphics, and
given the real low risk of this NOT making to linus-master, we are
making an specific exception here for this time around. So, please
keep a watch on drm-next and if for any reason the support is dropped
going to linus's tre in the merge window or before, let this chain
know with appropriate maintainers so that we can take corrective
actions. PS: Thanks Arnd for taking time to give me some private
guidance. Fingers crossed that this will go through smooth.

Thank you!

I have applied the following to branch ti-k3-dts-next on [1]:

[1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
      commit: 73387da70f9c26b6fba4f62371d013cce14663d9
[2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
      commit: 8ccc1073c7bb2ae9654529a75f85ef23b7215c9b
[3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
      commit: db6e8237cf5435e972ea47632e5d8ac3e356f210
[4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
      commit: b50ccab9e07ca19d49a0d629dfbe184e6975be22
[5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
      commit: 1f7226a5e52cb8b90771cefc29077f9ce13a3c90

I have applied the following to branch ti-k3-config-next on [1]:

[6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
      commit: d5c988b43746de250bed33c17116e879f032ff12

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant 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.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D


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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-11 22:32   ` Nishanth Menon
  0 siblings, 0 replies; 26+ messages in thread
From: Nishanth Menon @ 2023-08-11 22:32 UTC (permalink / raw)
  To: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Aradhya Bhatia
  Cc: Nishanth Menon, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

Hi Aradhya Bhatia,

On Wed, 09 Aug 2023 14:15:53 +0530, Aradhya Bhatia wrote:
> The patch series adds DT nodes for Display SubSystem (DSS) and other
> peripherals required to enable the HDMI audio and video on the AM625 SK,
> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
> monitor can be connected to the boards for the audio/video outputs.
> 
> The series adding the compatible and basic driver support[0] is in the
> drm-misc-next and linux-next queues and is expected to be in the
> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
> that introduces debounce select mux macros. This patch too is not in
> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
> linux-next.
> 
> [...]

NOTE: This series creates checkpatch warnings against v6.5-rc1 and
complains that it cannot find ti,am625-dss which has been merged in
drm tree for next. This is clean in linux-next for a few weeks now.
Given the number of people who would really like to see it in v6.6-rc1
to keep the display support working in the tree without carried
patches and work on next set of features on display and graphics, and
given the real low risk of this NOT making to linus-master, we are
making an specific exception here for this time around. So, please
keep a watch on drm-next and if for any reason the support is dropped
going to linus's tre in the merge window or before, let this chain
know with appropriate maintainers so that we can take corrective
actions. PS: Thanks Arnd for taking time to give me some private
guidance. Fingers crossed that this will go through smooth.

Thank you!

I have applied the following to branch ti-k3-dts-next on [1]:

[1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
      commit: 73387da70f9c26b6fba4f62371d013cce14663d9
[2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
      commit: 8ccc1073c7bb2ae9654529a75f85ef23b7215c9b
[3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
      commit: db6e8237cf5435e972ea47632e5d8ac3e356f210
[4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
      commit: b50ccab9e07ca19d49a0d629dfbe184e6975be22
[5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
      commit: 1f7226a5e52cb8b90771cefc29077f9ce13a3c90

I have applied the following to branch ti-k3-config-next on [1]:

[6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
      commit: d5c988b43746de250bed33c17116e879f032ff12

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant 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.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D


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

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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
  2023-08-11 22:32   ` Nishanth Menon
@ 2023-08-14 10:41     ` Aradhya Bhatia
  -1 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-14 10:41 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary



On 12-Aug-23 04:02, Nishanth Menon wrote:
> Hi Aradhya Bhatia,
> 
> On Wed, 09 Aug 2023 14:15:53 +0530, Aradhya Bhatia wrote:
>> The patch series adds DT nodes for Display SubSystem (DSS) and other
>> peripherals required to enable the HDMI audio and video on the AM625 SK,
>> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
>> monitor can be connected to the boards for the audio/video outputs.
>>
>> The series adding the compatible and basic driver support[0] is in the
>> drm-misc-next and linux-next queues and is expected to be in the
>> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
>> that introduces debounce select mux macros. This patch too is not in
>> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
>> linux-next.
>>
>> [...]
> 
> NOTE: This series creates checkpatch warnings against v6.5-rc1 and
> complains that it cannot find ti,am625-dss which has been merged in
> drm tree for next. This is clean in linux-next for a few weeks now.
> Given the number of people who would really like to see it in v6.6-rc1
> to keep the display support working in the tree without carried
> patches and work on next set of features on display and graphics, and
> given the real low risk of this NOT making to linus-master, we are
> making an specific exception here for this time around. So, please
> keep a watch on drm-next and if for any reason the support is dropped
> going to linus's tre in the merge window or before, let this chain
> know with appropriate maintainers so that we can take corrective
> actions. PS: Thanks Arnd for taking time to give me some private
> guidance. Fingers crossed that this will go through smooth.

Nishanth, Vignesh, Arnd,

Thank you for making an exception here, and allowing these patches in!
=)

I will keep an eye on drm-next and will make sure to let you all know if
the AM62 base DSS support patches get dropped for any reason.

Regards
Aradhya

> 
> Thank you!
> 
> I have applied the following to branch ti-k3-dts-next on [1]:
> 
> [1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>       commit: 73387da70f9c26b6fba4f62371d013cce14663d9
> [2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
>       commit: 8ccc1073c7bb2ae9654529a75f85ef23b7215c9b
> [3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>       commit: db6e8237cf5435e972ea47632e5d8ac3e356f210
> [4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
>       commit: b50ccab9e07ca19d49a0d629dfbe184e6975be22
> [5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
>       commit: 1f7226a5e52cb8b90771cefc29077f9ce13a3c90
> 
> I have applied the following to branch ti-k3-config-next on [1]:
> 
> [6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
>       commit: d5c988b43746de250bed33c17116e879f032ff12
> 
> All being well this means that it will be integrated into the linux-next
> tree (usually sometime in the next 24 hours) and sent up the chain during
> the next merge window (or sooner if it is a relevant 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.
> 
> [1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git


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

* Re: [PATCH v5 0/6] arm64: ti: k3-am62: Add display support
@ 2023-08-14 10:41     ` Aradhya Bhatia
  0 siblings, 0 replies; 26+ messages in thread
From: Aradhya Bhatia @ 2023-08-14 10:41 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini
  Cc: Devicetree List, Linux Kernel List, Linux ARM Kernel List,
	Tomi Valkeinen, Rahul T R, Devarsh Thakkar, Jai Luthra,
	Jayesh Choudhary



On 12-Aug-23 04:02, Nishanth Menon wrote:
> Hi Aradhya Bhatia,
> 
> On Wed, 09 Aug 2023 14:15:53 +0530, Aradhya Bhatia wrote:
>> The patch series adds DT nodes for Display SubSystem (DSS) and other
>> peripherals required to enable the HDMI audio and video on the AM625 SK,
>> AM62-LP SK, as well as the AM625 based Beagle-Play platforms. An HDMI
>> monitor can be connected to the boards for the audio/video outputs.
>>
>> The series adding the compatible and basic driver support[0] is in the
>> drm-misc-next and linux-next queues and is expected to be in the
>> mainline by v6.6-rc1. Patch 5/6 also requires Nishanth Menon's patch[1]
>> that introduces debounce select mux macros. This patch too is not in
>> v6.5-rc1 but has been picked up in ti-next[2] and hence, is present in
>> linux-next.
>>
>> [...]
> 
> NOTE: This series creates checkpatch warnings against v6.5-rc1 and
> complains that it cannot find ti,am625-dss which has been merged in
> drm tree for next. This is clean in linux-next for a few weeks now.
> Given the number of people who would really like to see it in v6.6-rc1
> to keep the display support working in the tree without carried
> patches and work on next set of features on display and graphics, and
> given the real low risk of this NOT making to linus-master, we are
> making an specific exception here for this time around. So, please
> keep a watch on drm-next and if for any reason the support is dropped
> going to linus's tre in the merge window or before, let this chain
> know with appropriate maintainers so that we can take corrective
> actions. PS: Thanks Arnd for taking time to give me some private
> guidance. Fingers crossed that this will go through smooth.

Nishanth, Vignesh, Arnd,

Thank you for making an exception here, and allowing these patches in!
=)

I will keep an eye on drm-next and will make sure to let you all know if
the AM62 base DSS support patches get dropped for any reason.

Regards
Aradhya

> 
> Thank you!
> 
> I have applied the following to branch ti-k3-dts-next on [1]:
> 
> [1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency
>       commit: 73387da70f9c26b6fba4f62371d013cce14663d9
> [2/6] arm64: dts: ti: k3-am62-main: Add node for DSS
>       commit: 8ccc1073c7bb2ae9654529a75f85ef23b7215c9b
> [3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support
>       commit: db6e8237cf5435e972ea47632e5d8ac3e356f210
> [4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
>       commit: b50ccab9e07ca19d49a0d629dfbe184e6975be22
> [5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support
>       commit: 1f7226a5e52cb8b90771cefc29077f9ce13a3c90
> 
> I have applied the following to branch ti-k3-config-next on [1]:
> 
> [6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter
>       commit: d5c988b43746de250bed33c17116e879f032ff12
> 
> All being well this means that it will be integrated into the linux-next
> tree (usually sometime in the next 24 hours) and sent up the chain during
> the next merge window (or sooner if it is a relevant 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.
> 
> [1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git


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

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

* Re: [PATCH v5 4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
  2023-08-09  8:45   ` Aradhya Bhatia
@ 2023-09-08 22:13     ` Rob Herring
  -1 siblings, 0 replies; 26+ messages in thread
From: Rob Herring @ 2023-09-08 22:13 UTC (permalink / raw)
  To: Aradhya Bhatia
  Cc: Nishanth Menon, Vignesh Raghavendra, Tero Kristo,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On Wed, Aug 9, 2023 at 3:46 AM Aradhya Bhatia <a-bhatia1@ti.com> wrote:
>
> From: Jai Luthra <j-luthra@ti.com>
>
> Enable audio output over HDMI instead of the 3.5mm jack.
>
> A FET switch (U65) on the EVM muxes serial audio lines coming from McASP
> between the codec (tlv320aic3106) and the HDMI bridge (sii9022).
>
> By default it uses the codec, but it can be toggled to use the HDMI
> bridge by shorting a (J24) header on the board.
>
> Signed-off-by: Jai Luthra <j-luthra@ti.com>
> [a-bhatia1: Cosmetic changes]
> Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
> ---
>  arch/arm64/boot/dts/ti/Makefile               |  3 ++
>  .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   | 40 +++++++++++++++++++
>  2 files changed, 43 insertions(+)
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
>
> diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile
> index 437a3d7e8e3a..e3eadf69d43b 100644
> --- a/arch/arm64/boot/dts/ti/Makefile
> +++ b/arch/arm64/boot/dts/ti/Makefile
> @@ -19,6 +19,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dahlia.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dev.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-yavia.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am62-lp-sk.dtb
> +dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo

Overlays need to be applied to something. That's done like this:

foo-dtbs := base.dtb k3-am62x-sk-hdmi-audio.dtbo
dtb-y += foo.dtb

Please send a fix for this.

Rob

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

* Re: [PATCH v5 4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio
@ 2023-09-08 22:13     ` Rob Herring
  0 siblings, 0 replies; 26+ messages in thread
From: Rob Herring @ 2023-09-08 22:13 UTC (permalink / raw)
  To: Aradhya Bhatia
  Cc: Nishanth Menon, Vignesh Raghavendra, Tero Kristo,
	Krzysztof Kozlowski, Catalin Marinas, Conor Dooley, Will Deacon,
	Francesco Dolcini, Devicetree List, Linux Kernel List,
	Linux ARM Kernel List, Tomi Valkeinen, Rahul T R,
	Devarsh Thakkar, Jai Luthra, Jayesh Choudhary

On Wed, Aug 9, 2023 at 3:46 AM Aradhya Bhatia <a-bhatia1@ti.com> wrote:
>
> From: Jai Luthra <j-luthra@ti.com>
>
> Enable audio output over HDMI instead of the 3.5mm jack.
>
> A FET switch (U65) on the EVM muxes serial audio lines coming from McASP
> between the codec (tlv320aic3106) and the HDMI bridge (sii9022).
>
> By default it uses the codec, but it can be toggled to use the HDMI
> bridge by shorting a (J24) header on the board.
>
> Signed-off-by: Jai Luthra <j-luthra@ti.com>
> [a-bhatia1: Cosmetic changes]
> Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com>
> ---
>  arch/arm64/boot/dts/ti/Makefile               |  3 ++
>  .../boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso   | 40 +++++++++++++++++++
>  2 files changed, 43 insertions(+)
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am62x-sk-hdmi-audio.dtso
>
> diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile
> index 437a3d7e8e3a..e3eadf69d43b 100644
> --- a/arch/arm64/boot/dts/ti/Makefile
> +++ b/arch/arm64/boot/dts/ti/Makefile
> @@ -19,6 +19,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dahlia.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-dev.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am625-verdin-wifi-yavia.dtb
>  dtb-$(CONFIG_ARCH_K3) += k3-am62-lp-sk.dtb
> +dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo

Overlays need to be applied to something. That's done like this:

foo-dtbs := base.dtb k3-am62x-sk-hdmi-audio.dtbo
dtb-y += foo.dtb

Please send a fix for this.

Rob

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

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

end of thread, other threads:[~2023-09-08 22:14 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-09  8:45 [PATCH v5 0/6] arm64: ti: k3-am62: Add display support Aradhya Bhatia
2023-08-09  8:45 ` Aradhya Bhatia
2023-08-09  8:45 ` [PATCH v5 1/6] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-08-09  8:45 ` [PATCH v5 2/6] arm64: dts: ti: k3-am62-main: Add node for DSS Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-08-09  8:45 ` [PATCH v5 3/6] arm64: dts: ti: k3-am62x-sk-common: Add HDMI support Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-08-09  8:45 ` [PATCH v5 4/6] arm64: dts: ti: am62x-sk: Add overlay for HDMI audio Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-09-08 22:13   ` Rob Herring
2023-09-08 22:13     ` Rob Herring
2023-08-09  8:45 ` [PATCH v5 5/6] arm64: dts: ti: k3-am625-beagleplay: Add HDMI support Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-08-09  8:45 ` [PATCH v5 6/6] arm64: defconfig: Enable ITE_IT66121 HDMI transmitter Aradhya Bhatia
2023-08-09  8:45   ` Aradhya Bhatia
2023-08-09 14:40 ` [PATCH v5 0/6] arm64: ti: k3-am62: Add display support Nishanth Menon
2023-08-09 14:40   ` Nishanth Menon
2023-08-09 17:01   ` Andrew Davis
2023-08-09 17:01     ` Andrew Davis
2023-08-09 17:59     ` Nishanth Menon
2023-08-09 17:59       ` Nishanth Menon
2023-08-11 22:32 ` Nishanth Menon
2023-08-11 22:32   ` Nishanth Menon
2023-08-14 10:41   ` Aradhya Bhatia
2023-08-14 10:41     ` Aradhya Bhatia

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.