]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
CRIS v32: Add precise delay loops for ETRAX FS and ARTPEC-3.
authorJesper Nilsson <jesper.nilsson@axis.com>
Fri, 25 Jan 2008 16:31:38 +0000 (17:31 +0100)
committerJesper Nilsson <jesper.nilsson@axis.com>
Fri, 8 Feb 2008 10:06:35 +0000 (11:06 +0100)
Implements cris_delay10ns.

arch/cris/arch-v32/lib/delay.c [new file with mode: 0644]

diff --git a/arch/cris/arch-v32/lib/delay.c b/arch/cris/arch-v32/lib/delay.c
new file mode 100644 (file)
index 0000000..39f1ac9
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * Precise Delay Loops for ETRAX FS
+ *
+ * Copyright (C) 2006 Axis Communications AB.
+ *
+ */
+
+#include <hwregs/reg_map.h>
+#include <hwregs/reg_rdwr.h>
+#include <hwregs/timer_defs.h>
+#include <linux/types.h>
+#include <linux/delay.h>
+#include <linux/module.h>
+
+/*
+ * On ETRAX FS, we can check the free-running read-only 100MHz timer
+ * getting 32-bit 10ns precision, theoretically good for 42.94967295
+ * seconds.  Unsigned arithmetic and careful expression handles
+ * wrapping.
+ */
+
+void cris_delay10ns(u32 n10ns)
+{
+       u32 t0 = REG_RD(timer, regi_timer0, r_time);
+       while (REG_RD(timer, regi_timer0, r_time) - t0 < n10ns)
+               ;
+}
+EXPORT_SYMBOL(cris_delay10ns);