1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
11 #include <linux/err.h>
14 #include <asm/arch-armv7/globaltimer.h>
16 struct sti_timer_priv {
17 struct globaltimer *global_timer;
20 static int sti_timer_get_count(struct udevice *dev, u64 *count)
22 struct sti_timer_priv *priv = dev_get_priv(dev);
23 struct globaltimer *global_timer = priv->global_timer;
26 u32 old = readl(&global_timer->cnt_h);
29 low = readl(&global_timer->cnt_l);
30 high = readl(&global_timer->cnt_h);
37 *count = (u64)((timer << 32) | low);
42 static int sti_timer_probe(struct udevice *dev)
44 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
45 struct sti_timer_priv *priv = dev_get_priv(dev);
50 /* get arm global timer base address */
51 priv->global_timer = (struct globaltimer *)dev_read_addr_ptr(dev);
52 if (!priv->global_timer)
55 err = clk_get_by_index(dev, 0, &clk);
57 ret = clk_get_rate(&clk);
58 if (IS_ERR_VALUE(ret))
60 uc_priv->clock_rate = ret;
62 uc_priv->clock_rate = CONFIG_SYS_HZ_CLOCK;
66 writel(0x01, &priv->global_timer->ctl);
71 static const struct timer_ops sti_timer_ops = {
72 .get_count = sti_timer_get_count,
75 static const struct udevice_id sti_timer_ids[] = {
76 { .compatible = "arm,cortex-a9-global-timer" },
80 U_BOOT_DRIVER(sti_timer) = {
83 .of_match = sti_timer_ids,
84 .priv_auto_alloc_size = sizeof(struct sti_timer_priv),
85 .probe = sti_timer_probe,
86 .ops = &sti_timer_ops,