drm/crtc: Introduce drmm_crtc_init_with_planes
authorMaxime Ripard <maxime@cerno.tech>
Mon, 11 Jul 2022 17:38:32 +0000 (19:38 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Wed, 13 Jul 2022 08:46:05 +0000 (10:46 +0200)
commit917dd05418148f05d8860b8106da8dcd1d258aaf
tree502a8180e3cd60b368a25e1e44a5274d1f2c7f5f
parent668a8f17b5290d04ef7343636a5588a0692731a1
drm/crtc: Introduce drmm_crtc_init_with_planes

The DRM-managed function to register a CRTC is
drmm_crtc_alloc_with_planes(), which will allocate the underlying
structure and initialisation the CRTC.

However, we might want to separate the structure creation and the CRTC
initialisation, for example if the structure is shared across multiple
DRM entities, for example an encoder and a connector.

Let's create an helper to only initialise a CRTC that would be passed as
an argument.

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20220711173939.1132294-3-maxime@cerno.tech
drivers/gpu/drm/drm_crtc.c
include/drm/drm_crtc.h