diff mbox series

[01/22] drm/i915: Allow some leniency in PCU reads

Message ID 20200504044903.7626-1-chris@chris-wilson.co.uk (mailing list archive)
State New, archived
Headers show
Series [01/22] drm/i915: Allow some leniency in PCU reads | expand

Commit Message

Chris Wilson May 4, 2020, 4:48 a.m. UTC
Extend the timeout for pcode reads to 10ms as they should not be
performed along critical paths, and succeeding after a short delay is
better than failing entirely.

References: https://gitlab.freedesktop.org/drm/intel/-/issues/1800
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/intel_sideband.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mika Kuoppala May 4, 2020, 9:52 a.m. UTC | #1
Chris Wilson <chris@chris-wilson.co.uk> writes:

> Extend the timeout for pcode reads to 10ms as they should not be

s/10ms/20ms

> performed along critical paths, and succeeding after a short delay is
> better than failing entirely.
>
> References: https://gitlab.freedesktop.org/drm/intel/-/issues/1800
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>

> ---
>  drivers/gpu/drm/i915/intel_sideband.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_sideband.c b/drivers/gpu/drm/i915/intel_sideband.c
> index 14daf6af6854..d5129c1dd452 100644
> --- a/drivers/gpu/drm/i915/intel_sideband.c
> +++ b/drivers/gpu/drm/i915/intel_sideband.c
> @@ -429,7 +429,7 @@ int sandybridge_pcode_read(struct drm_i915_private *i915, u32 mbox,
>  
>  	mutex_lock(&i915->sb_lock);
>  	err = __sandybridge_pcode_rw(i915, mbox, val, val1,
> -				     500, 0,
> +				     500, 20,
>  				     true);
>  	mutex_unlock(&i915->sb_lock);
>  
> -- 
> 2.20.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
Chris Wilson May 4, 2020, 10 a.m. UTC | #2
Quoting Mika Kuoppala (2020-05-04 10:52:53)
> Chris Wilson <chris@chris-wilson.co.uk> writes:
> 
> > Extend the timeout for pcode reads to 10ms as they should not be
> 
> s/10ms/20ms

I see I had a second dose of leniency. I must be getting soft.
-Chris
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/intel_sideband.c b/drivers/gpu/drm/i915/intel_sideband.c
index 14daf6af6854..d5129c1dd452 100644
--- a/drivers/gpu/drm/i915/intel_sideband.c
+++ b/drivers/gpu/drm/i915/intel_sideband.c
@@ -429,7 +429,7 @@  int sandybridge_pcode_read(struct drm_i915_private *i915, u32 mbox,
 
 	mutex_lock(&i915->sb_lock);
 	err = __sandybridge_pcode_rw(i915, mbox, val, val1,
-				     500, 0,
+				     500, 20,
 				     true);
 	mutex_unlock(&i915->sb_lock);