From: Thierry Reding <thierry.reding@kernel.org>
To: Mikko Perttunen <mperttunen@nvidia.com>
Cc: Jonathan Hunter <jonathanh@nvidia.com>,
David Airlie <airlied@gmail.com>,
Simona Vetter <simona@ffwll.ch>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-tegra@vger.kernel.org, dri-devel@lists.freedesktop.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Conor Dooley <conor.dooley@microchip.com>,
Santosh BS <santoshb@nvidia.com>
Subject: Re: [PATCH v2 0/7] Host1x/VIC support on Tegra264
Date: Thu, 16 Jul 2026 20:54:02 +0200 [thread overview]
Message-ID: <alkooiOtlIF-OZy4@orome> (raw)
In-Reply-To: <20260622-t264-host1x-v2-0-ff7364d9ff7b@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 3601 bytes --]
On Mon, Jun 22, 2026 at 03:57:37PM +0900, Mikko Perttunen wrote:
> Hello everyone,
>
> this series adds support for Host1x and VIC on Tegra264 SoCs.
> The Host1x side is not very interesting, just adding the usual register
> definitions and other information. One thing of note is that multimedia
> engines apart from VIC have moved away from Host1x on this generation.
>
> On the VIC side, there is a bit more of a change, as the VIC Falcon is
> now RISC-V based. Unlike NVDEC, VIC is still "externally booted", so
> the boot sequence is very similar to before.
>
> host1x uapi-test[1] has been updated for Tegra264. Necessary headers for
> constructing VIC jobs have been added to open-gpu-doc[2].
>
> Patches 1 and 2 add new compatible strings to Host1x and VIC device tree
> bindings.
>
> Patch 3 fixes the context device device tree parsing code to handle
> iommu-map entries with length more than 1.
>
> Patch 4 adds Tegra264 support to the Host1x driver.
>
> Patches 5 and 6 add Tegra264 support to the VIC driver.
>
> Patch 7 adds Host1x and VIC nodes to the Tegra264 device tree.
>
> Thank you,
> Mikko
>
> [1] https://github.com/cyndis/uapi-test
> [2] https://github.com/NVIDIA/open-gpu-doc/blob/master/classes/video/clceb6.h
> https://github.com/NVIDIA/open-gpu-doc/blob/master/classes/video/vic_ceb6_types.h
>
> ---
> Changes in v2:
> - Updated dt-bindings changes to be chip-specific
> - Link to v1: https://patch.msgid.link/20260612-t264-host1x-v1-0-8d934987de67@nvidia.com
>
> ---
> Mikko Perttunen (6):
> dt-bindings: display: tegra: Changes to support Tegra264
> dt-bindings: display: tegra: Add Tegra264 compatible for VIC
> gpu: host1x: Correctly parse linear ranges of context devices
> drm/tegra: falcon: Add support for RISC-V external boot
> drm/tegra: vic: Add Tegra264 support
> arm64: tegra: Add Host1x and VIC on Tegra264
>
> Santosh BS (1):
> gpu: host1x: Add Tegra264 support
>
> .../display/tegra/nvidia,tegra124-vic.yaml | 1 +
> .../display/tegra/nvidia,tegra20-host1x.yaml | 20 ++-
> arch/arm64/boot/dts/nvidia/tegra264.dtsi | 63 +++++++
> drivers/gpu/drm/tegra/drm.c | 1 +
> drivers/gpu/drm/tegra/falcon.c | 66 ++++++--
> drivers/gpu/drm/tegra/falcon.h | 23 +++
> drivers/gpu/drm/tegra/vic.c | 95 ++++++++---
> drivers/gpu/drm/tegra/vic.h | 9 +-
> drivers/gpu/host1x/Makefile | 3 +-
> drivers/gpu/host1x/context.c | 13 +-
> drivers/gpu/host1x/dev.c | 41 +++++
> drivers/gpu/host1x/hw/cdma_hw.c | 12 +-
> drivers/gpu/host1x/hw/host1x10.c | 33 ++++
> drivers/gpu/host1x/hw/host1x10.h | 15 ++
> drivers/gpu/host1x/hw/host1x10_hardware.h | 21 +++
> drivers/gpu/host1x/hw/hw_host1x10_common.h | 6 +
> drivers/gpu/host1x/hw/hw_host1x10_hypervisor.h | 10 ++
> drivers/gpu/host1x/hw/hw_host1x10_uclass.h | 181 +++++++++++++++++++++
> drivers/gpu/host1x/hw/hw_host1x10_vm.h | 36 ++++
> 19 files changed, 601 insertions(+), 48 deletions(-)
> ---
> base-commit: 4549871118cf616eecdd2d939f78e3b9e1dddc48
> change-id: 20260313-t264-host1x-c97171fdde77
Patches 1-6 applied to drm-misc-next. I'll pick up patch 7 into the
Tegra tree because it looks like there will be a conflict.
Thanks,
Thierry
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2026-07-16 18:54 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-22 6:57 [PATCH v2 0/7] Host1x/VIC support on Tegra264 Mikko Perttunen
2026-06-22 6:57 ` [PATCH v2 1/7] dt-bindings: display: tegra: Changes to support Tegra264 Mikko Perttunen
2026-06-30 15:42 ` Rob Herring (Arm)
2026-06-22 6:57 ` [PATCH v2 2/7] dt-bindings: display: tegra: Add Tegra264 compatible for VIC Mikko Perttunen
2026-06-22 6:57 ` [PATCH v2 3/7] gpu: host1x: Correctly parse linear ranges of context devices Mikko Perttunen
2026-06-22 7:09 ` sashiko-bot
2026-06-22 6:57 ` [PATCH v2 4/7] gpu: host1x: Add Tegra264 support Mikko Perttunen
2026-06-22 7:05 ` sashiko-bot
2026-06-22 6:57 ` [PATCH v2 5/7] drm/tegra: falcon: Add support for RISC-V external boot Mikko Perttunen
2026-06-22 7:08 ` sashiko-bot
2026-06-22 6:57 ` [PATCH v2 6/7] drm/tegra: vic: Add Tegra264 support Mikko Perttunen
2026-06-22 7:11 ` sashiko-bot
2026-06-22 6:57 ` [PATCH v2 7/7] arm64: tegra: Add Host1x and VIC on Tegra264 Mikko Perttunen
2026-07-16 21:21 ` Thierry Reding
2026-07-16 18:54 ` Thierry Reding [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-22 6:52 [PATCH v2 0/7] Host1x/VIC support " Mikko Perttunen
2026-06-22 7:06 ` Mikko Perttunen
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=alkooiOtlIF-OZy4@orome \
--to=thierry.reding@kernel.org \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=conor.dooley@microchip.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jonathanh@nvidia.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mperttunen@nvidia.com \
--cc=mripard@kernel.org \
--cc=robh@kernel.org \
--cc=santoshb@nvidia.com \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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 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.