]> git.baikalelectronics.ru Git - kernel.git/commit
drm: Auto-set allow_fb_modifiers when given modifiers at plane init
authorPaul Kocialkowski <paul.kocialkowski@bootlin.com>
Fri, 4 Jan 2019 08:56:10 +0000 (09:56 +0100)
committerMaxime Ripard <maxime.ripard@bootlin.com>
Fri, 11 Jan 2019 15:53:55 +0000 (16:53 +0100)
commitdb245b0c549d4ec6964e3b714e81bec1c8f6ad80
treeb87c2669e52ed882ccedc2dc98da5cc448f26998
parenta59711174dda6ea41cfa92181154c9a0037f0cb0
drm: Auto-set allow_fb_modifiers when given modifiers at plane init

When drivers pass non-empty lists of modifiers for initializing their
planes, we can infer that they allow framebuffer modifiers and set the
driver's allow_fb_modifiers mode config element.

In case the allow_fb_modifiers element was not set (some drivers tend
to set them after registering planes), the modifiers will still be
registered but won't be available to userspace unless the flag is set
later. However in that case, the IN_FORMATS blob won't be created.

In order to avoid this case and generally reduce the trouble associated
with the flag, always set allow_fb_modifiers when a non-empty list of
format modifiers is passed at plane init.

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190104085610.5829-1-paul.kocialkowski@bootlin.com
drivers/gpu/drm/drm_plane.c