From: Swamil Jain <s-jain1@ti.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Rob Herring <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Lee Jones <lee@kernel.org>,
Aradhya Bhatia <aradhya.bhatia@linux.dev>,
Nishanth Menon <nm@ti.com>, Vignesh Raghavendra <vigneshr@ti.com>,
Devarsh Thakkar <devarsht@ti.com>,
Louis Chauvet <louis.chauvet@bootlin.com>
Cc: <devicetree@vger.kernel.org>, <dri-devel@lists.freedesktop.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
Jayesh Choudhary <j-choudhary@ti.com>,
Aradhya Bhatia <a-bhatia1@ti.com>, Andrew Davis <afd@ti.com>
Subject: Re: [PATCH 00/15] drm/tidss: Add BeagleY-AI display support (and some more)
Date: Mon, 11 May 2026 18:49:52 +0530 [thread overview]
Message-ID: <53985724-09bd-494b-9093-3e7efb6a6ce0@ti.com> (raw)
In-Reply-To: <20260420-beagley-ai-display-v1-0-f628543dfd14@ideasonboard.com>
On 20-04-2026 18:24, Tomi Valkeinen wrote:
> This series aims to add display support for all display interfaces on
> BeagleY-AI board. More generally, it adds display support for TI AM62P,
> J722S, and related SoCs, and, as a bit extra, improves AM62L's DPI
> handling.
>
> The main topics to highlight:
>
> - The ti,am625-dss-dpi0-clk-ctrl feels a bit like a hack.
> But it is a single quirk register, among other registers that belong
> to either the firmware or other drivers. So what other options are
> there? This has already been discussed e.g. in
> https://lore.kernel.org/all/20250730-fix-edge-handling-v1-0-1bdfb3fe7922%40bootlin.com/
> without proper conclusion.
>
> - The tidss OLDI support will now use auxiliary device/driver. This seems
> to solve quite neatly the requirement to have a power-domain for each
> OLDI. The main issue that remains is that on AM62P (and similar) we
> will have three OLDI TX DT nodes, even if there are only two in the
> hardware.
>
> With this series one can use the HDMI output on BeagleY-AI. I have also
> tested the DSI output with Raspberry Pi's 7" DSI display, and OLDI
> output with an oscilloscope (I don't have a suitable OLDI panel).
>
> Tomi
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
> ---
The series is tested on TI's AM62P[1] SoC and tested HDMI display and
audio output with BeagleY-AI(AM67A SoC[2]).
Display panels used:
--------------------
DSI Panel: https://www.raspberrypi.com/products/raspberry-pi-touch-display/
OLDI Panel: https://www.ti.com/tool/SK-LCD1
HDMI Panel: https://www.viewsonic.com/in/products/lcd/VA1655-3
Test branch:
https://github.com/jainswamil/linux-next/tree/AM62P_J722S_BEAGLEY_AI_DSS_V1_TEST
Got some DT check warnings with the above test branch[3].
Links
[1]: https://www.ti.com/product/AM62P
[2]: https://www.ti.com/product/AM67A
[3]: https://gist.github.com/jainswamil/945a9859c0f75b41ef21abeede405b2e
Tested-by: Swamil Jain <s-jain1@ti.com>
> Andrew Davis (1):
> arm64: dts: ti: beagley-ai: Enable HDMI display and audio
>
> Jayesh Choudhary (1):
> arm64: dts: ti: k3-am62p-j722s-common-main: Add support for DSS
>
> Swamil Jain (1):
> drm/tidss: Add support for AM62P display subsystem
>
> Tomi Valkeinen (12):
> dt-bindings: display: ti: Move ti,am62l-dss binding to a new binding file
> dt-bindings: display: ti,am65x-dss: Simplify binding
> dt-bindings: mfd: syscon: Add ti,am625-dss-dpi0-clk-ctrl compatible
> dt-bindings: display: ti,am625-oldi: Add optional power-domain for OLDI
> dt-bindings: display: ti,am65x-dss: Add AM62P DSS
> drm/tidss: Remove extra pm_runtime_mark_last_busy
> drm/tidss: oldi: Remove define for unused register OLDI_LB_CTRL
> drm/tidss: Add mechanism to detect DPI output
> drm/tidss: Add external data and sync signal edge configuration
> drm/tidss: Add support for DPIENABLE bit
> drm/tidss: oldi: Fix OLDI signal polarities
> drm/tidss: oldi: Convert OLDI to an aux driver
>
> .../bindings/display/ti/ti,am625-oldi.yaml | 4 +
> .../bindings/display/ti/ti,am62l-dss.yaml | 136 ++++++
> .../bindings/display/ti/ti,am65x-dss.yaml | 176 +++----
> Documentation/devicetree/bindings/mfd/syscon.yaml | 2 +
> MAINTAINERS | 1 +
> .../boot/dts/ti/k3-am62p-j722s-common-main.dtsi | 112 +++++
> arch/arm64/boot/dts/ti/k3-am62p.dtsi | 16 +
> arch/arm64/boot/dts/ti/k3-am67a-beagley-ai.dts | 197 ++++++++
> arch/arm64/boot/dts/ti/k3-j722s.dtsi | 16 +
> drivers/gpu/drm/tidss/tidss_crtc.c | 10 +-
> drivers/gpu/drm/tidss/tidss_crtc.h | 4 +-
> drivers/gpu/drm/tidss/tidss_dispc.c | 46 +-
> drivers/gpu/drm/tidss/tidss_dispc.h | 5 +-
> drivers/gpu/drm/tidss/tidss_dispc_regs.h | 5 +
> drivers/gpu/drm/tidss/tidss_drv.c | 54 ++-
> drivers/gpu/drm/tidss/tidss_drv.h | 5 +-
> drivers/gpu/drm/tidss/tidss_kms.c | 55 ++-
> drivers/gpu/drm/tidss/tidss_oldi.c | 531 +++++++++++++++------
> drivers/gpu/drm/tidss/tidss_oldi.h | 8 +-
> 19 files changed, 1095 insertions(+), 288 deletions(-)
> ---
> base-commit: 3131ff5a117498bb4b9db3a238bb311cbf8383ce
> change-id: 20260420-beagley-ai-display-d7f634cde5f4
> prerequisite-message-id: <20260415110409.2577633-1-s-jain1@ti.com>
> prerequisite-patch-id: 654d90f9cddec8b41e6fb1b3776a632606fef88c
>
> Best regards,
prev parent reply other threads:[~2026-05-11 13:20 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-20 12:54 [PATCH 00/15] drm/tidss: Add BeagleY-AI display support (and some more) Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 01/15] dt-bindings: display: ti: Move ti,am62l-dss binding to a new binding file Tomi Valkeinen
2026-05-05 19:30 ` Rob Herring (Arm)
2026-04-20 12:54 ` [PATCH 02/15] dt-bindings: display: ti,am65x-dss: Simplify binding Tomi Valkeinen
2026-05-05 19:31 ` Rob Herring (Arm)
2026-04-20 12:54 ` [PATCH 03/15] dt-bindings: mfd: syscon: Add ti,am625-dss-dpi0-clk-ctrl compatible Tomi Valkeinen
2026-05-05 19:35 ` Rob Herring
2026-05-13 7:55 ` Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 04/15] dt-bindings: display: ti,am625-oldi: Add optional power-domain for OLDI Tomi Valkeinen
2026-05-05 19:39 ` Rob Herring
2026-04-20 12:54 ` [PATCH 05/15] dt-bindings: display: ti,am65x-dss: Add AM62P DSS Tomi Valkeinen
2026-05-05 19:39 ` Rob Herring (Arm)
2026-04-20 12:54 ` [PATCH 06/15] drm/tidss: Remove extra pm_runtime_mark_last_busy Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 07/15] drm/tidss: oldi: Remove define for unused register OLDI_LB_CTRL Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 08/15] drm/tidss: Add mechanism to detect DPI output Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 09/15] drm/tidss: Add external data and sync signal edge configuration Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 10/15] drm/tidss: Add support for DPIENABLE bit Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 11/15] drm/tidss: oldi: Fix OLDI signal polarities Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 12/15] drm/tidss: oldi: Convert OLDI to an aux driver Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 13/15] drm/tidss: Add support for AM62P display subsystem Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 14/15] arm64: dts: ti: k3-am62p-j722s-common-main: Add support for DSS Tomi Valkeinen
2026-04-20 12:54 ` [PATCH 15/15] arm64: dts: ti: beagley-ai: Enable HDMI display and audio Tomi Valkeinen
2026-04-24 16:16 ` Robert Nelson
2026-04-24 17:04 ` Tomi Valkeinen
2026-04-24 18:26 ` Robert Nelson
2026-05-11 13:19 ` Swamil Jain [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=53985724-09bd-494b-9093-3e7efb6a6ce0@ti.com \
--to=s-jain1@ti.com \
--cc=a-bhatia1@ti.com \
--cc=afd@ti.com \
--cc=airlied@gmail.com \
--cc=aradhya.bhatia@linux.dev \
--cc=conor+dt@kernel.org \
--cc=devarsht@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=j-choudhary@ti.com \
--cc=krzk+dt@kernel.org \
--cc=lee@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=louis.chauvet@bootlin.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=nm@ti.com \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=tomi.valkeinen@ideasonboard.com \
--cc=tzimmermann@suse.de \
--cc=vigneshr@ti.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