Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 1 | /* |
| 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> |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 9 | #include <dm/lists.h> |
| 10 | #include <dm/device-internal.h> |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 11 | #include <errno.h> |
| 12 | #include <timer.h> |
| 13 | |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 16 | /* |
Bin Meng | 435ae76 | 2015-11-13 00:11:14 -0800 | [diff] [blame] | 17 | * Implement a timer uclass to work with lib/time.c. The timer is usually |
Bin Meng | 9ca07eb | 2015-11-24 13:31:17 -0700 | [diff] [blame] | 18 | * a 32/64 bits free-running up counter. The get_rate() method is used to get |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 19 | * the input clock frequency of the timer. The get_count() method is used |
Bin Meng | 9ca07eb | 2015-11-24 13:31:17 -0700 | [diff] [blame] | 20 | * to get the current 64 bits count value. If the hardware is counting down, |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 21 | * the value should be inversed inside the method. There may be no real |
| 22 | * tick, and no timer interrupt. |
| 23 | */ |
| 24 | |
Bin Meng | 9ca07eb | 2015-11-24 13:31:17 -0700 | [diff] [blame] | 25 | int timer_get_count(struct udevice *dev, u64 *count) |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 26 | { |
| 27 | const struct timer_ops *ops = device_get_ops(dev); |
| 28 | |
| 29 | if (!ops->get_count) |
| 30 | return -ENOSYS; |
| 31 | |
| 32 | return ops->get_count(dev, count); |
| 33 | } |
| 34 | |
| 35 | unsigned long timer_get_rate(struct udevice *dev) |
| 36 | { |
| 37 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 38 | |
| 39 | return uc_priv->clock_rate; |
| 40 | } |
| 41 | |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 42 | static int timer_pre_probe(struct udevice *dev) |
| 43 | { |
| 44 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 45 | |
| 46 | uc_priv->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset, |
| 47 | "clock-frequency", 0); |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
Stephen Warren | 0a7edce | 2016-01-06 10:33:03 -0700 | [diff] [blame] | 52 | static int timer_post_probe(struct udevice *dev) |
| 53 | { |
| 54 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 55 | |
| 56 | if (!uc_priv->clock_rate) |
| 57 | return -EINVAL; |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Bin Meng | 9ca07eb | 2015-11-24 13:31:17 -0700 | [diff] [blame] | 62 | u64 timer_conv_64(u32 count) |
| 63 | { |
| 64 | /* increment tbh if tbl has rolled over */ |
| 65 | if (count < gd->timebase_l) |
| 66 | gd->timebase_h++; |
| 67 | gd->timebase_l = count; |
| 68 | return ((u64)gd->timebase_h << 32) | gd->timebase_l; |
| 69 | } |
| 70 | |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 71 | int notrace dm_timer_init(void) |
| 72 | { |
| 73 | const void *blob = gd->fdt_blob; |
| 74 | struct udevice *dev = NULL; |
| 75 | int node; |
| 76 | int ret; |
| 77 | |
| 78 | if (gd->timer) |
| 79 | return 0; |
| 80 | |
| 81 | /* Check for a chosen timer to be used for tick */ |
| 82 | node = fdtdec_get_chosen_node(blob, "tick-timer"); |
| 83 | if (node < 0) { |
| 84 | /* No chosen timer, trying first available timer */ |
| 85 | ret = uclass_first_device(UCLASS_TIMER, &dev); |
| 86 | if (ret) |
| 87 | return ret; |
| 88 | if (!dev) |
| 89 | return -ENODEV; |
| 90 | } else { |
| 91 | if (uclass_get_device_by_of_offset(UCLASS_TIMER, node, &dev)) { |
| 92 | /* |
| 93 | * If the timer is not marked to be bound before |
| 94 | * relocation, bind it anyway. |
| 95 | */ |
| 96 | if (node > 0 && |
| 97 | !lists_bind_fdt(gd->dm_root, blob, node, &dev)) { |
| 98 | ret = device_probe(dev); |
| 99 | if (ret) |
| 100 | return ret; |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | if (dev) { |
| 106 | gd->timer = dev; |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | return -ENODEV; |
| 111 | } |
| 112 | |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 113 | UCLASS_DRIVER(timer) = { |
| 114 | .id = UCLASS_TIMER, |
| 115 | .name = "timer", |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 116 | .pre_probe = timer_pre_probe, |
Mugunthan V N | a5d8011 | 2015-12-24 16:08:06 +0530 | [diff] [blame] | 117 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Stephen Warren | 0a7edce | 2016-01-06 10:33:03 -0700 | [diff] [blame] | 118 | .post_probe = timer_post_probe, |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 119 | .per_device_auto_alloc_size = sizeof(struct timer_dev_priv), |
| 120 | }; |