blob: 537eefdf838fec40cc0a947008c01ea0084ca0b3 [file] [log] [blame]
Atsushi Nemoto229f7732007-10-25 01:34:09 +09001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Based on linux/arch/mips/kernel/cevt-r4k.c,
Ralf Baechle70342282013-01-22 12:59:30 +01007 * linux/arch/mips/jmr3927/rbhma3100/setup.c
Atsushi Nemoto229f7732007-10-25 01:34:09 +09008 *
9 * Copyright 2001 MontaVista Software Inc.
10 * Copyright (C) 2000-2001 Toshiba Corporation
11 * Copyright (C) 2007 MIPS Technologies, Inc.
12 * Copyright (C) 2007 Ralf Baechle <ralf@linux-mips.org>
13 */
14#include <linux/init.h>
15#include <linux/interrupt.h>
David Howellsca4d3e672010-10-07 14:08:54 +010016#include <linux/irq.h>
Deng-Cheng Zhua6071af2015-03-07 10:30:30 -080017#include <linux/sched_clock.h>
Atsushi Nemoto229f7732007-10-25 01:34:09 +090018#include <asm/time.h>
19#include <asm/txx9tmr.h>
20
21#define TCR_BASE (TXx9_TMTCR_CCDE | TXx9_TMTCR_CRE | TXx9_TMTCR_TMODE_ITVL)
22#define TIMER_CCD 0 /* 1/2 */
23#define TIMER_CLK(imclk) ((imclk) / (2 << TIMER_CCD))
24
Atsushi Nemotoa43da032009-04-24 00:10:36 +090025struct txx9_clocksource {
26 struct clocksource cs;
27 struct txx9_tmr_reg __iomem *tmrptr;
28};
Atsushi Nemoto229f7732007-10-25 01:34:09 +090029
Magnus Damm8e196082009-04-21 12:24:00 -070030static cycle_t txx9_cs_read(struct clocksource *cs)
Atsushi Nemoto229f7732007-10-25 01:34:09 +090031{
Atsushi Nemotoa43da032009-04-24 00:10:36 +090032 struct txx9_clocksource *txx9_cs =
33 container_of(cs, struct txx9_clocksource, cs);
34 return __raw_readl(&txx9_cs->tmrptr->trr);
Atsushi Nemoto229f7732007-10-25 01:34:09 +090035}
36
37/* Use 1 bit smaller width to use full bits in that width */
38#define TXX9_CLOCKSOURCE_BITS (TXX9_TIMER_BITS - 1)
39
Atsushi Nemotoa43da032009-04-24 00:10:36 +090040static struct txx9_clocksource txx9_clocksource = {
41 .cs = {
42 .name = "TXx9",
43 .rating = 200,
44 .read = txx9_cs_read,
45 .mask = CLOCKSOURCE_MASK(TXX9_CLOCKSOURCE_BITS),
46 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
47 },
Atsushi Nemoto229f7732007-10-25 01:34:09 +090048};
49
Deng-Cheng Zhua6071af2015-03-07 10:30:30 -080050static u64 notrace txx9_read_sched_clock(void)
51{
52 return __raw_readl(&txx9_clocksource.tmrptr->trr);
53}
54
Atsushi Nemoto229f7732007-10-25 01:34:09 +090055void __init txx9_clocksource_init(unsigned long baseaddr,
56 unsigned int imbusclk)
57{
58 struct txx9_tmr_reg __iomem *tmrptr;
59
John Stultz75c4fd82010-04-26 20:23:11 -070060 clocksource_register_hz(&txx9_clocksource.cs, TIMER_CLK(imbusclk));
Atsushi Nemoto229f7732007-10-25 01:34:09 +090061
62 tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
63 __raw_writel(TCR_BASE, &tmrptr->tcr);
64 __raw_writel(0, &tmrptr->tisr);
65 __raw_writel(TIMER_CCD, &tmrptr->ccdr);
66 __raw_writel(TXx9_TMITMR_TZCE, &tmrptr->itmr);
67 __raw_writel(1 << TXX9_CLOCKSOURCE_BITS, &tmrptr->cpra);
68 __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
Atsushi Nemotoa43da032009-04-24 00:10:36 +090069 txx9_clocksource.tmrptr = tmrptr;
Deng-Cheng Zhua6071af2015-03-07 10:30:30 -080070
71 sched_clock_register(txx9_read_sched_clock, TXX9_CLOCKSOURCE_BITS,
72 TIMER_CLK(imbusclk));
Atsushi Nemoto229f7732007-10-25 01:34:09 +090073}
74
Atsushi Nemotoa43da032009-04-24 00:10:36 +090075struct txx9_clock_event_device {
76 struct clock_event_device cd;
77 struct txx9_tmr_reg __iomem *tmrptr;
78};
Atsushi Nemoto229f7732007-10-25 01:34:09 +090079
80static void txx9tmr_stop_and_clear(struct txx9_tmr_reg __iomem *tmrptr)
81{
82 /* stop and reset counter */
83 __raw_writel(TCR_BASE, &tmrptr->tcr);
84 /* clear pending interrupt */
85 __raw_writel(0, &tmrptr->tisr);
86}
87
Viresh Kumard199da52015-07-06 16:42:00 +053088static int txx9tmr_set_state_periodic(struct clock_event_device *evt)
Atsushi Nemoto229f7732007-10-25 01:34:09 +090089{
Atsushi Nemotoa43da032009-04-24 00:10:36 +090090 struct txx9_clock_event_device *txx9_cd =
91 container_of(evt, struct txx9_clock_event_device, cd);
92 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
Atsushi Nemoto229f7732007-10-25 01:34:09 +090093
94 txx9tmr_stop_and_clear(tmrptr);
Viresh Kumard199da52015-07-06 16:42:00 +053095
96 __raw_writel(TXx9_TMITMR_TIIE | TXx9_TMITMR_TZCE, &tmrptr->itmr);
97 /* start timer */
98 __raw_writel(((u64)(NSEC_PER_SEC / HZ) * evt->mult) >> evt->shift,
99 &tmrptr->cpra);
100 __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
101 return 0;
102}
103
104static int txx9tmr_set_state_oneshot(struct clock_event_device *evt)
105{
106 struct txx9_clock_event_device *txx9_cd =
107 container_of(evt, struct txx9_clock_event_device, cd);
108 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
109
110 txx9tmr_stop_and_clear(tmrptr);
111 __raw_writel(TXx9_TMITMR_TIIE, &tmrptr->itmr);
112 return 0;
113}
114
115static int txx9tmr_set_state_shutdown(struct clock_event_device *evt)
116{
117 struct txx9_clock_event_device *txx9_cd =
118 container_of(evt, struct txx9_clock_event_device, cd);
119 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
120
121 txx9tmr_stop_and_clear(tmrptr);
122 __raw_writel(0, &tmrptr->itmr);
123 return 0;
124}
125
126static int txx9tmr_tick_resume(struct clock_event_device *evt)
127{
128 struct txx9_clock_event_device *txx9_cd =
129 container_of(evt, struct txx9_clock_event_device, cd);
130 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
131
132 txx9tmr_stop_and_clear(tmrptr);
133 __raw_writel(TIMER_CCD, &tmrptr->ccdr);
134 __raw_writel(0, &tmrptr->itmr);
135 return 0;
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900136}
137
138static int txx9tmr_set_next_event(unsigned long delta,
139 struct clock_event_device *evt)
140{
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900141 struct txx9_clock_event_device *txx9_cd =
142 container_of(evt, struct txx9_clock_event_device, cd);
143 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900144
145 txx9tmr_stop_and_clear(tmrptr);
146 /* start timer */
147 __raw_writel(delta, &tmrptr->cpra);
148 __raw_writel(TCR_BASE | TXx9_TMTCR_TCE, &tmrptr->tcr);
149 return 0;
150}
151
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900152static struct txx9_clock_event_device txx9_clock_event_device = {
153 .cd = {
Viresh Kumard199da52015-07-06 16:42:00 +0530154 .name = "TXx9",
155 .features = CLOCK_EVT_FEAT_PERIODIC |
156 CLOCK_EVT_FEAT_ONESHOT,
157 .rating = 200,
158 .set_state_shutdown = txx9tmr_set_state_shutdown,
159 .set_state_periodic = txx9tmr_set_state_periodic,
160 .set_state_oneshot = txx9tmr_set_state_oneshot,
161 .tick_resume = txx9tmr_tick_resume,
162 .set_next_event = txx9tmr_set_next_event,
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900163 },
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900164};
165
166static irqreturn_t txx9tmr_interrupt(int irq, void *dev_id)
167{
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900168 struct txx9_clock_event_device *txx9_cd = dev_id;
169 struct clock_event_device *cd = &txx9_cd->cd;
170 struct txx9_tmr_reg __iomem *tmrptr = txx9_cd->tmrptr;
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900171
Ralf Baechle70342282013-01-22 12:59:30 +0100172 __raw_writel(0, &tmrptr->tisr); /* ack interrupt */
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900173 cd->event_handler(cd);
174 return IRQ_HANDLED;
175}
176
177static struct irqaction txx9tmr_irq = {
178 .handler = txx9tmr_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +0000179 .flags = IRQF_PERCPU | IRQF_TIMER,
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900180 .name = "txx9tmr",
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900181 .dev_id = &txx9_clock_event_device,
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900182};
183
184void __init txx9_clockevent_init(unsigned long baseaddr, int irq,
185 unsigned int imbusclk)
186{
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900187 struct clock_event_device *cd = &txx9_clock_event_device.cd;
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900188 struct txx9_tmr_reg __iomem *tmrptr;
189
190 tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
191 txx9tmr_stop_and_clear(tmrptr);
192 __raw_writel(TIMER_CCD, &tmrptr->ccdr);
193 __raw_writel(0, &tmrptr->itmr);
Atsushi Nemotoa43da032009-04-24 00:10:36 +0900194 txx9_clock_event_device.tmrptr = tmrptr;
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900195
196 clockevent_set_clock(cd, TIMER_CLK(imbusclk));
197 cd->max_delta_ns =
198 clockevent_delta2ns(0xffffffff >> (32 - TXX9_TIMER_BITS), cd);
199 cd->min_delta_ns = clockevent_delta2ns(0xf, cd);
200 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030201 cd->cpumask = cpumask_of(0),
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900202 clockevents_register_device(cd);
203 setup_irq(irq, &txx9tmr_irq);
204 printk(KERN_INFO "TXx9: clockevent device at 0x%lx, irq %d\n",
205 baseaddr, irq);
206}
207
208void __init txx9_tmr_init(unsigned long baseaddr)
209{
210 struct txx9_tmr_reg __iomem *tmrptr;
211
212 tmrptr = ioremap(baseaddr, sizeof(struct txx9_tmr_reg));
Atsushi Nemoto8986d2f2008-06-24 23:26:38 +0900213 /* Start once to make CounterResetEnable effective */
214 __raw_writel(TXx9_TMTCR_CRE | TXx9_TMTCR_TCE, &tmrptr->tcr);
215 /* Stop and reset the counter */
Atsushi Nemoto229f7732007-10-25 01:34:09 +0900216 __raw_writel(TXx9_TMTCR_CRE, &tmrptr->tcr);
217 __raw_writel(0, &tmrptr->tisr);
218 __raw_writel(0xffffffff, &tmrptr->cpra);
219 __raw_writel(0, &tmrptr->itmr);
220 __raw_writel(0, &tmrptr->ccdr);
221 __raw_writel(0, &tmrptr->pgmr);
222 iounmap(tmrptr);
223}