]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/clocksource/h8300_timer8.c
Merge remote-tracking branch 'h8300/h8300-next'
[karo-tx-linux.git] / drivers / clocksource / h8300_timer8.c
1 /*
2  *  linux/arch/h8300/kernel/cpu/timer/timer8.c
3  *
4  *  Yoshinori Sato <ysato@users.sourcefoge.jp>
5  *
6  *  8bit Timer driver
7  *
8  */
9
10 #include <linux/errno.h>
11 #include <linux/sched.h>
12 #include <linux/kernel.h>
13 #include <linux/interrupt.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/clockchips.h>
18 #include <linux/module.h>
19 #include <linux/clk.h>
20 #include <linux/io.h>
21 #include <linux/of.h>
22
23 #include <asm/irq.h>
24
25 #define _8TCR   0
26 #define _8TCSR  2
27 #define TCORA   4
28 #define TCORB   6
29 #define _8TCNT  8
30
31 #define FLAG_REPROGRAM (1 << 0)
32 #define FLAG_SKIPEVENT (1 << 1)
33 #define FLAG_IRQCONTEXT (1 << 2)
34 #define FLAG_STARTED (1 << 3)
35
36 #define ONESHOT  0
37 #define PERIODIC 1
38
39 #define RELATIVE 0
40 #define ABSOLUTE 1
41
42 struct timer8_priv {
43         struct platform_device *pdev;
44         struct clock_event_device ced;
45         struct irqaction irqaction;
46         unsigned long mapbase;
47         raw_spinlock_t lock;
48         unsigned long flags;
49         unsigned int rate;
50         unsigned int tcora;
51         struct clk *pclk;
52 };
53
54 static unsigned long timer8_get_counter(struct timer8_priv *p)
55 {
56         unsigned long v1, v2, v3;
57         int o1, o2;
58
59         o1 = ctrl_inb(p->mapbase + _8TCSR) & 0x20;
60
61         /* Make sure the timer value is stable. Stolen from acpi_pm.c */
62         do {
63                 o2 = o1;
64                 v1 = ctrl_inw(p->mapbase + _8TCNT);
65                 v2 = ctrl_inw(p->mapbase + _8TCNT);
66                 v3 = ctrl_inw(p->mapbase + _8TCNT);
67                 o1 = ctrl_inb(p->mapbase + _8TCSR) & 0x20;
68         } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
69                           || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
70
71         v2 |= o1 << 10;
72         return v2;
73 }
74
75 static irqreturn_t timer8_interrupt(int irq, void *dev_id)
76 {
77         struct timer8_priv *p = dev_id;
78
79         ctrl_outb(ctrl_inb(p->mapbase + _8TCSR) & ~0x40,
80                   p->mapbase + _8TCSR);
81         p->flags |= FLAG_IRQCONTEXT;
82         ctrl_outw(p->tcora, p->mapbase + TCORA);
83         if (!(p->flags & FLAG_SKIPEVENT)) {
84                 if (clockevent_state_oneshot(&p->ced))
85                         ctrl_outw(0x0000, p->mapbase + _8TCR);
86                 p->ced.event_handler(&p->ced);
87         }
88         p->flags &= ~(FLAG_SKIPEVENT | FLAG_IRQCONTEXT);
89
90         return IRQ_HANDLED;
91 }
92
93 static void timer8_set_next(struct timer8_priv *p, unsigned long delta)
94 {
95         unsigned long flags;
96         unsigned long now;
97
98         raw_spin_lock_irqsave(&p->lock, flags);
99         if (delta >= 0x10000)
100                 dev_warn(&p->pdev->dev, "delta out of range\n");
101         now = timer8_get_counter(p);
102         p->tcora = delta;
103         ctrl_outb(ctrl_inb(p->mapbase + _8TCR) & ~0x40, p->mapbase + _8TCR);
104         if (delta > now)
105                 ctrl_outw(delta, p->mapbase + TCORA);
106         else
107                 ctrl_outw(now + 1, p->mapbase + TCORA);
108         ctrl_outb(ctrl_inb(p->mapbase + _8TCR) | 0x40, p->mapbase + _8TCR);
109
110         raw_spin_unlock_irqrestore(&p->lock, flags);
111 }
112
113 static int timer8_enable(struct timer8_priv *p)
114 {
115         p->rate = clk_get_rate(p->pclk) / 64;
116         ctrl_outw(0xffff, p->mapbase + TCORA);
117         ctrl_outw(0x0000, p->mapbase + _8TCNT);
118         ctrl_outw(0x0c02, p->mapbase + _8TCR);
119
120         return 0;
121 }
122
123 static int timer8_start(struct timer8_priv *p)
124 {
125         int ret = 0;
126         unsigned long flags;
127
128         raw_spin_lock_irqsave(&p->lock, flags);
129
130         if (!(p->flags & FLAG_STARTED))
131                 ret = timer8_enable(p);
132
133         if (ret)
134                 goto out;
135         p->flags |= FLAG_STARTED;
136
137  out:
138         raw_spin_unlock_irqrestore(&p->lock, flags);
139
140         return ret;
141 }
142
143 static void timer8_stop(struct timer8_priv *p)
144 {
145         unsigned long flags;
146
147         raw_spin_lock_irqsave(&p->lock, flags);
148
149         ctrl_outw(0x0000, p->mapbase + _8TCR);
150         ctrl_outw(0x0000, p->mapbase + _8TCNT);
151
152         raw_spin_unlock_irqrestore(&p->lock, flags);
153 }
154
155 static inline struct timer8_priv *ced_to_priv(struct clock_event_device *ced)
156 {
157         return container_of(ced, struct timer8_priv, ced);
158 }
159
160 static void timer8_clock_event_start(struct timer8_priv *p, int periodic)
161 {
162         struct clock_event_device *ced = &p->ced;
163
164         timer8_start(p);
165
166         ced->shift = 32;
167         ced->mult = div_sc(p->rate, NSEC_PER_SEC, ced->shift);
168         ced->max_delta_ns = clockevent_delta2ns(0xffff, ced);
169         ced->min_delta_ns = clockevent_delta2ns(0x0001, ced);
170         timer8_set_next(p, periodic?(p->rate + HZ/2) / HZ:0x10000);
171 }
172
173 static int timer8_clock_event_shutdown(struct clock_event_device *ced)
174 {
175         timer8_stop(ced_to_priv(ced));
176         return 0;
177 }
178
179 static int timer8_clock_event_periodic(struct clock_event_device *ced)
180 {
181         struct timer8_priv *p = ced_to_priv(ced);
182
183         dev_info(&p->pdev->dev, "used for periodic clock events\n");
184         timer8_stop(p);
185         timer8_clock_event_start(p, PERIODIC);
186
187         return 0;
188 }
189
190 static int timer8_clock_event_oneshot(struct clock_event_device *ced)
191 {
192         struct timer8_priv *p = ced_to_priv(ced);
193
194         dev_info(&p->pdev->dev, "used for oneshot clock events\n");
195         timer8_stop(p);
196         timer8_clock_event_start(p, ONESHOT);
197
198         return 0;
199 }
200
201 static int timer8_clock_event_next(unsigned long delta,
202                                    struct clock_event_device *ced)
203 {
204         struct timer8_priv *p = ced_to_priv(ced);
205
206         BUG_ON(!clockevent_state_oneshot(ced));
207         timer8_set_next(p, delta - 1);
208
209         return 0;
210 }
211
212 static int timer8_setup(struct timer8_priv *p,
213                         struct platform_device *pdev)
214 {
215         struct resource *res;
216         int irq;
217         int ret;
218
219         p->pdev = pdev;
220
221         res = platform_get_resource(p->pdev, IORESOURCE_MEM, 0);
222         if (!res) {
223                 dev_err(&p->pdev->dev, "failed to get I/O memory\n");
224                 return -ENXIO;
225         }
226
227         irq = platform_get_irq(p->pdev, 0);
228         if (irq < 0) {
229                 dev_err(&p->pdev->dev, "failed to get irq\n");
230                 return -ENXIO;
231         }
232
233         p->mapbase = res->start;
234
235         p->irqaction.name = dev_name(&p->pdev->dev);
236         p->irqaction.handler = timer8_interrupt;
237         p->irqaction.dev_id = p;
238         p->irqaction.flags = IRQF_TIMER;
239
240         p->pclk = clk_get(&p->pdev->dev, "fck");
241         if (IS_ERR(p->pclk)) {
242                 dev_err(&p->pdev->dev, "can't get clk\n");
243                 return PTR_ERR(p->pclk);
244         }
245
246         p->ced.name = pdev->name;
247         p->ced.features = CLOCK_EVT_FEAT_PERIODIC |
248                 CLOCK_EVT_FEAT_ONESHOT;
249         p->ced.rating = 200;
250         p->ced.cpumask = cpumask_of(0);
251         p->ced.set_next_event = timer8_clock_event_next;
252         p->ced.set_state_shutdown = timer8_clock_event_shutdown;
253         p->ced.set_state_periodic = timer8_clock_event_periodic;
254         p->ced.set_state_oneshot = timer8_clock_event_oneshot;
255
256         ret = setup_irq(irq, &p->irqaction);
257         if (ret < 0) {
258                 dev_err(&p->pdev->dev,
259                         "failed to request irq %d\n", irq);
260                 return ret;
261         }
262         clockevents_register_device(&p->ced);
263         platform_set_drvdata(pdev, p);
264
265         return 0;
266 }
267
268 static int timer8_probe(struct platform_device *pdev)
269 {
270         struct timer8_priv *p = platform_get_drvdata(pdev);
271
272         if (p) {
273                 dev_info(&pdev->dev, "kept as earlytimer\n");
274                 return 0;
275         }
276
277         p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL);
278         if (!p)
279                 return -ENOMEM;
280
281         return timer8_setup(p, pdev);
282 }
283
284 static int timer8_remove(struct platform_device *pdev)
285 {
286         return -EBUSY;
287 }
288
289 static const struct of_device_id timer8_of_table[] __maybe_unused = {
290         { .compatible = "renesas,8bit-timer" },
291         { }
292 };
293
294 MODULE_DEVICE_TABLE(of, timer8_of_table);
295 static struct platform_driver timer8_driver = {
296         .probe          = timer8_probe,
297         .remove         = timer8_remove,
298         .driver         = {
299                 .name   = "h8300-8timer",
300                 .of_match_table = of_match_ptr(timer8_of_table),
301         }
302 };
303
304 static int __init timer8_init(void)
305 {
306         return platform_driver_register(&timer8_driver);
307 }
308
309 static void __exit timer8_exit(void)
310 {
311         platform_driver_unregister(&timer8_driver);
312 }
313
314 subsys_initcall(timer8_init);
315 module_exit(timer8_exit);
316 MODULE_AUTHOR("Yoshinori Sato");
317 MODULE_DESCRIPTION("H8/300 8bit Timer Driver");
318 MODULE_LICENSE("GPL v2");