Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw> |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <dm.h> |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 8 | #include <dm/lists.h> |
| 9 | #include <dm/device-internal.h> |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 10 | #include <dm/root.h> |
Zakharov Vlad | a5acafb | 2016-12-09 17:18:32 +0300 | [diff] [blame] | 11 | #include <clk.h> |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 12 | #include <errno.h> |
| 13 | #include <timer.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame^] | 14 | #include <linux/err.h> |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 15 | |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 18 | /* |
Bin Meng | 435ae76 | 2015-11-13 00:11:14 -0800 | [diff] [blame] | 19 | * 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] | 20 | * 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] | 21 | * 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] | 22 | * 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] | 23 | * the value should be inversed inside the method. There may be no real |
| 24 | * tick, and no timer interrupt. |
| 25 | */ |
| 26 | |
Simon Glass | 4f05182 | 2016-02-24 09:14:48 -0700 | [diff] [blame] | 27 | int notrace timer_get_count(struct udevice *dev, u64 *count) |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 28 | { |
| 29 | const struct timer_ops *ops = device_get_ops(dev); |
| 30 | |
| 31 | if (!ops->get_count) |
| 32 | return -ENOSYS; |
| 33 | |
| 34 | return ops->get_count(dev, count); |
| 35 | } |
| 36 | |
Simon Glass | 4f05182 | 2016-02-24 09:14:48 -0700 | [diff] [blame] | 37 | unsigned long notrace timer_get_rate(struct udevice *dev) |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 38 | { |
Simon Glass | 4f05182 | 2016-02-24 09:14:48 -0700 | [diff] [blame] | 39 | struct timer_dev_priv *uc_priv = dev->uclass_priv; |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 40 | |
| 41 | return uc_priv->clock_rate; |
| 42 | } |
| 43 | |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 44 | static int timer_pre_probe(struct udevice *dev) |
| 45 | { |
Philipp Tomsich | b1a1600 | 2017-07-28 17:19:58 +0200 | [diff] [blame] | 46 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 47 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
Zakharov Vlad | a5acafb | 2016-12-09 17:18:32 +0300 | [diff] [blame] | 48 | struct clk timer_clk; |
| 49 | int err; |
| 50 | ulong ret; |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 51 | |
Bin Meng | 7efb4a6 | 2019-07-05 09:23:15 -0700 | [diff] [blame] | 52 | /* It is possible that a timer device has a null ofnode */ |
| 53 | if (!dev_of_valid(dev)) |
| 54 | return 0; |
| 55 | |
Zakharov Vlad | a5acafb | 2016-12-09 17:18:32 +0300 | [diff] [blame] | 56 | err = clk_get_by_index(dev, 0, &timer_clk); |
| 57 | if (!err) { |
| 58 | ret = clk_get_rate(&timer_clk); |
| 59 | if (IS_ERR_VALUE(ret)) |
| 60 | return ret; |
| 61 | uc_priv->clock_rate = ret; |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 62 | } else { |
| 63 | uc_priv->clock_rate = |
| 64 | dev_read_u32_default(dev, "clock-frequency", 0); |
| 65 | } |
Philipp Tomsich | b1a1600 | 2017-07-28 17:19:58 +0200 | [diff] [blame] | 66 | #endif |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
Stephen Warren | 0a7edce | 2016-01-06 10:33:03 -0700 | [diff] [blame] | 71 | static int timer_post_probe(struct udevice *dev) |
| 72 | { |
| 73 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 74 | |
| 75 | if (!uc_priv->clock_rate) |
| 76 | return -EINVAL; |
| 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
Bin Meng | 9ca07eb | 2015-11-24 13:31:17 -0700 | [diff] [blame] | 81 | u64 timer_conv_64(u32 count) |
| 82 | { |
| 83 | /* increment tbh if tbl has rolled over */ |
| 84 | if (count < gd->timebase_l) |
| 85 | gd->timebase_h++; |
| 86 | gd->timebase_l = count; |
| 87 | return ((u64)gd->timebase_h << 32) | gd->timebase_l; |
| 88 | } |
| 89 | |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 90 | int notrace dm_timer_init(void) |
| 91 | { |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 92 | struct udevice *dev = NULL; |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 93 | __maybe_unused ofnode node; |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 94 | int ret; |
| 95 | |
| 96 | if (gd->timer) |
| 97 | return 0; |
| 98 | |
Philipp Tomsich | af82315 | 2017-09-11 22:04:11 +0200 | [diff] [blame] | 99 | /* |
| 100 | * Directly access gd->dm_root to suppress error messages, if the |
| 101 | * virtual root driver does not yet exist. |
| 102 | */ |
| 103 | if (gd->dm_root == NULL) |
| 104 | return -EAGAIN; |
| 105 | |
Philipp Tomsich | b1a1600 | 2017-07-28 17:19:58 +0200 | [diff] [blame] | 106 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 107 | /* Check for a chosen timer to be used for tick */ |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 108 | node = ofnode_get_chosen_node("tick-timer"); |
| 109 | |
| 110 | if (ofnode_valid(node) && |
| 111 | uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) { |
| 112 | /* |
| 113 | * If the timer is not marked to be bound before |
| 114 | * relocation, bind it anyway. |
| 115 | */ |
Bin Meng | 8d773c4 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 116 | if (!lists_bind_fdt(dm_root(), node, &dev, false)) { |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 117 | ret = device_probe(dev); |
| 118 | if (ret) |
| 119 | return ret; |
| 120 | } |
| 121 | } |
Philipp Tomsich | b1a1600 | 2017-07-28 17:19:58 +0200 | [diff] [blame] | 122 | #endif |
Philipp Tomsich | b61e8b0 | 2017-09-11 22:04:10 +0200 | [diff] [blame] | 123 | |
| 124 | if (!dev) { |
| 125 | /* Fall back to the first available timer */ |
Simon Glass | 3f603cb | 2016-02-11 13:23:26 -0700 | [diff] [blame] | 126 | ret = uclass_first_device_err(UCLASS_TIMER, &dev); |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 127 | if (ret) |
| 128 | return ret; |
Mugunthan V N | c833697 | 2016-01-16 21:33:58 +0530 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | if (dev) { |
| 132 | gd->timer = dev; |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | return -ENODEV; |
| 137 | } |
| 138 | |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 139 | UCLASS_DRIVER(timer) = { |
| 140 | .id = UCLASS_TIMER, |
| 141 | .name = "timer", |
Bin Meng | 579eb5a | 2015-11-13 00:11:15 -0800 | [diff] [blame] | 142 | .pre_probe = timer_pre_probe, |
Mugunthan V N | a5d8011 | 2015-12-24 16:08:06 +0530 | [diff] [blame] | 143 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Stephen Warren | 0a7edce | 2016-01-06 10:33:03 -0700 | [diff] [blame] | 144 | .post_probe = timer_post_probe, |
Thomas Chou | c8a7ba9 | 2015-10-09 13:46:34 +0800 | [diff] [blame] | 145 | .per_device_auto_alloc_size = sizeof(struct timer_dev_priv), |
| 146 | }; |