blob: d4674e78ef351de777d2d04751f008c6e205f7c9 [file] [log] [blame]
Maxime Ripardb2ac5d72012-11-12 15:07:50 +01001/*
2 * Allwinner A1X SoCs timer handling.
3 *
4 * Copyright (C) 2012 Maxime Ripard
5 *
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 *
8 * Based on code from
9 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
10 * Benn Huang <benn@allwinnertech.com>
11 *
12 * This file is licensed under the terms of the GNU General Public
13 * License version 2. This program is licensed "as is" without any
14 * warranty of any kind, whether express or implied.
15 */
16
17#include <linux/clk.h>
18#include <linux/clockchips.h>
19#include <linux/interrupt.h>
20#include <linux/irq.h>
21#include <linux/irqreturn.h>
22#include <linux/of.h>
23#include <linux/of_address.h>
24#include <linux/of_irq.h>
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010025
Maxime Ripard04981732013-03-10 17:03:46 +010026#define TIMER_IRQ_EN_REG 0x00
27#define TIMER_IRQ_EN(val) (1 << val)
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010028#define TIMER_IRQ_ST_REG 0x04
Maxime Ripard04981732013-03-10 17:03:46 +010029#define TIMER_CTL_REG(val) (0x10 * val + 0x10)
30#define TIMER_CTL_ENABLE (1 << 0)
31#define TIMER_CTL_AUTORELOAD (1 << 1)
32#define TIMER_CTL_ONESHOT (1 << 7)
33#define TIMER_INTVAL_REG(val) (0x10 * val + 0x14)
34#define TIMER_CNTVAL_REG(val) (0x10 * val + 0x18)
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010035
36#define TIMER_SCAL 16
37
38static void __iomem *timer_base;
39
Maxime Ripard119fd632013-03-24 11:49:25 +010040static void sun4i_clkevt_mode(enum clock_event_mode mode,
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010041 struct clock_event_device *clk)
42{
Maxime Ripard04981732013-03-10 17:03:46 +010043 u32 u = readl(timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010044
45 switch (mode) {
46 case CLOCK_EVT_MODE_PERIODIC:
Maxime Ripard04981732013-03-10 17:03:46 +010047 u &= ~(TIMER_CTL_ONESHOT);
48 writel(u | TIMER_CTL_ENABLE, timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010049 break;
50
51 case CLOCK_EVT_MODE_ONESHOT:
Maxime Ripard04981732013-03-10 17:03:46 +010052 writel(u | TIMER_CTL_ONESHOT, timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010053 break;
54 case CLOCK_EVT_MODE_UNUSED:
55 case CLOCK_EVT_MODE_SHUTDOWN:
56 default:
Maxime Ripard04981732013-03-10 17:03:46 +010057 writel(u & ~(TIMER_CTL_ENABLE), timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010058 break;
59 }
60}
61
Maxime Ripard119fd632013-03-24 11:49:25 +010062static int sun4i_clkevt_next_event(unsigned long evt,
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010063 struct clock_event_device *unused)
64{
Maxime Ripard04981732013-03-10 17:03:46 +010065 u32 u = readl(timer_base + TIMER_CTL_REG(0));
66 writel(evt, timer_base + TIMER_CNTVAL_REG(0));
67 writel(u | TIMER_CTL_ENABLE | TIMER_CTL_AUTORELOAD,
68 timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010069
70 return 0;
71}
72
Maxime Ripard119fd632013-03-24 11:49:25 +010073static struct clock_event_device sun4i_clockevent = {
74 .name = "sun4i_tick",
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010075 .rating = 300,
76 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
Maxime Ripard119fd632013-03-24 11:49:25 +010077 .set_mode = sun4i_clkevt_mode,
78 .set_next_event = sun4i_clkevt_next_event,
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010079};
80
81
Maxime Ripard119fd632013-03-24 11:49:25 +010082static irqreturn_t sun4i_timer_interrupt(int irq, void *dev_id)
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010083{
84 struct clock_event_device *evt = (struct clock_event_device *)dev_id;
85
86 writel(0x1, timer_base + TIMER_IRQ_ST_REG);
87 evt->event_handler(evt);
88
89 return IRQ_HANDLED;
90}
91
Maxime Ripard119fd632013-03-24 11:49:25 +010092static struct irqaction sun4i_timer_irq = {
93 .name = "sun4i_timer0",
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010094 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Maxime Ripard119fd632013-03-24 11:49:25 +010095 .handler = sun4i_timer_interrupt,
96 .dev_id = &sun4i_clockevent,
Maxime Ripardb2ac5d72012-11-12 15:07:50 +010097};
98
Maxime Ripard119fd632013-03-24 11:49:25 +010099static void __init sun4i_timer_init(struct device_node *node)
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100100{
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100101 unsigned long rate = 0;
102 struct clk *clk;
103 int ret, irq;
104 u32 val;
105
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100106 timer_base = of_iomap(node, 0);
107 if (!timer_base)
108 panic("Can't map registers");
109
110 irq = irq_of_parse_and_map(node, 0);
111 if (irq <= 0)
112 panic("Can't parse IRQ");
113
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100114 clk = of_clk_get(node, 0);
115 if (IS_ERR(clk))
116 panic("Can't get timer clock");
117
118 rate = clk_get_rate(clk);
119
120 writel(rate / (TIMER_SCAL * HZ),
Maxime Ripard04981732013-03-10 17:03:46 +0100121 timer_base + TIMER_INTVAL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100122
123 /* set clock source to HOSC, 16 pre-division */
Maxime Ripard04981732013-03-10 17:03:46 +0100124 val = readl(timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100125 val &= ~(0x07 << 4);
126 val &= ~(0x03 << 2);
127 val |= (4 << 4) | (1 << 2);
Maxime Ripard04981732013-03-10 17:03:46 +0100128 writel(val, timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100129
130 /* set mode to auto reload */
Maxime Ripard04981732013-03-10 17:03:46 +0100131 val = readl(timer_base + TIMER_CTL_REG(0));
132 writel(val | TIMER_CTL_AUTORELOAD, timer_base + TIMER_CTL_REG(0));
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100133
Maxime Ripard119fd632013-03-24 11:49:25 +0100134 ret = setup_irq(irq, &sun4i_timer_irq);
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100135 if (ret)
136 pr_warn("failed to setup irq %d\n", irq);
137
138 /* Enable timer0 interrupt */
Maxime Ripard04981732013-03-10 17:03:46 +0100139 val = readl(timer_base + TIMER_IRQ_EN_REG);
140 writel(val | TIMER_IRQ_EN(0), timer_base + TIMER_IRQ_EN_REG);
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100141
Maxime Ripard119fd632013-03-24 11:49:25 +0100142 sun4i_clockevent.cpumask = cpumask_of(0);
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100143
Maxime Ripard119fd632013-03-24 11:49:25 +0100144 clockevents_config_and_register(&sun4i_clockevent, rate / TIMER_SCAL,
Shawn Guo77cc9822013-01-12 11:50:06 +0000145 0x1, 0xff);
Maxime Ripardb2ac5d72012-11-12 15:07:50 +0100146}
Maxime Ripard119fd632013-03-24 11:49:25 +0100147CLOCKSOURCE_OF_DECLARE(sun4i, "allwinner,sun4i-timer",
148 sun4i_timer_init);