Thread (56 messages) 56 messages, 6 authors, 2018-02-14

Re: [PATCH v4 25/36] nds32: Miscellaneous header files

From: Arnd Bergmann <hidden>
Date: 2017-12-18 11:13:43
Also in: linux-arch, linux-serial, lkml, netdev

On Mon, Dec 18, 2017 at 7:46 AM, Greentime Hu [off-list ref] wrote:
From: Greentime Hu <greentime-MUIXKm3Oiri1Z/+hSey0Gg@public.gmane.org>

This patch introduces some miscellaneous header files.
+static inline void __delay(unsigned long loops)
+{
+       __asm__ __volatile__(".align 2\n"
+                            "1:\n"
+                            "\taddi\t%0, %0, -1\n"
+                            "\tbgtz\t%0, 1b\n"
+                            :"=r"(loops)
+                            :"0"(loops));
+}
+
+static inline void __udelay(unsigned long usecs, unsigned long lpj)
+{
+       usecs *= (unsigned long)(((0x8000000000000000ULL / (500000 / HZ)) +
+                                 0x80000000ULL) >> 32);
+       usecs = (unsigned long)(((unsigned long long)usecs * lpj) >> 32);
+       __delay(usecs);
+}
Do you have a reliable clocksource that you can read here instead of doing the
loop? It's generally preferred to have an accurate delay if at all possible, the
delay loop calibration is only for those architectures that don't have any
way to observe how much time has passed accurately.

       Arnd
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help