summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAneesh Bansal <aneesh.bansal@freescale.com>2015-12-08 13:54:26 +0530
committerYork Sun <yorksun@freescale.com>2015-12-15 08:57:34 +0800
commitb644d3e932f133bbb8b577c1965eae399b7df99e (patch)
tree40fb9d499ab8222f453d4ee7652fdc8afca3cd0e /arch
parentbeedbc2ea0e71c779b92e4d74b928a266d3e86f9 (diff)
downloadtalos-obmc-uboot-b644d3e932f133bbb8b577c1965eae399b7df99e.tar.gz
talos-obmc-uboot-b644d3e932f133bbb8b577c1965eae399b7df99e.zip
armv8: define usec2ticks function
usec2ticks() function has been defined for ARMv8 which will be used by SEC Driver. Signed-off-by: Aneesh Bansal <aneesh.bansal@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv8/generic_timer.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv8/generic_timer.c b/arch/arm/cpu/armv8/generic_timer.c
index 8e60baebc5..8f47a82043 100644
--- a/arch/arm/cpu/armv8/generic_timer.c
+++ b/arch/arm/cpu/armv8/generic_timer.c
@@ -40,3 +40,14 @@ unsigned long timer_read_counter(void)
#endif
return cntpct;
}
+
+unsigned long usec2ticks(unsigned long usec)
+{
+ ulong ticks;
+ if (usec < 1000)
+ ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
+ else
+ ticks = ((usec / 10) * (get_tbclk() / 100000));
+
+ return ticks;
+}
OpenPOWER on IntegriCloud