Pārlūkot izejas kodu

msm: vidc: Fix LLCC bandwidth for non realtime session

For non real time sessions, LLCC bandwidth should be voted
to maximum bandwidth.

CRs-Fixed: 2919988
Change-Id: I37217e71634aed298c59533b7cc2f0aa32697752
Signed-off-by: Vikash Garodia <[email protected]>
Vikash Garodia 4 gadi atpakaļ
vecāks
revīzija
d336ae5365
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      driver/vidc/src/msm_vidc_power.c

+ 1 - 1
driver/vidc/src/msm_vidc_power.c

@@ -175,7 +175,7 @@ static int msm_vidc_set_buses(struct msm_vidc_inst* inst)
 
 		if (!is_realtime_session(inst)) {
 			temp->power.ddr_bw = core->platform->data.bus_bw_nrt[0];
-			temp->power.sys_cache_bw = 0;
+			temp->power.sys_cache_bw = core->platform->data.bus_bw_nrt[0];
 		}
 
 		total_bw_ddr += temp->power.ddr_bw;