summaryrefslogtreecommitdiffstats
path: root/drivers/timer/andes_plmt_timer.c
diff options
context:
space:
mode:
authorPragnesh Patel <pragnesh.patel@sifive.com>2021-01-17 18:11:25 +0530
committerAndes <uboot@andestech.com>2021-01-18 11:06:32 +0800
commitbc8d12bfd8750de265b742f2ab9cdde2726ea85f (patch)
tree2bbdf6fd3df17150cba305c93de6c906043d8dea /drivers/timer/andes_plmt_timer.c
parenta80f85138c9457141c799c022b5c924252031512 (diff)
downloadu-boot-bc8d12bfd8750de265b742f2ab9cdde2726ea85f.tar.gz
u-boot-bc8d12bfd8750de265b742f2ab9cdde2726ea85f.tar.xz
u-boot-bc8d12bfd8750de265b742f2ab9cdde2726ea85f.zip
riscv: timer: Add support for an early timer
Added support for timer_early_get_count() and timer_early_get_rate() This is mostly useful in tracing. Signed-off-by: Pragnesh Patel <pragnesh.patel@sifive.com> Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'drivers/timer/andes_plmt_timer.c')
-rw-r--r--drivers/timer/andes_plmt_timer.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/drivers/timer/andes_plmt_timer.c b/drivers/timer/andes_plmt_timer.c
index db2cf86f63..a3797b22c7 100644
--- a/drivers/timer/andes_plmt_timer.c
+++ b/drivers/timer/andes_plmt_timer.c
@@ -18,11 +18,30 @@
/* mtime register */
#define MTIME_REG(base) ((ulong)(base))
-static u64 andes_plmt_get_count(struct udevice *dev)
+static u64 notrace andes_plmt_get_count(struct udevice *dev)
{
return readq((void __iomem *)MTIME_REG(dev_get_priv(dev)));
}
+#if CONFIG_IS_ENABLED(RISCV_MMODE) && IS_ENABLED(CONFIG_TIMER_EARLY)
+/**
+ * timer_early_get_rate() - Get the timer rate before driver model
+ */
+unsigned long notrace timer_early_get_rate(void)
+{
+ return RISCV_MMODE_TIMER_FREQ;
+}
+
+/**
+ * timer_early_get_count() - Get the timer count before driver model
+ *
+ */
+u64 notrace timer_early_get_count(void)
+{
+ return readq((void __iomem *)MTIME_REG(RISCV_MMODE_TIMERBASE));
+}
+#endif
+
static const struct timer_ops andes_plmt_ops = {
.get_count = andes_plmt_get_count,
};