1 // SPDX-License-Identifier: GPL-2.0+
3 * Renesas RZ/A1 R7S72100 OSTM Timer driver
8 #include <clock_legacy.h>
10 #include <asm/global_data.h>
15 #include <linux/bitops.h>
23 #define OSTM_CTL_D BIT(1)
25 DECLARE_GLOBAL_DATA_PTR;
31 static u64 ostm_get_count(struct udevice *dev)
33 struct ostm_priv *priv = dev_get_priv(dev);
35 return timer_conv_64(readl(priv->regs + OSTM_CNT));
38 static int ostm_probe(struct udevice *dev)
40 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
41 struct ostm_priv *priv = dev_get_priv(dev);
42 #if CONFIG_IS_ENABLED(CLK)
46 ret = clk_get_by_index(dev, 0, &clk);
50 uc_priv->clock_rate = clk_get_rate(&clk);
52 uc_priv->clock_rate = get_board_sys_clk() / 2;
55 readb(priv->regs + OSTM_CTL);
56 writeb(OSTM_CTL_D, priv->regs + OSTM_CTL);
58 setbits_8(priv->regs + OSTM_TT, BIT(0));
59 writel(0xffffffff, priv->regs + OSTM_CMP);
60 setbits_8(priv->regs + OSTM_TS, BIT(0));
65 static int ostm_of_to_plat(struct udevice *dev)
67 struct ostm_priv *priv = dev_get_priv(dev);
69 priv->regs = dev_read_addr(dev);
74 static const struct timer_ops ostm_ops = {
75 .get_count = ostm_get_count,
78 static const struct udevice_id ostm_ids[] = {
79 { .compatible = "renesas,ostm" },
83 U_BOOT_DRIVER(ostm_timer) = {
89 .of_to_plat = ostm_of_to_plat,
90 .priv_auto = sizeof(struct ostm_priv),