time.c 5.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * arch/arm/plat-orion/time.c
 *
 * Marvell Orion SoC timer handling.
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 *
 * Timer 0 is used as free-running clocksource, while timer 1 is
 * used as clock_event_device.
 */

#include <linux/kernel.h>
15 16
#include <linux/sched.h>
#include <linux/timer.h>
17 18 19
#include <linux/clockchips.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
20
#include <asm/sched_clock.h>
21 22

/*
23
 * MBus bridge block registers.
24
 */
25 26 27 28
#define BRIDGE_CAUSE_OFF	0x0110
#define BRIDGE_MASK_OFF		0x0114
#define  BRIDGE_INT_TIMER0	 0x0002
#define  BRIDGE_INT_TIMER1	 0x0004
29 30 31 32 33


/*
 * Timer block registers.
 */
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#define TIMER_CTRL_OFF		0x0000
#define  TIMER0_EN		 0x0001
#define  TIMER0_RELOAD_EN	 0x0002
#define  TIMER1_EN		 0x0004
#define  TIMER1_RELOAD_EN	 0x0008
#define TIMER0_RELOAD_OFF	0x0010
#define TIMER0_VAL_OFF		0x0014
#define TIMER1_RELOAD_OFF	0x0018
#define TIMER1_VAL_OFF		0x001c


/*
 * SoC-specific data.
 */
static void __iomem *bridge_base;
static u32 bridge_timer1_clr_mask;
static void __iomem *timer_base;


/*
 * Number of timer ticks per jiffy.
 */
static u32 ticks_per_jiffy;
57 58


59 60
/*
 * Orion's sched_clock implementation. It has a resolution of
61
 * at least 7.5ns (133MHz TCLK).
62
 */
63
static DEFINE_CLOCK_DATA(cd);
64

65
unsigned long long notrace sched_clock(void)
66
{
67
	u32 cyc = ~readl(timer_base + TIMER0_VAL_OFF);
68
	return cyc_to_sched_clock(&cd, cyc, (u32)~0);
69 70 71
}


72
static void notrace orion_update_sched_clock(void)
73
{
74
	u32 cyc = ~readl(timer_base + TIMER0_VAL_OFF);
75
	update_sched_clock(&cd, cyc, (u32)~0);
76 77 78
}

static void __init setup_sched_clock(unsigned long tclk)
79
{
80
	init_sched_clock(&cd, orion_update_sched_clock, 32, tclk);
81 82
}

83 84 85
/*
 * Clocksource handling.
 */
86
static cycle_t orion_clksrc_read(struct clocksource *cs)
87
{
88
	return 0xffffffff - readl(timer_base + TIMER0_VAL_OFF);
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
}

static struct clocksource orion_clksrc = {
	.name		= "orion_clocksource",
	.rating		= 300,
	.read		= orion_clksrc_read,
	.mask		= CLOCKSOURCE_MASK(32),
	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
};



/*
 * Clockevent handling.
 */
static int
orion_clkevt_next_event(unsigned long delta, struct clock_event_device *dev)
{
	unsigned long flags;
	u32 u;

	if (delta == 0)
		return -ETIME;

	local_irq_save(flags);

	/*
	 * Clear and enable clockevent timer interrupt.
	 */
118
	writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
119

120
	u = readl(bridge_base + BRIDGE_MASK_OFF);
121
	u |= BRIDGE_INT_TIMER1;
122
	writel(u, bridge_base + BRIDGE_MASK_OFF);
123 124 125 126

	/*
	 * Setup new clockevent timer value.
	 */
127
	writel(delta, timer_base + TIMER1_VAL_OFF);
128 129 130 131

	/*
	 * Enable the timer.
	 */
132
	u = readl(timer_base + TIMER_CTRL_OFF);
133
	u = (u & ~TIMER1_RELOAD_EN) | TIMER1_EN;
134
	writel(u, timer_base + TIMER_CTRL_OFF);
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

	local_irq_restore(flags);

	return 0;
}

static void
orion_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
{
	unsigned long flags;
	u32 u;

	local_irq_save(flags);
	if (mode == CLOCK_EVT_MODE_PERIODIC) {
		/*
		 * Setup timer to fire at 1/HZ intervals.
		 */
152 153
		writel(ticks_per_jiffy - 1, timer_base + TIMER1_RELOAD_OFF);
		writel(ticks_per_jiffy - 1, timer_base + TIMER1_VAL_OFF);
154 155 156 157

		/*
		 * Enable timer interrupt.
		 */
158 159
		u = readl(bridge_base + BRIDGE_MASK_OFF);
		writel(u | BRIDGE_INT_TIMER1, bridge_base + BRIDGE_MASK_OFF);
160 161 162 163

		/*
		 * Enable timer.
		 */
164 165 166
		u = readl(timer_base + TIMER_CTRL_OFF);
		writel(u | TIMER1_EN | TIMER1_RELOAD_EN,
		       timer_base + TIMER_CTRL_OFF);
167 168 169 170
	} else {
		/*
		 * Disable timer.
		 */
171 172
		u = readl(timer_base + TIMER_CTRL_OFF);
		writel(u & ~TIMER1_EN, timer_base + TIMER_CTRL_OFF);
173 174 175 176

		/*
		 * Disable timer interrupt.
		 */
177 178
		u = readl(bridge_base + BRIDGE_MASK_OFF);
		writel(u & ~BRIDGE_INT_TIMER1, bridge_base + BRIDGE_MASK_OFF);
179 180 181 182

		/*
		 * ACK pending timer interrupt.
		 */
183
		writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

	}
	local_irq_restore(flags);
}

static struct clock_event_device orion_clkevt = {
	.name		= "orion_tick",
	.features	= CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
	.shift		= 32,
	.rating		= 300,
	.set_next_event	= orion_clkevt_next_event,
	.set_mode	= orion_clkevt_mode,
};

static irqreturn_t orion_timer_interrupt(int irq, void *dev_id)
{
	/*
	 * ACK timer interrupt and call event handler.
	 */
203
	writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
204 205 206 207 208 209 210 211 212 213 214
	orion_clkevt.event_handler(&orion_clkevt);

	return IRQ_HANDLED;
}

static struct irqaction orion_timer_irq = {
	.name		= "orion_tick",
	.flags		= IRQF_DISABLED | IRQF_TIMER,
	.handler	= orion_timer_interrupt
};

215 216 217 218 219 220 221 222 223
void __init
orion_time_set_base(u32 _timer_base)
{
	timer_base = (void __iomem *)_timer_base;
}

void __init
orion_time_init(u32 _bridge_base, u32 _bridge_timer1_clr_mask,
		unsigned int irq, unsigned int tclk)
224 225 226
{
	u32 u;

227 228 229 230 231 232
	/*
	 * Set SoC-specific data.
	 */
	bridge_base = (void __iomem *)_bridge_base;
	bridge_timer1_clr_mask = _bridge_timer1_clr_mask;

233 234
	ticks_per_jiffy = (tclk + HZ/2) / HZ;

235
	/*
236
	 * Set scale and timer for sched_clock.
237
	 */
238
	setup_sched_clock(tclk);
239 240 241

	/*
	 * Setup free-running clocksource timer (interrupts
242
	 * disabled).
243
	 */
244 245 246 247 248 249
	writel(0xffffffff, timer_base + TIMER0_VAL_OFF);
	writel(0xffffffff, timer_base + TIMER0_RELOAD_OFF);
	u = readl(bridge_base + BRIDGE_MASK_OFF);
	writel(u & ~BRIDGE_INT_TIMER0, bridge_base + BRIDGE_MASK_OFF);
	u = readl(timer_base + TIMER_CTRL_OFF);
	writel(u | TIMER0_EN | TIMER0_RELOAD_EN, timer_base + TIMER_CTRL_OFF);
250
	clocksource_register_hz(&orion_clksrc, tclk);
251 252

	/*
253
	 * Setup clockevent timer (interrupt-driven).
254 255 256 257 258
	 */
	setup_irq(irq, &orion_timer_irq);
	orion_clkevt.mult = div_sc(tclk, NSEC_PER_SEC, orion_clkevt.shift);
	orion_clkevt.max_delta_ns = clockevent_delta2ns(0xfffffffe, &orion_clkevt);
	orion_clkevt.min_delta_ns = clockevent_delta2ns(1, &orion_clkevt);
259
	orion_clkevt.cpumask = cpumask_of(0);
260 261
	clockevents_register_device(&orion_clkevt);
}