mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
bb883f824c
A default invocation of sandbox U-Boot apparently uses no device tree, which means that no timer is registers, which in turn means that the sleep shell command hangs. Fix the sandbox timer code to register a device when there's no DT, just like e.g. the sandbox reset driver does. When there's no DT, the DM uclass can't initialize clock_rate from DT, so set a default value in the timer code instead. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
59 lines
1.2 KiB
C
59 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <errno.h>
|
|
#include <timer.h>
|
|
#include <os.h>
|
|
|
|
/* system timer offset in ms */
|
|
static unsigned long sandbox_timer_offset;
|
|
|
|
void sandbox_timer_add_offset(unsigned long offset)
|
|
{
|
|
sandbox_timer_offset += offset;
|
|
}
|
|
|
|
static int sandbox_timer_get_count(struct udevice *dev, u64 *count)
|
|
{
|
|
*count = os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sandbox_timer_probe(struct udevice *dev)
|
|
{
|
|
struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
|
|
if (!uc_priv->clock_rate)
|
|
uc_priv->clock_rate = 1000000;
|
|
|
|
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,
|
|
};
|
|
|
|
/* This is here in case we don't have a device tree */
|
|
U_BOOT_DEVICE(sandbox_timer_non_fdt) = {
|
|
.name = "sandbox_timer",
|
|
};
|