diff options
author | Joe Hershberger | 2015-04-21 13:57:18 -0500 |
---|---|---|
committer | Simon Glass | 2015-05-05 20:58:18 -0600 |
commit | 909bd6d9729cb0c6ba6b80cdc283bbd3e1e12770 (patch) | |
tree | 8e7c974481e3b8979f76a8f687c09bd04b4b6529 /board | |
parent | 905e8f9e53766e606bd4a0ed46d804889e613f32 (diff) |
sandbox: Add test function to advance time
Add a function that maintains an offset to include in the system timer
values returned from the lib/time.c APIs.
This will allow timeouts to be skipped instantly in tests
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/sandbox/sandbox.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c index 2227f1c1214..80eaa6334cb 100644 --- a/board/sandbox/sandbox.c +++ b/board/sandbox/sandbox.c @@ -7,6 +7,7 @@ #include <cros_ec.h> #include <dm.h> #include <os.h> +#include <asm/test.h> #include <asm/u-boot-sandbox.h> /* @@ -25,9 +26,17 @@ void flush_cache(unsigned long start, unsigned long size) { } +/* system timer offset in ms */ +static unsigned long sandbox_timer_offset; + +void sandbox_timer_add_offset(unsigned long offset) +{ + sandbox_timer_offset += offset; +} + unsigned long timer_read_counter(void) { - return os_get_nsec() / 1000; + return os_get_nsec() / 1000 + sandbox_timer_offset * 1000; } int dram_init(void) |