mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 16:35:16 +07:00
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_ENABLE_STATUS) == enabled)
|
||||
break;
|
||||
udelay(10);
|
||||
msleep(10);
|
||||
counter++;
|
||||
}
|
||||
|
||||
@ -124,7 +124,13 @@ static void wait_for_fbc_state_changed(
|
||||
cp110->base.ctx->logger, LOG_WARNING,
|
||||
"%s: wait counter exceeded, changes to HW not applied",
|
||||
__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)
|
||||
|
Loading…
Reference in New Issue
Block a user