blob: aca421bdea331c4193d98adaf8ec350402ca23d6 [file] [log] [blame]
Thomas Chouc8a7ba92015-10-09 13:46:34 +08001/*
2 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
10#include <timer.h>
11
Bin Meng579eb5a2015-11-13 00:11:15 -080012DECLARE_GLOBAL_DATA_PTR;
13
Thomas Chouc8a7ba92015-10-09 13:46:34 +080014/*
Bin Meng435ae762015-11-13 00:11:14 -080015 * Implement a timer uclass to work with lib/time.c. The timer is usually
Bin Meng9ca07eb2015-11-24 13:31:17 -070016 * a 32/64 bits free-running up counter. The get_rate() method is used to get
Thomas Chouc8a7ba92015-10-09 13:46:34 +080017 * the input clock frequency of the timer. The get_count() method is used
Bin Meng9ca07eb2015-11-24 13:31:17 -070018 * to get the current 64 bits count value. If the hardware is counting down,
Thomas Chouc8a7ba92015-10-09 13:46:34 +080019 * the value should be inversed inside the method. There may be no real
20 * tick, and no timer interrupt.
21 */
22
Bin Meng9ca07eb2015-11-24 13:31:17 -070023int timer_get_count(struct udevice *dev, u64 *count)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080024{
25 const struct timer_ops *ops = device_get_ops(dev);
26
27 if (!ops->get_count)
28 return -ENOSYS;
29
30 return ops->get_count(dev, count);
31}
32
33unsigned long timer_get_rate(struct udevice *dev)
34{
35 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
36
37 return uc_priv->clock_rate;
38}
39
Bin Meng579eb5a2015-11-13 00:11:15 -080040static int timer_pre_probe(struct udevice *dev)
41{
42 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
43
44 uc_priv->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
45 "clock-frequency", 0);
46
47 return 0;
48}
49
Bin Meng9ca07eb2015-11-24 13:31:17 -070050u64 timer_conv_64(u32 count)
51{
52 /* increment tbh if tbl has rolled over */
53 if (count < gd->timebase_l)
54 gd->timebase_h++;
55 gd->timebase_l = count;
56 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
57}
58
Thomas Chouc8a7ba92015-10-09 13:46:34 +080059UCLASS_DRIVER(timer) = {
60 .id = UCLASS_TIMER,
61 .name = "timer",
Bin Meng579eb5a2015-11-13 00:11:15 -080062 .pre_probe = timer_pre_probe,
Thomas Chouc8a7ba92015-10-09 13:46:34 +080063 .per_device_auto_alloc_size = sizeof(struct timer_dev_priv),
64};