lib: time: export usec_to_tick()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 2 Jun 2019 19:02:10 +0000 (21:02 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 4 Jun 2019 20:09:26 +0000 (22:09 +0200)
In the UEFI Stall() boottime service we need access to usec_to_tick().

Export the function.

Remove redundant implementation in arch/arm/mach-rockchip/rk_timer.c.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
arch/arm/mach-rockchip/rk_timer.c
include/time.h
lib/time.c

index f20e64f48ece7ceb6d937286ed174eb7afd87593..29d379fa0abc11ea3ef1b055cd448cb868393d73 100644 (file)
@@ -20,13 +20,6 @@ static uint64_t rockchip_get_ticks(void)
        return timebase_h << 32 | timebase_l;
 }
 
-static uint64_t usec_to_tick(unsigned int usec)
-{
-       uint64_t tick = usec;
-       tick *= CONFIG_SYS_TIMER_RATE / (1000 * 1000);
-       return tick;
-}
-
 void rockchip_udelay(unsigned int usec)
 {
        uint64_t tmp;
index 9fd0d73fb4e4342dc7650c1b4dcb114772b257ea..1e9b369be7cb029f0eafa6ad9180affe73b36b6e 100644 (file)
@@ -4,6 +4,7 @@
 #define _TIME_H
 
 #include <linux/typecheck.h>
+#include <linux/types.h>
 
 unsigned long get_timer(unsigned long base);
 
@@ -21,6 +22,14 @@ unsigned long timer_get_us(void);
  */
 void timer_test_add_offset(unsigned long offset);
 
+/**
+ * usec_to_tick() - convert microseconds to clock ticks
+ *
+ * @usec:      duration in microseconds
+ * Return:     duration in clock ticks
+ */
+uint64_t usec_to_tick(unsigned long usec);
+
 /*
  *     These inlines deal with timer wrapping correctly. You are
  *     strongly encouraged to use them
index 9c55da6f1b3914adde3bf67107896a962bc29d44..f5751ab162b69643404f37f08d0472b3105824e9 100644 (file)
@@ -139,7 +139,7 @@ unsigned long __weak notrace timer_get_us(void)
        return tick_to_time(get_ticks() * 1000);
 }
 
-static uint64_t usec_to_tick(unsigned long usec)
+uint64_t usec_to_tick(unsigned long usec)
 {
        uint64_t tick = usec;
        tick *= get_tbclk();