[git pull] drm fixes for 6.19-rc1

From: Dave Airlie

Date: Fri Dec 12 2025 - 21:20:28 EST


Hi Linus,

This is the enqueued fixes that ended up in our fixes branch, nouveau
mostly, along with some small fixes in other places.

Regards,
Dave.

drm-fixes-2025-12-13:
drm fixes for 6.19-rc1

plane:
- Handle IS_ERR vs NULL in drm_plane_create_hotspot_properties().

ttm:
- fix devcoredump for evicted bos

panel:
- Fix stack usage warning in novatek-nt35560.

nouveau:
- alloc fwsec sb at boot to avoid s/r problems
- fix strcpy usage
- fix i2c encoder crash

bridge:
- Ignore spurious PLL_UNLOCK bit in ti-sn65dsi83.

mgag200:
- Fix bigendian handling in mgag200.

tilcdc:
- Fix probe failure in tilcdc.
The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:

Linux 6.18 (2025-11-30 14:42:10 -0800)

are available in the Git repository at:

https://gitlab.freedesktop.org/drm/kernel.git tags/drm-fixes-2025-12-13

for you to fetch changes up to 5300831555cc6bb45bf824262ac044e8891b581c:

Merge tag 'drm-misc-fixes-2025-12-10' of
https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes
(2025-12-13 10:54:29 +1000)

----------------------------------------------------------------
drm fixes for 6.19-rc1

plane:
- Handle IS_ERR vs NULL in drm_plane_create_hotspot_properties().

ttm:
- fix devcoredump for evicted bos

panel:
- Fix stack usage warning in novatek-nt35560.

nouveau:
- alloc fwsec sb at boot to avoid s/r problems
- fix strcpy usage
- fix i2c encoder crash

bridge:
- Ignore spurious PLL_UNLOCK bit in ti-sn65dsi83.

mgag200:
- Fix bigendian handling in mgag200.

tilcdc:
- Fix probe failure in tilcdc.

----------------------------------------------------------------
Arnd Bergmann (1):
drm/panel: novatek-nt35560: avoid on-stack device structure

Dan Carpenter (1):
drm/plane: Fix IS_ERR() vs NULL check in
drm_plane_create_hotspot_properties()

Dave Airlie (1):
Merge tag 'drm-misc-fixes-2025-12-10' of
https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes

Kory Maincent (TI.com) (1):
drm/tilcdc: Fix removal actions in case of failed probe

Luca Ceresoli (1):
drm/bridge: ti-sn65dsi83: ignore PLL_UNLOCK errors

Lyude Paul (1):
drm/nouveau/gsp: Allocate fwsec-sb at boot

Madhur Kumar (2):
drm/nouveau: refactor deprecated strcpy
drm: nouveau: Replace sprintf() with sysfs_emit()

René Rebe (2):
drm/nouveau: fix circular dep oops from vendored i2c encoder
drm/mgag200: Fix big-endian support

Simon Richter (1):
drm/ttm: Avoid NULL pointer deref for evicted BOs

drivers/gpu/drm/bridge/ti-sn65dsi83.c | 11 +++-
drivers/gpu/drm/drm_plane.c | 8 +--
drivers/gpu/drm/mgag200/mgag200_mode.c | 25 +++++++++
.../gpu/drm/nouveau/dispnv04/nouveau_i2c_encoder.c | 20 -------
.../drm/nouveau/include/dispnv04/i2c/encoder_i2c.h | 19 ++++++-
drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h | 4 ++
drivers/gpu/drm/nouveau/nouveau_fence.c | 6 +--
drivers/gpu/drm/nouveau/nouveau_hwmon.c | 4 +-
drivers/gpu/drm/nouveau/nvkm/subdev/gsp/fwsec.c | 61 +++++++++++++++-------
drivers/gpu/drm/nouveau/nvkm/subdev/gsp/priv.h | 3 ++
.../gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/gsp.c | 10 +++-
drivers/gpu/drm/panel/panel-novatek-nt35560.c | 8 +--
drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 2 +-
drivers/gpu/drm/tilcdc/tilcdc_drv.c | 53 ++++++++++++-------
drivers/gpu/drm/tilcdc/tilcdc_drv.h | 2 +-
drivers/gpu/drm/ttm/ttm_bo_vm.c | 6 +++
16 files changed, 166 insertions(+), 76 deletions(-)