Selaa lähdekoodia

disp: msm: sde: correct sspp top/bottom overfetch programming

Currently the top/bottom pixel extension overfetch value for
component 3 is misprogrammed with left/right value.
This change corrects the programming sequence.

Change-Id: I2e7accb48840a976645c92cb57b48c6663ae20a0
Signed-off-by: Nilaan Gunabalachandran <[email protected]>
Nilaan Gunabalachandran 4 vuotta sitten
vanhempi
sitoutus
c5288713ec
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      msm/sde/sde_hw_sspp.c

+ 1 - 1
msm/sde/sde_hw_sspp.c

@@ -693,7 +693,7 @@ static void sde_hw_sspp_setup_pe_config(struct sde_hw_pipe *ctx,
 
 	/* color 3 */
 	SDE_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_LR + idx, lr_pe[3]);
-	SDE_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB + idx, lr_pe[3]);
+	SDE_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_TB + idx, tb_pe[3]);
 	SDE_REG_WRITE(c, SSPP_SW_PIX_EXT_C3_REQ_PIXELS + idx,
 			tot_req_pixels[3]);
 }