drm/amd/display: increase polling interval for fbc status update
1.Fixing error message: "wait counter exceeded, changes to HW not applied" 2. Added "FBC status changed to 0/1" logs Signed-off-by: Roman Li <Roman.Li@amd.com> Reviewed-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
42f8ffa108
commit
1bd4653a29
@ -115,7 +115,7 @@ static void wait_for_fbc_state_changed(
|
|||||||
FBC_STATUS,
|
FBC_STATUS,
|
||||||
FBC_ENABLE_STATUS) == enabled)
|
FBC_ENABLE_STATUS) == enabled)
|
||||||
break;
|
break;
|
||||||
udelay(10);
|
msleep(10);
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,7 +124,13 @@ static void wait_for_fbc_state_changed(
|
|||||||
cp110->base.ctx->logger, LOG_WARNING,
|
cp110->base.ctx->logger, LOG_WARNING,
|
||||||
"%s: wait counter exceeded, changes to HW not applied",
|
"%s: wait counter exceeded, changes to HW not applied",
|
||||||
__func__);
|
__func__);
|
||||||
|
} else {
|
||||||
|
dm_logger_write(
|
||||||
|
cp110->base.ctx->logger, LOG_SYNC,
|
||||||
|
"FBC status changed to %d", enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void dce110_compressor_power_up_fbc(struct compressor *compressor)
|
void dce110_compressor_power_up_fbc(struct compressor *compressor)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user