2 * Copyright (C) 2013-2014 Altera Corporation
3 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch>
4 * Copyright (C) 2004 Microtronix Datacom Ltd.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 #include <linux/interrupt.h>
12 #include <linux/clockchips.h>
13 #include <linux/clocksource.h>
14 #include <linux/delay.h>
16 #include <linux/of_address.h>
17 #include <linux/of_irq.h>
19 #include <linux/slab.h>
21 #define ALTERA_TIMER_STATUS_REG 0
22 #define ALTERA_TIMER_CONTROL_REG 4
23 #define ALTERA_TIMER_PERIODL_REG 8
24 #define ALTERA_TIMER_PERIODH_REG 12
25 #define ALTERA_TIMER_SNAPL_REG 16
26 #define ALTERA_TIMER_SNAPH_REG 20
28 #define ALTERA_TIMER_CONTROL_ITO_MSK (0x1)
29 #define ALTERA_TIMER_CONTROL_CONT_MSK (0x2)
30 #define ALTERA_TIMER_CONTROL_START_MSK (0x4)
31 #define ALTERA_TIMER_CONTROL_STOP_MSK (0x8)
38 struct nios2_clockevent_dev
{
39 struct nios2_timer timer
;
40 struct clock_event_device ced
;
43 struct nios2_clocksource
{
44 struct nios2_timer timer
;
45 struct clocksource cs
;
48 static inline struct nios2_clockevent_dev
*
49 to_nios2_clkevent(struct clock_event_device
*evt
)
51 return container_of(evt
, struct nios2_clockevent_dev
, ced
);
54 static inline struct nios2_clocksource
*
55 to_nios2_clksource(struct clocksource
*cs
)
57 return container_of(cs
, struct nios2_clocksource
, cs
);
60 static u16
timer_readw(struct nios2_timer
*timer
, u32 offs
)
62 return readw(timer
->base
+ offs
);
65 static void timer_writew(struct nios2_timer
*timer
, u16 val
, u32 offs
)
67 writew(val
, timer
->base
+ offs
);
70 static inline unsigned long read_timersnapshot(struct nios2_timer
*timer
)
74 timer_writew(timer
, 0, ALTERA_TIMER_SNAPL_REG
);
75 count
= timer_readw(timer
, ALTERA_TIMER_SNAPH_REG
) << 16 |
76 timer_readw(timer
, ALTERA_TIMER_SNAPL_REG
);
81 static cycle_t
nios2_timer_read(struct clocksource
*cs
)
83 struct nios2_clocksource
*nios2_cs
= to_nios2_clksource(cs
);
87 local_irq_save(flags
);
88 count
= read_timersnapshot(&nios2_cs
->timer
);
89 local_irq_restore(flags
);
91 /* Counter is counting down */
95 static struct nios2_clocksource nios2_cs
= {
97 .name
= "nios2-clksrc",
99 .read
= nios2_timer_read
,
100 .mask
= CLOCKSOURCE_MASK(32),
101 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
105 cycles_t
get_cycles(void)
107 return nios2_timer_read(&nios2_cs
.cs
);
110 static void nios2_timer_start(struct nios2_timer
*timer
)
114 ctrl
= timer_readw(timer
, ALTERA_TIMER_CONTROL_REG
);
115 ctrl
|= ALTERA_TIMER_CONTROL_START_MSK
;
116 timer_writew(timer
, ctrl
, ALTERA_TIMER_CONTROL_REG
);
119 static void nios2_timer_stop(struct nios2_timer
*timer
)
123 ctrl
= timer_readw(timer
, ALTERA_TIMER_CONTROL_REG
);
124 ctrl
|= ALTERA_TIMER_CONTROL_STOP_MSK
;
125 timer_writew(timer
, ctrl
, ALTERA_TIMER_CONTROL_REG
);
128 static void nios2_timer_config(struct nios2_timer
*timer
, unsigned long period
,
129 enum clock_event_mode mode
)
133 /* The timer's actual period is one cycle greater than the value
134 * stored in the period register. */
137 ctrl
= timer_readw(timer
, ALTERA_TIMER_CONTROL_REG
);
139 timer_writew(timer
, ctrl
| ALTERA_TIMER_CONTROL_STOP_MSK
,
140 ALTERA_TIMER_CONTROL_REG
);
142 /* write new count */
143 timer_writew(timer
, period
, ALTERA_TIMER_PERIODL_REG
);
144 timer_writew(timer
, period
>> 16, ALTERA_TIMER_PERIODH_REG
);
146 ctrl
|= ALTERA_TIMER_CONTROL_START_MSK
| ALTERA_TIMER_CONTROL_ITO_MSK
;
147 if (mode
== CLOCK_EVT_MODE_PERIODIC
)
148 ctrl
|= ALTERA_TIMER_CONTROL_CONT_MSK
;
150 ctrl
&= ~ALTERA_TIMER_CONTROL_CONT_MSK
;
151 timer_writew(timer
, ctrl
, ALTERA_TIMER_CONTROL_REG
);
154 static int nios2_timer_set_next_event(unsigned long delta
,
155 struct clock_event_device
*evt
)
157 struct nios2_clockevent_dev
*nios2_ced
= to_nios2_clkevent(evt
);
159 nios2_timer_config(&nios2_ced
->timer
, delta
, evt
->mode
);
164 static void nios2_timer_set_mode(enum clock_event_mode mode
,
165 struct clock_event_device
*evt
)
167 unsigned long period
;
168 struct nios2_clockevent_dev
*nios2_ced
= to_nios2_clkevent(evt
);
169 struct nios2_timer
*timer
= &nios2_ced
->timer
;
172 case CLOCK_EVT_MODE_PERIODIC
:
173 period
= DIV_ROUND_UP(timer
->freq
, HZ
);
174 nios2_timer_config(timer
, period
, CLOCK_EVT_MODE_PERIODIC
);
176 case CLOCK_EVT_MODE_ONESHOT
:
177 case CLOCK_EVT_MODE_UNUSED
:
178 case CLOCK_EVT_MODE_SHUTDOWN
:
179 nios2_timer_stop(timer
);
181 case CLOCK_EVT_MODE_RESUME
:
182 nios2_timer_start(timer
);
187 irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
189 struct clock_event_device
*evt
= (struct clock_event_device
*) dev_id
;
190 struct nios2_clockevent_dev
*nios2_ced
= to_nios2_clkevent(evt
);
192 /* Clear the interrupt condition */
193 timer_writew(&nios2_ced
->timer
, 0, ALTERA_TIMER_STATUS_REG
);
194 evt
->event_handler(evt
);
199 static void __init
nios2_timer_get_base_and_freq(struct device_node
*np
,
200 void __iomem
**base
, u32
*freq
)
202 *base
= of_iomap(np
, 0);
204 panic("Unable to map reg for %s\n", np
->name
);
206 if (of_property_read_u32(np
, "clock-frequency", freq
))
207 panic("Unable to get %s clock frequency\n", np
->name
);
210 static struct nios2_clockevent_dev nios2_ce
= {
212 .name
= "nios2-clkevent",
213 .features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
,
216 .set_next_event
= nios2_timer_set_next_event
,
217 .set_mode
= nios2_timer_set_mode
,
221 static __init
void nios2_clockevent_init(struct device_node
*timer
)
223 void __iomem
*iobase
;
227 nios2_timer_get_base_and_freq(timer
, &iobase
, &freq
);
229 irq
= irq_of_parse_and_map(timer
, 0);
231 panic("Unable to parse timer irq\n");
233 nios2_ce
.timer
.base
= iobase
;
234 nios2_ce
.timer
.freq
= freq
;
236 nios2_ce
.ced
.cpumask
= cpumask_of(0);
237 nios2_ce
.ced
.irq
= irq
;
239 nios2_timer_stop(&nios2_ce
.timer
);
240 /* clear pending interrupt */
241 timer_writew(&nios2_ce
.timer
, 0, ALTERA_TIMER_STATUS_REG
);
243 if (request_irq(irq
, timer_interrupt
, IRQF_TIMER
, timer
->name
,
245 panic("Unable to setup timer irq\n");
247 clockevents_config_and_register(&nios2_ce
.ced
, freq
, 1, ULONG_MAX
);
250 static __init
void nios2_clocksource_init(struct device_node
*timer
)
253 void __iomem
*iobase
;
256 nios2_timer_get_base_and_freq(timer
, &iobase
, &freq
);
258 nios2_cs
.timer
.base
= iobase
;
259 nios2_cs
.timer
.freq
= freq
;
261 clocksource_register_hz(&nios2_cs
.cs
, freq
);
263 timer_writew(&nios2_cs
.timer
, USHRT_MAX
, ALTERA_TIMER_PERIODL_REG
);
264 timer_writew(&nios2_cs
.timer
, USHRT_MAX
, ALTERA_TIMER_PERIODH_REG
);
266 /* interrupt disable + continuous + start */
267 ctrl
= ALTERA_TIMER_CONTROL_CONT_MSK
| ALTERA_TIMER_CONTROL_START_MSK
;
268 timer_writew(&nios2_cs
.timer
, ctrl
, ALTERA_TIMER_CONTROL_REG
);
270 /* Calibrate the delay loop directly */
271 lpj_fine
= freq
/ HZ
;
275 * The first timer instance will use as a clockevent. If there are two or
276 * more instances, the second one gets used as clocksource and all
279 static void __init
nios2_time_init(struct device_node
*timer
)
281 static int num_called
;
283 switch (num_called
) {
285 nios2_clockevent_init(timer
);
288 nios2_clocksource_init(timer
);
297 void read_persistent_clock(struct timespec
*ts
)
299 ts
->tv_sec
= mktime(2007, 1, 1, 0, 0, 0);
303 void __init
time_init(void)
305 clocksource_of_init();
308 CLOCKSOURCE_OF_DECLARE(nios2_timer
, "altr,timer-1.0", nios2_time_init
);