blob: b14a8da90eccb73bb8a2a6d3679146edc95c7669 [file] [log] [blame]
Yoshinori Sato618b9022015-01-28 02:52:42 +09001/*
2 * H8/300 16bit Timer driver
3 *
4 * Copyright 2015 Yoshinori Sato <ysato@users.sourcefoge.jp>
5 */
6
Yoshinori Sato618b9022015-01-28 02:52:42 +09007#include <linux/interrupt.h>
8#include <linux/init.h>
Yoshinori Sato618b9022015-01-28 02:52:42 +09009#include <linux/clocksource.h>
Yoshinori Sato618b9022015-01-28 02:52:42 +090010#include <linux/clk.h>
11#include <linux/io.h>
12#include <linux/of.h>
Yoshinori Sato4633f4c2015-11-07 01:31:44 +090013#include <linux/of_address.h>
14#include <linux/of_irq.h>
Yoshinori Sato618b9022015-01-28 02:52:42 +090015
Yoshinori Sato618b9022015-01-28 02:52:42 +090016#define TSTR 0
Yoshinori Sato618b9022015-01-28 02:52:42 +090017#define TISRC 6
18
19#define TCR 0
Yoshinori Sato618b9022015-01-28 02:52:42 +090020#define TCNT 2
Yoshinori Sato618b9022015-01-28 02:52:42 +090021
22struct timer16_priv {
Yoshinori Sato618b9022015-01-28 02:52:42 +090023 struct clocksource cs;
Yoshinori Sato618b9022015-01-28 02:52:42 +090024 unsigned long total_cycles;
Daniel Lezcano75160512015-11-08 22:55:12 +010025 void __iomem *mapbase;
26 void __iomem *mapcommon;
Yoshinori Sato618b9022015-01-28 02:52:42 +090027 unsigned short cs_enabled;
28 unsigned char enb;
Yoshinori Sato618b9022015-01-28 02:52:42 +090029 unsigned char ovf;
Yoshinori Sato2a0ff872015-12-05 02:48:14 +090030 unsigned char ovie;
Yoshinori Sato618b9022015-01-28 02:52:42 +090031 struct clk *clk;
32};
33
34static unsigned long timer16_get_counter(struct timer16_priv *p)
35{
36 unsigned long v1, v2, v3;
37 int o1, o2;
38
Daniel Lezcano75160512015-11-08 22:55:12 +010039 o1 = readb(p->mapcommon + TISRC) & p->ovf;
Yoshinori Sato618b9022015-01-28 02:52:42 +090040
41 /* Make sure the timer value is stable. Stolen from acpi_pm.c */
42 do {
43 o2 = o1;
Daniel Lezcano75160512015-11-08 22:55:12 +010044 v1 = readw(p->mapbase + TCNT);
45 v2 = readw(p->mapbase + TCNT);
46 v3 = readw(p->mapbase + TCNT);
47 o1 = readb(p->mapcommon + TISRC) & p->ovf;
Yoshinori Sato618b9022015-01-28 02:52:42 +090048 } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
49 || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
50
51 v2 |= 0x10000;
52 return v2;
53}
54
55
56static irqreturn_t timer16_interrupt(int irq, void *dev_id)
57{
58 struct timer16_priv *p = (struct timer16_priv *)dev_id;
59
Yoshinori Sato2a0ff872015-12-05 02:48:14 +090060 writeb(readb(p->mapcommon + TISRC) & ~p->ovf,
61 p->mapcommon + TISRC);
Yoshinori Sato618b9022015-01-28 02:52:42 +090062 p->total_cycles += 0x10000;
63
64 return IRQ_HANDLED;
65}
66
67static inline struct timer16_priv *cs_to_priv(struct clocksource *cs)
68{
69 return container_of(cs, struct timer16_priv, cs);
70}
71
72static cycle_t timer16_clocksource_read(struct clocksource *cs)
73{
74 struct timer16_priv *p = cs_to_priv(cs);
Daniel Lezcano05de7ed2015-11-09 10:55:30 +010075 unsigned long raw, value;
Yoshinori Sato618b9022015-01-28 02:52:42 +090076
Yoshinori Sato618b9022015-01-28 02:52:42 +090077 value = p->total_cycles;
78 raw = timer16_get_counter(p);
Yoshinori Sato618b9022015-01-28 02:52:42 +090079
80 return value + raw;
81}
82
83static int timer16_enable(struct clocksource *cs)
84{
85 struct timer16_priv *p = cs_to_priv(cs);
86
87 WARN_ON(p->cs_enabled);
88
89 p->total_cycles = 0;
Daniel Lezcano75160512015-11-08 22:55:12 +010090 writew(0x0000, p->mapbase + TCNT);
91 writeb(0x83, p->mapbase + TCR);
92 writeb(readb(p->mapcommon + TSTR) | p->enb,
Yoshinori Sato618b9022015-01-28 02:52:42 +090093 p->mapcommon + TSTR);
Yoshinori Sato2a0ff872015-12-05 02:48:14 +090094 writeb(readb(p->mapcommon + TISRC) | p->ovie,
95 p->mapcommon + TSTR);
Yoshinori Sato618b9022015-01-28 02:52:42 +090096
97 p->cs_enabled = true;
98 return 0;
99}
100
101static void timer16_disable(struct clocksource *cs)
102{
103 struct timer16_priv *p = cs_to_priv(cs);
104
105 WARN_ON(!p->cs_enabled);
106
Daniel Lezcano75160512015-11-08 22:55:12 +0100107 writeb(readb(p->mapcommon + TSTR) & ~p->enb,
Yoshinori Sato618b9022015-01-28 02:52:42 +0900108 p->mapcommon + TSTR);
109
110 p->cs_enabled = false;
111}
112
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900113static struct timer16_priv timer16_priv = {
114 .cs = {
115 .name = "h8300_16timer",
116 .rating = 200,
117 .read = timer16_clocksource_read,
118 .enable = timer16_enable,
119 .disable = timer16_disable,
120 .mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8),
121 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
122 },
123};
124
Yoshinori Sato618b9022015-01-28 02:52:42 +0900125#define REG_CH 0
126#define REG_COMM 1
127
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900128static void __init h8300_16timer_init(struct device_node *node)
Yoshinori Sato618b9022015-01-28 02:52:42 +0900129{
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900130 void __iomem *base[2];
Yoshinori Sato618b9022015-01-28 02:52:42 +0900131 int ret, irq;
132 unsigned int ch;
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900133 struct clk *clk;
Yoshinori Sato618b9022015-01-28 02:52:42 +0900134
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900135 clk = of_clk_get(node, 0);
136 if (IS_ERR(clk)) {
137 pr_err("failed to get clock for clocksource\n");
138 return;
Yoshinori Sato618b9022015-01-28 02:52:42 +0900139 }
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900140
141 base[REG_CH] = of_iomap(node, 0);
142 if (!base[REG_CH]) {
143 pr_err("failed to map registers for clocksource\n");
144 goto free_clk;
145 }
146
147 base[REG_COMM] = of_iomap(node, 1);
148 if (!base[REG_COMM]) {
149 pr_err("failed to map registers for clocksource\n");
150 goto unmap_ch;
151 }
152
153 irq = irq_of_parse_and_map(node, 0);
Daniel Lezcano5019c902015-11-09 10:52:35 +0100154 if (!irq) {
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900155 pr_err("failed to get irq for clockevent\n");
156 goto unmap_comm;
Yoshinori Sato618b9022015-01-28 02:52:42 +0900157 }
158
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900159 of_property_read_u32(node, "renesas,channel", &ch);
Yoshinori Sato618b9022015-01-28 02:52:42 +0900160
Daniel Lezcano75160512015-11-08 22:55:12 +0100161 timer16_priv.mapbase = base[REG_CH];
162 timer16_priv.mapcommon = base[REG_COMM];
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900163 timer16_priv.enb = 1 << ch;
Yoshinori Sato2a0ff872015-12-05 02:48:14 +0900164 timer16_priv.ovf = 1 << ch;
165 timer16_priv.ovie = 1 << (4 + ch);
Yoshinori Sato618b9022015-01-28 02:52:42 +0900166
167 ret = request_irq(irq, timer16_interrupt,
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900168 IRQF_TIMER, timer16_priv.cs.name, &timer16_priv);
Yoshinori Sato618b9022015-01-28 02:52:42 +0900169 if (ret < 0) {
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900170 pr_err("failed to request irq %d of clocksource\n", irq);
171 goto unmap_comm;
Yoshinori Sato618b9022015-01-28 02:52:42 +0900172 }
173
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900174 clocksource_register_hz(&timer16_priv.cs,
175 clk_get_rate(timer16_priv.clk) / 8);
176 return;
Yoshinori Sato618b9022015-01-28 02:52:42 +0900177
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900178unmap_comm:
179 iounmap(base[REG_COMM]);
180unmap_ch:
181 iounmap(base[REG_CH]);
182free_clk:
183 clk_put(clk);
Yoshinori Sato618b9022015-01-28 02:52:42 +0900184}
185
Yoshinori Sato4633f4c2015-11-07 01:31:44 +0900186CLOCKSOURCE_OF_DECLARE(h8300_16bit, "renesas,16bit-timer", h8300_16timer_init);