blob: d588f0cbcd1863f20b658f2633dec0de7f27ccff [file] [log] [blame]
Michael Wallee9e73d72022-08-17 21:37:51 +02001// SPDX-License-Identifier: GPL-2.0+
2#include <asm/io.h>
3#include <common.h>
Stefan Roesea68f13a2022-09-15 16:20:38 +02004#include <div64.h>
Michael Wallee9e73d72022-08-17 21:37:51 +02005#include <dm/device.h>
6#include <dm/fdtaddr.h>
7#include <timer.h>
8
9#define TIMER_CTRL 0x00
10#define TIMER0_EN BIT(0)
11#define TIMER0_RELOAD_EN BIT(1)
12#define TIMER0_RELOAD 0x10
13#define TIMER0_VAL 0x14
14
Stefan Roese89fd0cc2022-09-15 16:20:37 +020015enum input_clock_type {
16 INPUT_CLOCK_NON_FIXED,
17 INPUT_CLOCK_25MHZ, /* input clock rate is fixed to 25MHz */
18};
19
Michael Wallee9e73d72022-08-17 21:37:51 +020020struct orion_timer_priv {
21 void *base;
22};
23
Stefan Roese89fd0cc2022-09-15 16:20:37 +020024#define MVEBU_TIMER_FIXED_RATE_25MHZ 25000000
25
Stefan Roesea68f13a2022-09-15 16:20:38 +020026static bool early_init_done __section(".data") = false;
27
28/* Common functions for early (boot) and DM based timer */
29static void orion_timer_init(void *base, enum input_clock_type type)
30{
Stefan Roese37bb3962022-09-21 08:26:42 +020031 /* Only init the timer once */
32 if (early_init_done)
33 return;
34 early_init_done = true;
35
Stefan Roesea68f13a2022-09-15 16:20:38 +020036 writel(~0, base + TIMER0_VAL);
37 writel(~0, base + TIMER0_RELOAD);
38
39 if (type == INPUT_CLOCK_25MHZ) {
40 /*
41 * On Armada XP / 38x ..., the 25MHz clock source needs to
42 * be enabled
43 */
44 setbits_le32(base + TIMER_CTRL, BIT(11));
45 }
46
47 /* enable timer */
48 setbits_le32(base + TIMER_CTRL, TIMER0_EN | TIMER0_RELOAD_EN);
49}
50
51static uint64_t orion_timer_get_count(void *base)
52{
53 return timer_conv_64(~readl(base + TIMER0_VAL));
54}
55
56/* Early (e.g. bootstage etc) timer functions */
57static void notrace timer_early_init(void)
58{
Stefan Roesea68f13a2022-09-15 16:20:38 +020059 if (IS_ENABLED(CONFIG_ARCH_MVEBU))
60 orion_timer_init((void *)MVEBU_TIMER_BASE, INPUT_CLOCK_25MHZ);
61 else
62 orion_timer_init((void *)MVEBU_TIMER_BASE, INPUT_CLOCK_NON_FIXED);
63}
64
Stefan Roese89fd0cc2022-09-15 16:20:37 +020065/**
66 * timer_early_get_rate() - Get the timer rate before driver model
67 */
68unsigned long notrace timer_early_get_rate(void)
69{
Stefan Roesea68f13a2022-09-15 16:20:38 +020070 timer_early_init();
71
72 if (IS_ENABLED(CONFIG_ARCH_MVEBU))
73 return MVEBU_TIMER_FIXED_RATE_25MHZ;
74 else
Tom Rini65cc0e22022-11-16 13:10:41 -050075 return CFG_SYS_TCLK;
Stefan Roese89fd0cc2022-09-15 16:20:37 +020076}
77
78/**
79 * timer_early_get_count() - Get the timer count before driver model
80 *
81 */
82u64 notrace timer_early_get_count(void)
83{
Stefan Roesea68f13a2022-09-15 16:20:38 +020084 timer_early_init();
85
86 return orion_timer_get_count((void *)MVEBU_TIMER_BASE);
Stefan Roese89fd0cc2022-09-15 16:20:37 +020087}
88
Stefan Roesea68f13a2022-09-15 16:20:38 +020089ulong timer_get_boot_us(void)
90{
91 u64 ticks;
92
93 ticks = timer_early_get_count();
94 return lldiv(ticks * 1000, timer_early_get_rate());
95}
96
97/* DM timer functions */
98static uint64_t dm_orion_timer_get_count(struct udevice *dev)
Michael Wallee9e73d72022-08-17 21:37:51 +020099{
100 struct orion_timer_priv *priv = dev_get_priv(dev);
101
Stefan Roesea68f13a2022-09-15 16:20:38 +0200102 return orion_timer_get_count(priv->base);
Michael Wallee9e73d72022-08-17 21:37:51 +0200103}
104
105static int orion_timer_probe(struct udevice *dev)
106{
107 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Stefan Roese89fd0cc2022-09-15 16:20:37 +0200108 enum input_clock_type type = dev_get_driver_data(dev);
Michael Wallee9e73d72022-08-17 21:37:51 +0200109 struct orion_timer_priv *priv = dev_get_priv(dev);
110
111 priv->base = devfdt_remap_addr_index(dev, 0);
112 if (!priv->base) {
113 debug("unable to map registers\n");
114 return -ENOMEM;
115 }
116
Stefan Roesea68f13a2022-09-15 16:20:38 +0200117 if (type == INPUT_CLOCK_25MHZ)
Stefan Roese89fd0cc2022-09-15 16:20:37 +0200118 uc_priv->clock_rate = MVEBU_TIMER_FIXED_RATE_25MHZ;
Stefan Roesea68f13a2022-09-15 16:20:38 +0200119 else
Tom Rini65cc0e22022-11-16 13:10:41 -0500120 uc_priv->clock_rate = CFG_SYS_TCLK;
Stefan Roesea68f13a2022-09-15 16:20:38 +0200121 orion_timer_init(priv->base, type);
Michael Wallee9e73d72022-08-17 21:37:51 +0200122
123 return 0;
124}
125
126static const struct timer_ops orion_timer_ops = {
Stefan Roesea68f13a2022-09-15 16:20:38 +0200127 .get_count = dm_orion_timer_get_count,
Michael Wallee9e73d72022-08-17 21:37:51 +0200128};
129
130static const struct udevice_id orion_timer_ids[] = {
Stefan Roese89fd0cc2022-09-15 16:20:37 +0200131 { .compatible = "marvell,orion-timer", .data = INPUT_CLOCK_NON_FIXED },
132 { .compatible = "marvell,armada-370-timer", .data = INPUT_CLOCK_25MHZ },
133 { .compatible = "marvell,armada-xp-timer", .data = INPUT_CLOCK_25MHZ },
Michael Wallee9e73d72022-08-17 21:37:51 +0200134 {}
135};
136
137U_BOOT_DRIVER(orion_timer) = {
138 .name = "orion_timer",
139 .id = UCLASS_TIMER,
140 .of_match = orion_timer_ids,
141 .probe = orion_timer_probe,
142 .ops = &orion_timer_ops,
143 .priv_auto = sizeof(struct orion_timer_priv),
144};