From: sashiko-bot@kernel.org
To: "Tomi Valkeinen" <tomi.valkeinen@ideasonboard.com>
Cc: conor+dt@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH v2 16/16] arm64: dts: ti: beagley-ai: Enable HDMI display and audio
Date: Thu, 14 May 2026 11:56:17 +0000 [thread overview]
Message-ID: <20260514115617.BB337C2BCB3@smtp.kernel.org> (raw)
In-Reply-To: <20260513-beagley-ai-display-v2-16-9e9bcefde6bc@ideasonboard.com>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] DSS1-VP1 is used for HDMI but its clock is incorrectly parented to the DSI PLL instead of the HDMI PLL.
- [Low] The audio data output pin (MCASP1_AXR0) is incorrectly configured as an input pad.
- [Low] The `main_gpio0_ioexp_intr_pins_default` pinctrl node is defined but never referenced.
--
commit 1eb95c0c9f0fb3307ec8c94675cccb93d5f763f4
Author: Andrew Davis <afd@ti.com>
arm64: dts: ti: beagley-ai: Enable HDMI display and audio
This commit enables HDMI support for the BeagleY-AI platform. It configures
the TIDSS display controller and IT66122 HDMI bridge, along with the required
pinmux, clocks, and audio endpoints.
> diff --git a/arch/arm64/boot/dts/ti/k3-am67a-beagley-ai.dts b/arch/arm64/boot/dts/ti/k3-am67a-beagley-ai.dts
> index 5255e04b9ac76..b7bcc90005d70 100644
> --- a/arch/arm64/boot/dts/ti/k3-am67a-beagley-ai.dts
> +++ b/arch/arm64/boot/dts/ti/k3-am67a-beagley-ai.dts
[ ... ]
> @@ -185,6 +213,20 @@ J722S_IOPAD(0x0240, PIN_INPUT, 7) /* (B24) MMC1_SDCD.GPIO1_48 */
> bootph-all;
> };
>
> + main_i2c1_pins_default: main-i2c1-default-pins {
> + pinctrl-single,pins = <
> + J722S_IOPAD(0x01e8, PIN_INPUT_PULLUP, 0) /* (C24) I2C1_SCL */
> + J722S_IOPAD(0x01ec, PIN_INPUT_PULLUP, 0) /* (A22) I2C1_SDA */
> + >;
> + bootph-all;
> + };
> +
> + main_gpio0_ioexp_intr_pins_default: main-gpio0-ioexp-intr-default-pins {
> + pinctrl-single,pins = <
> + J722S_IOPAD(0x0110, PIN_INPUT, 7) /* (G27) MMC2_DAT1.GPIO0_67 */
> + >;
> + };
This pinctrl group is defined but doesn't seem to be referenced by any node's
pinctrl-0 property in this file. Was the corresponding I2C IO expander device
node left out of this patch?
[ ... ]
> @@ -227,6 +269,47 @@ vdd_3v3_sd_pins_default: vdd-3v3-sd-default-pins {
> J722S_IOPAD(0x0254, PIN_OUTPUT, 7) /* (E25) USB0_DRVVBUS.GPIO1_50 */
> >;
> };
[ ... ]
> + main_mcasp1_pins_default: main-mcasp1-default-pins {
> + pinctrl-single,pins = <
> + J722S_IOPAD(0x0090, PIN_INPUT, 2) /* (P27) GPMC0_BE0n_CLE.MCASP1_ACLKX */
> + J722S_IOPAD(0x0098, PIN_INPUT, 2) /* (V21) GPMC0_WAIT0.MCASP1_AFSX */
> + J722S_IOPAD(0x008c, PIN_INPUT, 2) /* (N23) GPMC0_WEn.MCASP1_AXR0 */
Should this be configured with PIN_OUTPUT? The serial-dir property in the
mcasp1 node sets the first serializer (AXR0) as a transmitter.
> + >;
> + };
> };
[ ... ]
> @@ -399,4 +546,54 @@ &sdhci1 {
> status = "okay";
> };
>
> +&dss1 {
> + status = "okay";
> + pinctrl-names = "default";
> + pinctrl-0 = <&dss1_pins_default>;
> +
> + clocks = <&k3_clks 232 8>,
> + <&k3_clks 232 0>,
> + <&k3_clks 232 4>;
> +
> + assigned-clocks = <&k3_clks 241 0>, /* DSS1-VP0 */
> + <&k3_clks 240 0>, /* DSS1-VP1 */
> + <&k3_clks 245 0>; /* DPI Output */
> +
> + assigned-clock-parents = <&k3_clks 241 2>, /* PLL 17 HDMI */
> + <&k3_clks 240 1>, /* PLL 18 DSI */
Are these clock parent assignments swapped?
The comments here and in the it66122 node indicate HDMI is serviced
by DSS1-VP1. However, this configuration maps DSS1-VP1 to PLL 18 DSI,
and DSS1-VP0 to PLL 17 HDMI.
Driving the HDMI video port with a PLL tuned for DSI displays might
result in incorrect pixel clock frequencies.
> + <&k3_clks 245 2>; /* DSS1-DPI0 */
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260513-beagley-ai-display-v2-0-9e9bcefde6bc@ideasonboard.com?part=16
prev parent reply other threads:[~2026-05-14 11:56 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 13:17 [PATCH v2 00/16] drm/tidss: Add BeagleY-AI display support (and some more) Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 01/16] dt-bindings: display: ti: Move ti,am62l-dss binding to a new binding file Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 02/16] dt-bindings: display: ti,am65x-dss: Simplify binding Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 03/16] dt-bindings: display: ti,am625-oldi: Add optional power-domain for OLDI Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 04/16] dt-bindings: display: ti,am65x-dss: Add ti,dpi-io-ctrl Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 05/16] dt-bindings: display: ti,am65x-dss: Add AM62P DSS Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 06/16] drm/tidss: Remove extra pm_runtime_mark_last_busy Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 07/16] drm/tidss: oldi: Remove define for unused register OLDI_LB_CTRL Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 08/16] drm/tidss: Add mechanism to detect DPI output Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 09/16] drm/tidss: Add external data and sync signal edge configuration Tomi Valkeinen
2026-05-14 7:57 ` sashiko-bot
2026-05-13 13:17 ` [PATCH v2 10/16] drm/tidss: Add support for DPIENABLE bit Tomi Valkeinen
2026-05-14 8:36 ` sashiko-bot
2026-05-13 13:17 ` [PATCH v2 11/16] drm/tidss: oldi: Fix OLDI signal polarities Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 12/16] drm/tidss: oldi: Convert OLDI to an aux driver Tomi Valkeinen
2026-05-14 10:55 ` sashiko-bot
2026-05-13 13:17 ` [PATCH v2 13/16] drm/tidss: Add support for AM62P display subsystem Tomi Valkeinen
2026-05-13 13:17 ` [PATCH v2 14/16] arm64: dts: ti: k3-am62p-j722s-common-main: Make main_conf a syscon Tomi Valkeinen
2026-05-14 11:19 ` sashiko-bot
2026-05-13 13:17 ` [PATCH v2 15/16] arm64: dts: ti: k3-am62p-j722s-common-main: Add support for DSS Tomi Valkeinen
2026-05-14 11:32 ` sashiko-bot
2026-05-13 13:17 ` [PATCH v2 16/16] arm64: dts: ti: beagley-ai: Enable HDMI display and audio Tomi Valkeinen
2026-05-14 11:56 ` sashiko-bot [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260514115617.BB337C2BCB3@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=tomi.valkeinen@ideasonboard.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox