Thread (31 messages) 31 messages, 3 authors, 2018-02-19

[PATCH v5 11/20] firmware: arm_scmi: add support for polling based SCMI transfers

From: arnd@arndb.de (Arnd Bergmann)
Date: 2018-02-19 11:32:42
Also in: linux-devicetree, lkml

On Tue, Jan 2, 2018 at 3:42 PM, Sudeep Holla [off-list ref] wrote:
quoted hunk ↗ jump to hunk
+#define SCMI_MAX_POLLING_TIMEOUT_NS    (100 * NSEC_PER_USEC)
 /**
  * scmi_do_xfer() - Do one transfer
  *
@@ -389,14 +406,30 @@ int scmi_do_xfer(const struct scmi_handle *handle, struct scmi_xfer *xfer)
+       if (xfer->hdr.poll_completion) {
+               ktime_t stop, cur;
+
+               stop = ktime_add_ns(ktime_get(), SCMI_MAX_POLLING_TIMEOUT_NS);
+               do {
+                       udelay(5);
+                       cur = ktime_get();
+               } while (!scmi_xfer_poll_done(info, xfer) &&
+                        ktime_before(cur, stop));
The 5 microsecond back-off isn't that much smaller than the 100 microsecond
timeout, given that udelay() often waits much longer than the specified time.

How did you come up with those two numbers? Are you sure this is better
than just using a cpu_relax() instead of the udelay()?

      Arnd
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help