diff options
| author | Simon Glass <[email protected]> | 2020-07-09 18:43:14 -0600 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2020-07-17 14:32:24 +0800 |
| commit | e1ddf67cb3982b5c49c1165da87917a82a285783 (patch) | |
| tree | 1361a00a2d8d7a282be4e6c529539ecd8acabc70 /lib | |
| parent | ce04a9020c41a2ebf1d85e01532da69d2d2e2119 (diff) | |
timer: Allow delays with a 32-bit microsecond timer
The current get_timer_us() uses 64-bit arithmetic on 32-bit machines.
When implementing microsecond-level timeouts, 32-bits is plenty. Add a
new function that uses an unsigned long. On 64-bit machines this is
still 64-bit, but this doesn't introduce a penalty. On 32-bit machines
it is more efficient.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/time.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/time.c b/lib/time.c index 65db0f6cda2..47f8c84327d 100644 --- a/lib/time.c +++ b/lib/time.c @@ -152,6 +152,11 @@ uint64_t __weak get_timer_us(uint64_t base) return tick_to_time_us(get_ticks()) - base; } +unsigned long __weak get_timer_us_long(unsigned long base) +{ + return timer_get_us() - base; +} + unsigned long __weak notrace timer_get_us(void) { return tick_to_time(get_ticks() * 1000); |
