kmsro: Add hdlcd DPU

Arm hdlcd display units do exist on Juno SoC's. This is the
first time Mesa has had to deal with panfrost working on these SoC's,
thus have to add hdlcd support.

Signed-off-by: Carsten Haitzler <carsten.haitzler@foss.arm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25027>
This commit is contained in:
Carsten Haitzler 2023-09-04 09:55:34 +01:00 committed by Marge Bot
parent fc46062ee5
commit d01a60e8a3
2 changed files with 2 additions and 0 deletions

View file

@ -69,6 +69,7 @@ libgallium_dri = shared_library(
foreach d : [[with_gallium_kmsro, [
'armada-drm_dri.so',
'exynos_dri.so',
'hdlcd_dri.so',
'hx8357d_dri.so',
'ili9225_dri.so',
'ili9341_dri.so',

View file

@ -99,6 +99,7 @@ DEFINE_LOADER_DRM_ENTRYPOINT(tegra);
#if defined(GALLIUM_KMSRO)
DEFINE_LOADER_DRM_ENTRYPOINT(armada_drm)
DEFINE_LOADER_DRM_ENTRYPOINT(exynos)
DEFINE_LOADER_DRM_ENTRYPOINT(hdlcd)
DEFINE_LOADER_DRM_ENTRYPOINT(hx8357d)
DEFINE_LOADER_DRM_ENTRYPOINT(ili9225)
DEFINE_LOADER_DRM_ENTRYPOINT(ili9341)