public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 0/3] drm: nuvoton: Add MA35D1 display controller support
@ 2026-01-26  8:57 Joey Lu
  2026-01-26  8:57 ` [PATCH 1/3] dt-bindings: display: nuvoton: add MA35D1 DCU binding Joey Lu
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Joey Lu @ 2026-01-26  8:57 UTC (permalink / raw)
  To: airlied, simona, maarten.lankhorst, mripard, tzimmermann, robh,
	krzk+dt, conor+dt
  Cc: ychuang3, schung, yclu4, a0987203069, linux-arm-kernel, dri-devel,
	devicetree, linux-kernel

Hi all,

This series adds DRM support for the Display Control Unit (DCU)
found in Nuvoton MA35D1 SoCs.

The DCU is a DPI-based display controller intended to be used with
external panels or bridges. The driver integrates with the DRM
bridge framework and supports atomic modesetting.

The series consists of three patches:

Add Device Tree binding documentation for the MA35D1 DCU

Enable the display controller in the MA35D1 SoC dtsi and SOM dts

Add the DRM driver for the MA35D1 display controller

This has been tested using modetest with a DPI panel and verified
to expose modes and perform atomic modesetting correctly.

Best regards,
Joey Lu

Joey Lu (3):
  dt-bindings: display: nuvoton: add MA35D1 DCU binding
  arm64: dts: nuvoton: ma35d1: add display controller support
  drm/nuvoton: add MA35D1 display controller driver

 .../bindings/display/nuvoton,ma35d1-dcu.yaml  |  74 ++
 .../boot/dts/nuvoton/ma35d1-som-256m.dts      |  42 +
 arch/arm64/boot/dts/nuvoton/ma35d1.dtsi       |  26 +
 drivers/gpu/drm/Kconfig                       |   1 +
 drivers/gpu/drm/Makefile                      |   1 +
 drivers/gpu/drm/nuvoton/Kconfig               |  21 +
 drivers/gpu/drm/nuvoton/Makefile              |   7 +
 drivers/gpu/drm/nuvoton/ma35_crtc.c           | 445 +++++++++
 drivers/gpu/drm/nuvoton/ma35_crtc.h           |  78 ++
 drivers/gpu/drm/nuvoton/ma35_drm.c            | 389 ++++++++
 drivers/gpu/drm/nuvoton/ma35_drm.h            |  48 +
 drivers/gpu/drm/nuvoton/ma35_interface.c      | 192 ++++
 drivers/gpu/drm/nuvoton/ma35_interface.h      |  30 +
 drivers/gpu/drm/nuvoton/ma35_plane.c          | 904 ++++++++++++++++++
 drivers/gpu/drm/nuvoton/ma35_plane.h          | 226 +++++
 drivers/gpu/drm/nuvoton/ma35_regs.h           |  88 ++
 16 files changed, 2572 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/nuvoton,ma35d1-dcu.yaml
 create mode 100644 drivers/gpu/drm/nuvoton/Kconfig
 create mode 100644 drivers/gpu/drm/nuvoton/Makefile
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_crtc.c
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_crtc.h
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_drm.c
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_drm.h
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_interface.c
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_interface.h
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_plane.c
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_plane.h
 create mode 100644 drivers/gpu/drm/nuvoton/ma35_regs.h

-- 
2.43.0



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2026-01-28  2:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-26  8:57 [PATCH 0/3] drm: nuvoton: Add MA35D1 display controller support Joey Lu
2026-01-26  8:57 ` [PATCH 1/3] dt-bindings: display: nuvoton: add MA35D1 DCU binding Joey Lu
2026-01-26 10:30   ` Rob Herring (Arm)
2026-01-27  3:49     ` Joey Lu
2026-01-26  8:57 ` [PATCH 2/3] arm64: dts: nuvoton: ma35d1: add display controller support Joey Lu
2026-01-26  8:57 ` [PATCH 3/3] drm/nuvoton: add MA35D1 display controller driver Joey Lu
2026-01-26 12:50   ` Maxime Ripard
2026-01-27  3:39     ` Joey Lu
2026-01-27 15:39   ` kernel test robot
2026-01-28  2:27   ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox