2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-10-30 07:35:52 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <timer.h>
|
|
|
|
#include <os.h>
|
|
|
|
|
2016-02-24 16:14:51 +00:00
|
|
|
#define SANDBOX_TIMER_RATE 1000000
|
|
|
|
|
2015-10-30 07:35:52 +00:00
|
|
|
/* system timer offset in ms */
|
|
|
|
static unsigned long sandbox_timer_offset;
|
|
|
|
|
regmap: fix regmap_read_poll_timeout warning about sandbox_timer_add_offset
When fixing sandbox test for regmap_read_poll_timeout(), the
sandbox_timer_add_offset was introduced but only defined in sandbox code
thus generating warnings when used out of sandbox :
include/regmap.h:289:2: note: in expansion of macro 'regmap_read_poll_timeout_test'
regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/spi/meson_spifc.c:169:8: note: in expansion of macro 'regmap_read_poll_timeout'
ret = regmap_read_poll_timeout(spifc->regmap, REG_SLAVE, data,
^~~~~~~~~~~~~~~~~~~~~~~~
drivers/spi/meson_spifc.c: In function 'meson_spifc_txrx':
include/regmap.h:277:4: warning: implicit declaration of function 'sandbox_timer_add_offset' [-Wimplicit-function-declaration]
This fix adds a timer_test_add_offset() only defined in sandbox, and
renames the previous sandbox_timer_add_offset() to it.
Cc: Simon Glass <sjg@chromium.org>
Reported-by: Tom Rini <trini@konsulko.com>
Fixes: df9cf1cc08 ("test: dm: regmap: Fix the long test delay")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
2019-04-11 15:01:23 +00:00
|
|
|
void timer_test_add_offset(unsigned long offset)
|
2015-10-30 07:35:52 +00:00
|
|
|
{
|
|
|
|
sandbox_timer_offset += offset;
|
|
|
|
}
|
|
|
|
|
2016-02-24 16:14:51 +00:00
|
|
|
u64 notrace timer_early_get_count(void)
|
|
|
|
{
|
|
|
|
return os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long notrace timer_early_get_rate(void)
|
|
|
|
{
|
|
|
|
return SANDBOX_TIMER_RATE;
|
|
|
|
}
|
|
|
|
|
2020-10-07 18:37:44 +00:00
|
|
|
static notrace u64 sandbox_timer_get_count(struct udevice *dev)
|
2015-10-30 07:35:52 +00:00
|
|
|
{
|
2020-10-07 18:37:44 +00:00
|
|
|
return timer_early_get_count();
|
2015-10-30 07:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int sandbox_timer_probe(struct udevice *dev)
|
|
|
|
{
|
2016-01-06 17:33:04 +00:00
|
|
|
struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
|
|
|
2020-09-28 14:52:23 +00:00
|
|
|
if (dev_read_bool(dev, "sandbox,timebase-frequency-fallback"))
|
|
|
|
return timer_timebase_fallback(dev);
|
|
|
|
else if (!uc_priv->clock_rate)
|
2016-02-24 16:14:51 +00:00
|
|
|
uc_priv->clock_rate = SANDBOX_TIMER_RATE;
|
2016-01-06 17:33:04 +00:00
|
|
|
|
2015-10-30 07:35:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct timer_ops sandbox_timer_ops = {
|
|
|
|
.get_count = sandbox_timer_get_count,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id sandbox_timer_ids[] = {
|
|
|
|
{ .compatible = "sandbox,timer" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(sandbox_timer) = {
|
|
|
|
.name = "sandbox_timer",
|
|
|
|
.id = UCLASS_TIMER,
|
|
|
|
.of_match = sandbox_timer_ids,
|
|
|
|
.probe = sandbox_timer_probe,
|
|
|
|
.ops = &sandbox_timer_ops,
|
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
|
|
|
};
|
2016-01-06 17:33:04 +00:00
|
|
|
|
|
|
|
/* This is here in case we don't have a device tree */
|
2020-12-29 03:34:54 +00:00
|
|
|
U_BOOT_DRVINFO(sandbox_timer_non_fdt) = {
|
2016-01-06 17:33:04 +00:00
|
|
|
.name = "sandbox_timer",
|
|
|
|
};
|