1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2018 Xilinx, Inc. (Michal Simek)
11 #include <linux/err.h>
13 #define CNT_CNTRL_RESET BIT(4)
15 struct cadence_ttc_regs {
16 u32 clk_cntrl1; /* 0x0 - Clock Control 1 */
17 u32 clk_cntrl2; /* 0x4 - Clock Control 2 */
18 u32 clk_cntrl3; /* 0x8 - Clock Control 3 */
19 u32 counter_cntrl1; /* 0xC - Counter Control 1 */
20 u32 counter_cntrl2; /* 0x10 - Counter Control 2 */
21 u32 counter_cntrl3; /* 0x14 - Counter Control 3 */
22 u32 counter_val1; /* 0x18 - Counter Control 1 */
23 u32 counter_val2; /* 0x1C - Counter Control 2 */
24 u32 counter_val3; /* 0x20 - Counter Control 3 */
26 u32 interrupt_enable1; /* 0x60 - Interrupt Enable 1 */
27 u32 interrupt_enable2; /* 0x64 - Interrupt Enable 2 */
28 u32 interrupt_enable3; /* 0x68 - Interrupt Enable 3 */
31 struct cadence_ttc_priv {
32 struct cadence_ttc_regs *regs;
35 #if CONFIG_IS_ENABLED(BOOTSTAGE)
36 ulong timer_get_boot_us(void)
43 ret = dm_timer_init();
45 /* The timer is available */
46 rate = timer_get_rate(gd->timer);
47 timer_get_count(gd->timer, &ticks);
52 us = (ticks * 1000) / rate;
57 static int cadence_ttc_get_count(struct udevice *dev, u64 *count)
59 struct cadence_ttc_priv *priv = dev_get_priv(dev);
61 *count = readl(&priv->regs->counter_val1);
66 static int cadence_ttc_probe(struct udevice *dev)
68 struct cadence_ttc_priv *priv = dev_get_priv(dev);
70 /* Disable interrupts for sure */
71 writel(0, &priv->regs->interrupt_enable1);
72 writel(0, &priv->regs->interrupt_enable2);
73 writel(0, &priv->regs->interrupt_enable3);
75 /* Make sure that clocks are configured properly without prescaller */
76 writel(0, &priv->regs->clk_cntrl1);
77 writel(0, &priv->regs->clk_cntrl2);
78 writel(0, &priv->regs->clk_cntrl3);
80 /* Reset and enable this counter */
81 writel(CNT_CNTRL_RESET, &priv->regs->counter_cntrl1);
86 static int cadence_ttc_ofdata_to_platdata(struct udevice *dev)
88 struct cadence_ttc_priv *priv = dev_get_priv(dev);
90 priv->regs = map_physmem(dev_read_addr(dev),
91 sizeof(struct cadence_ttc_regs), MAP_NOCACHE);
92 if (IS_ERR(priv->regs))
93 return PTR_ERR(priv->regs);
98 static const struct timer_ops cadence_ttc_ops = {
99 .get_count = cadence_ttc_get_count,
102 static const struct udevice_id cadence_ttc_ids[] = {
103 { .compatible = "cdns,ttc" },
107 U_BOOT_DRIVER(cadence_ttc) = {
108 .name = "cadence_ttc",
110 .of_match = cadence_ttc_ids,
111 .ofdata_to_platdata = cadence_ttc_ofdata_to_platdata,
112 .priv_auto_alloc_size = sizeof(struct cadence_ttc_priv),
113 .probe = cadence_ttc_probe,
114 .ops = &cadence_ttc_ops,