summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Kuoppala <mika.kuoppala@intel.com>2016-03-11 18:56:40 +0200
committerMika Kuoppala <mika.kuoppala@intel.com>2016-04-01 13:57:57 +0300
commit7a2c45e64bca617f140b3dde05438528fb5ddff5 (patch)
treecb4fe23e26a3a643fd0e99fc5dc2214ebbc36575
parent0dc23273e20239c566ed5bd6f420c8579545a80f (diff)
drm/i915: Use milliseconds in _wait_for macro
Promising 1us accuracy where we timeout using jiffies is misleading. Convert the _wait_for macro to use milliseconds and convert the 2 callsites. Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
-rw-r--r--drivers/gpu/drm/i915/intel_dp.c4
-rw-r--r--drivers/gpu/drm/i915/intel_drv.h13
-rw-r--r--drivers/gpu/drm/i915/intel_psr.c6
3 files changed, 12 insertions, 11 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index da0c3d29fda8..e77f8f4418bf 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -1704,8 +1704,8 @@ static void wait_panel_status(struct intel_dp *intel_dp,
I915_READ(pp_stat_reg),
I915_READ(pp_ctrl_reg));
- if (_wait_for((I915_READ(pp_stat_reg) & mask) == value,
- 5 * USEC_PER_SEC, 10 * USEC_PER_MSEC))
+ if (_wait_for_ms((I915_READ(pp_stat_reg) & mask) == value,
+ 5 * MSEC_PER_SEC, 10 * USEC_PER_MSEC))
DRM_ERROR("Panel status timeout: status %08x control %08x\n",
I915_READ(pp_stat_reg),
I915_READ(pp_ctrl_reg));
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
index 444963c129f5..e1e5c9d1c7f1 100644
--- a/drivers/gpu/drm/i915/intel_drv.h
+++ b/drivers/gpu/drm/i915/intel_drv.h
@@ -38,7 +38,7 @@
#include <drm/drm_atomic.h>
/**
- * _wait_for - magic (register) wait macro
+ * _wait_for_ms - magic (register) wait macro
*
* Does the right thing for modeset paths when run under kdgb or similar atomic
* contexts. Note that it's important that we check the condition again after
@@ -49,8 +49,9 @@
* drm_can_sleep() can be removed and in_atomic()/!in_atomic() asserts
* added.
*/
-#define _wait_for(COND, US, W) ({ \
- unsigned long timeout__ = jiffies + usecs_to_jiffies(US) + 1; \
+#define _wait_for_ms(COND, TIMEOUT_MS, SLEEP_US) ({ \
+ const unsigned long timeout__ = \
+ jiffies + msecs_to_jiffies(TIMEOUT_MS) + 1; \
int ret__ = 0; \
while (!(COND)) { \
if (time_after(jiffies, timeout__)) { \
@@ -58,8 +59,8 @@
ret__ = -ETIMEDOUT; \
break; \
} \
- if ((W) && drm_can_sleep()) { \
- usleep_range((W), (W)*2); \
+ if ((SLEEP_US) && drm_can_sleep()) { \
+ usleep_range((SLEEP_US), (SLEEP_US) * 2); \
} else { \
cpu_relax(); \
} \
@@ -67,7 +68,7 @@
ret__; \
})
-#define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 1000)
+#define wait_for(COND, MS) _wait_for_ms((COND), (MS), 1 * USEC_PER_MSEC)
/* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
diff --git a/drivers/gpu/drm/i915/intel_psr.c b/drivers/gpu/drm/i915/intel_psr.c
index 38e95185d9c6..44a34601b920 100644
--- a/drivers/gpu/drm/i915/intel_psr.c
+++ b/drivers/gpu/drm/i915/intel_psr.c
@@ -506,9 +506,9 @@ static void hsw_psr_disable(struct intel_dp *intel_dp)
I915_READ(EDP_PSR_CTL) & ~EDP_PSR_ENABLE);
/* Wait till PSR is idle */
- if (_wait_for((I915_READ(EDP_PSR_STATUS_CTL) &
- EDP_PSR_STATUS_STATE_MASK) == 0,
- 2 * USEC_PER_SEC, 10 * USEC_PER_MSEC))
+ if (_wait_for_ms((I915_READ(EDP_PSR_STATUS_CTL) &
+ EDP_PSR_STATUS_STATE_MASK) == 0,
+ 2 * MSEC_PER_SEC, 10 * USEC_PER_MSEC))
DRM_ERROR("Timed out waiting for PSR Idle State\n");
dev_priv->psr.active = false;