Hi Dave, Daniel, The following changes since commit c2418f911a31a266af4fbaca998dc73d3676475a: gpu: host1x: Avoid trying to use GART on Tegra20 (2022-11-18 09:33:20 +0100) are available in the Git repository at: https://gitlab.freedesktop.org/drm/tegra.git tags/drm/tegra/for-6.2-rc1 for you to fetch changes up to 08fef75f5e17c80cdb9ab56d65685cb43c8e44d3: gpu: host1x: Staticize host1x_syncpt_fence_ops (2022-11-25 16:14:59 +0100) I was a bit confused by the mismatching SHA1 at first, but turns out that the commit being fixed was originally meant to go into v6.1-rc1 but didn't. So when I rolled forward the for-next branch it got a different SHA1. Given that there's really nothing to fix here, I've just squashed the fix into the buggy commit. I've now also installed a pre-push script that should catch these kinds of mistakes. Thanks, Thierry ---------------------------------------------------------------- drm/tegra: Changes for v6.2-rc1 This contains a bunch of cleanups across the board as well as support for the NVDEC hardware found on the Tegra234 SoC. ---------------------------------------------------------------- Dmitry Torokhov (1): drm/tegra: Switch to using devm_fwnode_gpiod_get() Jani Nikula (1): drm/tegra: Convert to using is_hdmi from display info Liu Shixin (1): gpu: host1x: Use DEFINE_SHOW_ATTRIBUTE to simplify debugfs code Mikko Perttunen (6): gpu: host1x: Select context device based on attached IOMMU memory: tegra: Add API for retrieving carveout bounds gpu: host1x: Add stream ID register data for NVDEC on Tegra234 drm/tegra: nvdec: Support multiple clocks drm/tegra: Add code for booting RISC-V based engines drm/tegra: Add Tegra234 support to NVDEC driver Qing Wang (1): drm/tegra: Switch over to vmemdup_user() Thierry Reding (1): gpu: host1x: Staticize host1x_syncpt_fence_ops Zhang Zekun (1): drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() ruanjinjie (1): drm/tegra: Make gather_bo_ops static drivers/gpu/drm/tegra/Makefile | 3 +- drivers/gpu/drm/tegra/dc.c | 4 +- drivers/gpu/drm/tegra/drm.c | 1 + drivers/gpu/drm/tegra/hdmi.c | 9 +-- drivers/gpu/drm/tegra/nvdec.c | 171 ++++++++++++++++++++++++++++++++++------ drivers/gpu/drm/tegra/output.c | 10 +-- drivers/gpu/drm/tegra/riscv.c | 106 +++++++++++++++++++++++++ drivers/gpu/drm/tegra/riscv.h | 30 +++++++ drivers/gpu/drm/tegra/submit.c | 13 +-- drivers/gpu/drm/tegra/uapi.c | 2 +- drivers/gpu/host1x/context.c | 4 + drivers/gpu/host1x/debug.c | 28 +------ drivers/gpu/host1x/dev.c | 12 +++ drivers/gpu/host1x/fence.c | 2 +- drivers/memory/tegra/mc.c | 25 ++++++ drivers/memory/tegra/tegra234.c | 5 ++ include/linux/host1x.h | 2 + include/soc/tegra/mc.h | 11 +++ 18 files changed, 362 insertions(+), 76 deletions(-) create mode 100644 drivers/gpu/drm/tegra/riscv.c create mode 100644 drivers/gpu/drm/tegra/riscv.h