1 // SPDX-License-Identifier: GPL-2.0-only
6 * Copyright (C) 2013 John Crispin <john@phrozen.org>
9 #include <linux/bits.h>
10 #include <linux/clk.h>
11 #include <linux/device.h>
12 #include <linux/err.h>
13 #include <linux/interrupt.h>
15 #include <linux/mod_devicetable.h>
16 #include <linux/platform_device.h>
17 #include <linux/timer.h>
18 #include <linux/types.h>
20 #include <asm/mach-ralink/ralink_regs.h>
22 #define TIMER_REG_TMRSTAT 0x00
23 #define TIMER_REG_TMR0LOAD 0x10
24 #define TIMER_REG_TMR0CTL 0x18
26 #define TMRSTAT_TMR0INT BIT(0)
28 #define TMR0CTL_ENABLE BIT(7)
29 #define TMR0CTL_MODE_PERIODIC BIT(4)
30 #define TMR0CTL_PRESCALER 1
31 #define TMR0CTL_PRESCALE_VAL (0xf - TMR0CTL_PRESCALER)
32 #define TMR0CTL_PRESCALE_DIV (65536 / BIT(TMR0CTL_PRESCALER))
36 void __iomem
*membase
;
38 unsigned long timer_freq
;
39 unsigned long timer_div
;
42 static inline void rt_timer_w32(struct rt_timer
*rt
, u8 reg
, u32 val
)
44 __raw_writel(val
, rt
->membase
+ reg
);
47 static inline u32
rt_timer_r32(struct rt_timer
*rt
, u8 reg
)
49 return __raw_readl(rt
->membase
+ reg
);
52 static irqreturn_t
rt_timer_irq(int irq
, void *_rt
)
54 struct rt_timer
*rt
= (struct rt_timer
*) _rt
;
56 rt_timer_w32(rt
, TIMER_REG_TMR0LOAD
, rt
->timer_freq
/ rt
->timer_div
);
57 rt_timer_w32(rt
, TIMER_REG_TMRSTAT
, TMRSTAT_TMR0INT
);
63 static int rt_timer_request(struct rt_timer
*rt
)
65 int err
= request_irq(rt
->irq
, rt_timer_irq
, 0,
66 dev_name(rt
->dev
), rt
);
68 dev_err(rt
->dev
, "failed to request irq\n");
70 u32 t
= TMR0CTL_MODE_PERIODIC
| TMR0CTL_PRESCALE_VAL
;
71 rt_timer_w32(rt
, TIMER_REG_TMR0CTL
, t
);
76 static int rt_timer_config(struct rt_timer
*rt
, unsigned long divisor
)
78 if (rt
->timer_freq
< divisor
)
79 rt
->timer_div
= rt
->timer_freq
;
81 rt
->timer_div
= divisor
;
83 rt_timer_w32(rt
, TIMER_REG_TMR0LOAD
, rt
->timer_freq
/ rt
->timer_div
);
88 static int rt_timer_enable(struct rt_timer
*rt
)
92 rt_timer_w32(rt
, TIMER_REG_TMR0LOAD
, rt
->timer_freq
/ rt
->timer_div
);
94 t
= rt_timer_r32(rt
, TIMER_REG_TMR0CTL
);
96 rt_timer_w32(rt
, TIMER_REG_TMR0CTL
, t
);
101 static int rt_timer_probe(struct platform_device
*pdev
)
106 rt
= devm_kzalloc(&pdev
->dev
, sizeof(*rt
), GFP_KERNEL
);
108 dev_err(&pdev
->dev
, "failed to allocate memory\n");
112 rt
->irq
= platform_get_irq(pdev
, 0);
116 rt
->membase
= devm_platform_get_and_ioremap_resource(pdev
, 0, NULL
);
117 if (IS_ERR(rt
->membase
))
118 return PTR_ERR(rt
->membase
);
120 clk
= devm_clk_get(&pdev
->dev
, NULL
);
122 dev_err(&pdev
->dev
, "failed get clock rate\n");
126 rt
->timer_freq
= clk_get_rate(clk
) / TMR0CTL_PRESCALE_DIV
;
130 rt
->dev
= &pdev
->dev
;
131 platform_set_drvdata(pdev
, rt
);
133 rt_timer_request(rt
);
134 rt_timer_config(rt
, 2);
137 dev_info(&pdev
->dev
, "maximum frequency is %luHz\n", rt
->timer_freq
);
142 static const struct of_device_id rt_timer_match
[] = {
143 { .compatible
= "ralink,rt2880-timer" },
147 static struct platform_driver rt_timer_driver
= {
148 .probe
= rt_timer_probe
,
151 .of_match_table
= rt_timer_match
,
152 .suppress_bind_attrs
= true,
155 builtin_platform_driver(rt_timer_driver
);