1 From 84a67330f3457469bc42f203111fc5ad800c506b Mon Sep 17 00:00:00 2001
2 From: Dave Stevenson <dave.stevenson@raspberrypi.com>
3 Date: Thu, 13 Aug 2020 18:29:56 +0100
4 Subject: [PATCH] drm/vc4: Set the possible crtcs mask correctly for
7 The driver was assigning all planes to crtcs when actually they're
8 mapped to a specific crtc.
12 https://github.com/raspberrypi/linux/issues/3734
14 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
16 drivers/gpu/drm/vc4/vc4_firmware_kms.c | 6 +++++-
17 1 file changed, 5 insertions(+), 1 deletion(-)
19 --- a/drivers/gpu/drm/vc4/vc4_firmware_kms.c
20 +++ b/drivers/gpu/drm/vc4/vc4_firmware_kms.c
21 @@ -816,7 +816,7 @@ static struct drm_plane *vc4_fkms_plane_
22 formats[num_formats++] = vc_image_formats[i].drm;
24 plane = &vc4_plane->base;
25 - ret = drm_universal_plane_init(dev, plane, 0xff,
26 + ret = drm_universal_plane_init(dev, plane, 0,
28 formats, num_formats, modifiers,
30 @@ -1785,6 +1785,10 @@ static int vc4_fkms_create_screen(struct
32 drm_crtc_helper_add(crtc, &vc4_crtc_helper_funcs);
34 + /* Update the possible_crtcs mask for the overlay plane(s) */
35 + for (i = 1; i < (PLANES_PER_CRTC - 1); i++)
36 + planes[i]->possible_crtcs = drm_crtc_mask(crtc);
38 vc4_encoder = devm_kzalloc(dev, sizeof(*vc4_encoder), GFP_KERNEL);