Patch "drm/msm/dpu: populate wb or intf before reset_intf_cfg" has been added to the 5.19-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/msm/dpu: populate wb or intf before reset_intf_cfg

to the 5.19-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-msm-dpu-populate-wb-or-intf-before-reset_intf_cf.patch
and it can be found in the queue-5.19 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 7678eecfd938dc3a4387ebf8dec73a4e93cec14b
Author: Abhinav Kumar <quic_abhinavk@xxxxxxxxxxx>
Date:   Fri Jul 15 12:14:28 2022 -0700

    drm/msm/dpu: populate wb or intf before reset_intf_cfg
    
    [ Upstream commit ef3ac3ae147c6ab370875727791e9b3eaf176cea ]
    
    dpu_encoder_helper_phys_cleanup() was not populating neither
    wb or intf to the intf_cfg before calling the reset_intf_cfg().
    
    This causes the reset of the active bits of wb/intf to be
    skipped which is incorrect.
    
    Fix this by populating the relevant wb or intf indices correctly.
    
    Fixes: ae4d721ce100 ("drm/msm/dpu: add an API to reset the encoder related hw blocks")
    Signed-off-by: Abhinav Kumar <quic_abhinavk@xxxxxxxxxxx>
    Reviewed-by: Jessica Zhang <quic_jesszhan@xxxxxxxxxxx>
    Tested-by: Jessica Zhang <quic_jesszhan@xxxxxxxxxxx> # Trogdor (SC8170)
    Patchwork: https://patchwork.freedesktop.org/patch/494298/
    Link: https://lore.kernel.org/r/1657912468-17254-1-git-send-email-quic_abhinavk@xxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
index 9b4df3084366b..d98c7f7da7c08 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
@@ -1998,6 +1998,12 @@ void dpu_encoder_helper_phys_cleanup(struct dpu_encoder_phys *phys_enc)
 
 	intf_cfg.stream_sel = 0; /* Don't care value for video mode */
 	intf_cfg.mode_3d = dpu_encoder_helper_get_3d_blend_mode(phys_enc);
+
+	if (phys_enc->hw_intf)
+		intf_cfg.intf = phys_enc->hw_intf->idx;
+	if (phys_enc->hw_wb)
+		intf_cfg.wb = phys_enc->hw_wb->idx;
+
 	if (phys_enc->hw_pp->merge_3d)
 		intf_cfg.merge_3d = phys_enc->hw_pp->merge_3d->idx;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux