*
  * Otherwise, the wait will timeout after @slow_timeout_ms milliseconds.
  * For atomic context @slow_timeout_ms must be zero and @fast_timeout_us
- * must be not larger than 10 microseconds.
+ * must be not larger than 20,0000 microseconds.
  *
  * Note that this routine assumes the caller holds forcewake asserted, it is
  * not suitable for very long waits. See intel_wait_for_register() if you
        int ret;
 
        /* Catch any overuse of this function */
-       might_sleep_if(fast_timeout_us > 10 || slow_timeout_ms);
+       might_sleep_if(slow_timeout_ms);
+       GEM_BUG_ON(fast_timeout_us > 20000);
 
-       if (fast_timeout_us > 10)
-               ret = _wait_for(done, fast_timeout_us, 10);
-       else
+       ret = -ETIMEDOUT;
+       if (fast_timeout_us && fast_timeout_us <= 20000)
                ret = _wait_for_atomic(done, fast_timeout_us, 0);
        if (ret)
                ret = wait_for(done, slow_timeout_ms);
+
        if (out_value)
                *out_value = reg_value;
+
        return ret;
 #undef done
 }