2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
16 #ifndef CONFIG_WD_PERIOD
17 # define CONFIG_WD_PERIOD (10 * 1000 * 1000) /* 10 seconds default */
20 DECLARE_GLOBAL_DATA_PTR;
22 #ifdef CONFIG_SYS_TIMER_RATE
23 /* Returns tick rate in ticks per second */
24 ulong notrace get_tbclk(void)
26 return CONFIG_SYS_TIMER_RATE;
30 #ifdef CONFIG_SYS_TIMER_COUNTER
31 unsigned long notrace timer_read_counter(void)
33 #ifdef CONFIG_SYS_TIMER_COUNTS_DOWN
34 return ~readl(CONFIG_SYS_TIMER_COUNTER);
36 return readl(CONFIG_SYS_TIMER_COUNTER);
40 extern unsigned long __weak timer_read_counter(void);
44 ulong notrace get_tbclk(void)
48 ret = dm_timer_init();
52 return timer_get_rate(gd->timer);
55 uint64_t notrace get_ticks(void)
60 ret = dm_timer_init();
64 ret = timer_get_count(gd->timer, &count);
71 #else /* !CONFIG_TIMER */
73 uint64_t __weak notrace get_ticks(void)
75 unsigned long now = timer_read_counter();
77 /* increment tbu if tbl has rolled over */
78 if (now < gd->timebase_l)
81 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
84 #endif /* CONFIG_TIMER */
86 /* Returns time in milliseconds */
87 static uint64_t notrace tick_to_time(uint64_t tick)
89 ulong div = get_tbclk();
91 tick *= CONFIG_SYS_HZ;
96 int __weak timer_init(void)
101 /* Returns time in milliseconds */
102 ulong __weak get_timer(ulong base)
104 return tick_to_time(get_ticks()) - base;
107 unsigned long __weak notrace timer_get_us(void)
109 return tick_to_time(get_ticks() * 1000);
112 static uint64_t usec_to_tick(unsigned long usec)
114 uint64_t tick = usec;
116 do_div(tick, 1000000);
120 void __weak __udelay(unsigned long usec)
124 tmp = get_ticks() + usec_to_tick(usec); /* get current timestamp */
126 while (get_ticks() < tmp+1) /* loop till event */
130 /* ------------------------------------------------------------------------- */
132 void udelay(unsigned long usec)
138 kv = usec > CONFIG_WD_PERIOD ? CONFIG_WD_PERIOD : usec;
144 void mdelay(unsigned long msec)