1 // SPDX-License-Identifier: GPL-2.0+
3 * Renesas RZ/A1 R7S72100 OSTM Timer driver
20 #define OSTM_CTL_D BIT(1)
22 DECLARE_GLOBAL_DATA_PTR;
28 static int ostm_get_count(struct udevice *dev, u64 *count)
30 struct ostm_priv *priv = dev_get_priv(dev);
32 *count = timer_conv_64(readl(priv->regs + OSTM_CNT));
37 static int ostm_probe(struct udevice *dev)
39 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
40 struct ostm_priv *priv = dev_get_priv(dev);
41 #if CONFIG_IS_ENABLED(CLK)
45 ret = clk_get_by_index(dev, 0, &clk);
49 uc_priv->clock_rate = clk_get_rate(&clk);
53 uc_priv->clock_rate = CONFIG_SYS_CLK_FREQ / 2;
56 readb(priv->regs + OSTM_CTL);
57 writeb(OSTM_CTL_D, priv->regs + OSTM_CTL);
59 setbits_8(priv->regs + OSTM_TT, BIT(0));
60 writel(0xffffffff, priv->regs + OSTM_CMP);
61 setbits_8(priv->regs + OSTM_TS, BIT(0));
66 static int ostm_ofdata_to_platdata(struct udevice *dev)
68 struct ostm_priv *priv = dev_get_priv(dev);
70 priv->regs = dev_read_addr(dev);
75 static const struct timer_ops ostm_ops = {
76 .get_count = ostm_get_count,
79 static const struct udevice_id ostm_ids[] = {
80 { .compatible = "renesas,ostm" },
84 U_BOOT_DRIVER(ostm_timer) = {
90 .ofdata_to_platdata = ostm_ofdata_to_platdata,
91 .priv_auto_alloc_size = sizeof(struct ostm_priv),