blob: e8b54a02965f715a7c95447b2fed30b2eb3c357d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Thomas Chou7b059dc2015-10-30 15:35:52 +08002/*
3 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
Thomas Chou7b059dc2015-10-30 15:35:52 +08004 */
5
Thomas Chou7b059dc2015-10-30 15:35:52 +08006#include <dm.h>
7#include <errno.h>
8#include <timer.h>
9#include <os.h>
10
Simon Glass3c7c187b2016-02-24 09:14:51 -070011#define SANDBOX_TIMER_RATE 1000000
12
Thomas Chou7b059dc2015-10-30 15:35:52 +080013/* system timer offset in ms */
14static unsigned long sandbox_timer_offset;
15
Neil Armstrong77c0dbc2019-04-11 17:01:23 +020016void timer_test_add_offset(unsigned long offset)
Thomas Chou7b059dc2015-10-30 15:35:52 +080017{
18 sandbox_timer_offset += offset;
19}
20
Simon Glass3c7c187b2016-02-24 09:14:51 -070021u64 notrace timer_early_get_count(void)
22{
23 return os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
24}
25
26unsigned long notrace timer_early_get_rate(void)
Thomas Chou7b059dc2015-10-30 15:35:52 +080027{
Simon Glass3c7c187b2016-02-24 09:14:51 -070028 return SANDBOX_TIMER_RATE;
29}
30
Sean Anderson947fc2d2020-10-07 14:37:44 -040031static notrace u64 sandbox_timer_get_count(struct udevice *dev)
Simon Glass3c7c187b2016-02-24 09:14:51 -070032{
Sean Anderson947fc2d2020-10-07 14:37:44 -040033 return timer_early_get_count();
Thomas Chou7b059dc2015-10-30 15:35:52 +080034}
35
36static int sandbox_timer_probe(struct udevice *dev)
37{
Stephen Warren4faff282016-01-06 10:33:04 -070038 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
39
Simon Glass41d97062021-03-15 18:11:06 +130040 if (CONFIG_IS_ENABLED(CPU) &&
41 dev_read_bool(dev, "sandbox,timebase-frequency-fallback"))
Sean Anderson79d3bba2020-09-28 10:52:23 -040042 return timer_timebase_fallback(dev);
43 else if (!uc_priv->clock_rate)
Simon Glass3c7c187b2016-02-24 09:14:51 -070044 uc_priv->clock_rate = SANDBOX_TIMER_RATE;
Stephen Warren4faff282016-01-06 10:33:04 -070045
Thomas Chou7b059dc2015-10-30 15:35:52 +080046 return 0;
47}
48
49static const struct timer_ops sandbox_timer_ops = {
50 .get_count = sandbox_timer_get_count,
51};
52
53static const struct udevice_id sandbox_timer_ids[] = {
54 { .compatible = "sandbox,timer" },
55 { }
56};
57
58U_BOOT_DRIVER(sandbox_timer) = {
59 .name = "sandbox_timer",
60 .id = UCLASS_TIMER,
61 .of_match = sandbox_timer_ids,
62 .probe = sandbox_timer_probe,
63 .ops = &sandbox_timer_ops,
64 .flags = DM_FLAG_PRE_RELOC,
65};
Stephen Warren4faff282016-01-06 10:33:04 -070066
67/* This is here in case we don't have a device tree */
Heinrich Schuchardtdcbc02e2023-02-22 01:39:18 +010068#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass1d8364a2020-12-28 20:34:54 -070069U_BOOT_DRVINFO(sandbox_timer_non_fdt) = {
Stephen Warren4faff282016-01-06 10:33:04 -070070 .name = "sandbox_timer",
71};
Heinrich Schuchardtdcbc02e2023-02-22 01:39:18 +010072#endif