| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/arm/mach-pxa/time.c | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  |  * PXA clocksource, clockevents, and OST interrupt handlers. | 
					
						
							|  |  |  |  * Copyright (c) 2007 by Bill Gatliff <bgat@billgatliff.com>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Derived from Nicolas Pitre's PXA timer handler Copyright (c) 2001 | 
					
						
							|  |  |  |  * by MontaVista Software, Inc.  (Nico, your code rocks!) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | #include <linux/clockchips.h>
 | 
					
						
							| 
									
										
										
										
											2013-06-01 23:39:40 -07:00
										 |  |  | #include <linux/sched_clock.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 16:55:22 +01:00
										 |  |  | #include <asm/div64.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/mach/irq.h>
 | 
					
						
							|  |  |  | #include <asm/mach/time.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-20 11:04:16 +08:00
										 |  |  | #include <mach/regs-ost.h>
 | 
					
						
							| 
									
										
										
										
											2012-01-03 16:53:48 -06:00
										 |  |  | #include <mach/irqs.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 16:55:22 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This is PXA's sched_clock implementation. This has a resolution | 
					
						
							|  |  |  |  * of at least 308 ns and a maximum value of 208 days. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The return value is guaranteed to be monotonic in that range as | 
					
						
							|  |  |  |  * long as there is always less than 582 seconds between successive | 
					
						
							|  |  |  |  * calls to sched_clock() which should always be the case in practice. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 12:19:23 +01:00
										 |  |  | static u32 notrace pxa_read_sched_clock(void) | 
					
						
							| 
									
										
										
										
											2007-08-17 16:55:22 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 	return readl_relaxed(OSCR); | 
					
						
							| 
									
										
										
										
											2007-08-17 16:55:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-12 22:45:16 +00:00
										 |  |  | #define MIN_OSCR_DELTA 16
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static irqreturn_t | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | pxa_ost0_interrupt(int irq, void *dev_id) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 	struct clock_event_device *c = dev_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-12 22:45:16 +00:00
										 |  |  | 	/* Disarm the compare/match, signal the event. */ | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 	writel_relaxed(readl_relaxed(OIER) & ~OIER_E0, OIER); | 
					
						
							|  |  |  | 	writel_relaxed(OSSR_M0, OSSR); | 
					
						
							| 
									
										
										
										
											2007-11-12 22:45:16 +00:00
										 |  |  | 	c->event_handler(c); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | static int | 
					
						
							|  |  |  | pxa_osmr0_set_next_event(unsigned long delta, struct clock_event_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-12-17 12:43:29 +01:00
										 |  |  | 	unsigned long next, oscr; | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 	writel_relaxed(readl_relaxed(OIER) | OIER_E0, OIER); | 
					
						
							|  |  |  | 	next = readl_relaxed(OSCR) + delta; | 
					
						
							|  |  |  | 	writel_relaxed(next, OSMR0); | 
					
						
							|  |  |  | 	oscr = readl_relaxed(OSCR); | 
					
						
							| 
									
										
										
										
											2007-11-08 23:35:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0; | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case CLOCK_EVT_MODE_ONESHOT: | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 		writel_relaxed(readl_relaxed(OIER) & ~OIER_E0, OIER); | 
					
						
							|  |  |  | 		writel_relaxed(OSSR_M0, OSSR); | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case CLOCK_EVT_MODE_UNUSED: | 
					
						
							|  |  |  | 	case CLOCK_EVT_MODE_SHUTDOWN: | 
					
						
							|  |  |  | 		/* initializing, released, or preparing for suspend */ | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 		writel_relaxed(readl_relaxed(OIER) & ~OIER_E0, OIER); | 
					
						
							|  |  |  | 		writel_relaxed(OSSR_M0, OSSR); | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2007-10-27 15:15:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	case CLOCK_EVT_MODE_RESUME: | 
					
						
							| 
									
										
										
										
											2007-11-12 22:45:16 +00:00
										 |  |  | 	case CLOCK_EVT_MODE_PERIODIC: | 
					
						
							| 
									
										
										
										
											2007-10-27 15:15:49 +01:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-07 16:34:13 -07:00
										 |  |  | #ifdef CONFIG_PM
 | 
					
						
							|  |  |  | static unsigned long osmr[4], oier, oscr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pxa_timer_suspend(struct clock_event_device *cedev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	osmr[0] = readl_relaxed(OSMR0); | 
					
						
							|  |  |  | 	osmr[1] = readl_relaxed(OSMR1); | 
					
						
							|  |  |  | 	osmr[2] = readl_relaxed(OSMR2); | 
					
						
							|  |  |  | 	osmr[3] = readl_relaxed(OSMR3); | 
					
						
							|  |  |  | 	oier = readl_relaxed(OIER); | 
					
						
							|  |  |  | 	oscr = readl_relaxed(OSCR); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pxa_timer_resume(struct clock_event_device *cedev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Ensure that we have at least MIN_OSCR_DELTA between match | 
					
						
							|  |  |  | 	 * register 0 and the OSCR, to guarantee that we will receive | 
					
						
							|  |  |  | 	 * the one-shot timer interrupt.  We adjust OSMR0 in preference | 
					
						
							|  |  |  | 	 * to OSCR to guarantee that OSCR is monotonically incrementing. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (osmr[0] - oscr < MIN_OSCR_DELTA) | 
					
						
							|  |  |  | 		osmr[0] += MIN_OSCR_DELTA; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	writel_relaxed(osmr[0], OSMR0); | 
					
						
							|  |  |  | 	writel_relaxed(osmr[1], OSMR1); | 
					
						
							|  |  |  | 	writel_relaxed(osmr[2], OSMR2); | 
					
						
							|  |  |  | 	writel_relaxed(osmr[3], OSMR3); | 
					
						
							|  |  |  | 	writel_relaxed(oier, OIER); | 
					
						
							|  |  |  | 	writel_relaxed(oscr, OSCR); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define pxa_timer_suspend NULL
 | 
					
						
							|  |  |  | #define pxa_timer_resume NULL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | static struct clock_event_device ckevt_pxa_osmr0 = { | 
					
						
							|  |  |  | 	.name		= "osmr0", | 
					
						
							| 
									
										
										
										
											2007-11-12 22:45:16 +00:00
										 |  |  | 	.features	= CLOCK_EVT_FEAT_ONESHOT, | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 	.rating		= 200, | 
					
						
							|  |  |  | 	.set_next_event	= pxa_osmr0_set_next_event, | 
					
						
							|  |  |  | 	.set_mode	= pxa_osmr0_set_mode, | 
					
						
							| 
									
										
										
										
											2012-11-07 16:34:13 -07:00
										 |  |  | 	.suspend	= pxa_timer_suspend, | 
					
						
							|  |  |  | 	.resume		= pxa_timer_resume, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | static struct irqaction pxa_ost0_irq = { | 
					
						
							|  |  |  | 	.name		= "ost0", | 
					
						
							|  |  |  | 	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 
					
						
							|  |  |  | 	.handler	= pxa_ost0_interrupt, | 
					
						
							|  |  |  | 	.dev_id		= &ckevt_pxa_osmr0, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-08 12:40:59 -07:00
										 |  |  | void __init pxa_timer_init(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-18 11:10:32 +08:00
										 |  |  | 	unsigned long clock_tick_rate = get_clock_tick_rate(); | 
					
						
							| 
									
										
										
										
											2007-09-01 21:12:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 	writel_relaxed(0, OIER); | 
					
						
							|  |  |  | 	writel_relaxed(OSSR_M0 | OSSR_M1 | OSSR_M2 | OSSR_M3, OSSR); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 12:19:23 +01:00
										 |  |  | 	setup_sched_clock(pxa_read_sched_clock, 32, clock_tick_rate); | 
					
						
							| 
									
										
										
										
											2007-08-17 16:55:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-13 21:20:26 +10:30
										 |  |  | 	ckevt_pxa_osmr0.cpumask = cpumask_of(0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-21 03:39:36 +01:00
										 |  |  | 	setup_irq(IRQ_OST0, &pxa_ost0_irq); | 
					
						
							| 
									
										
										
										
											2005-09-01 12:48:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 11:42:36 +01:00
										 |  |  | 	clocksource_mmio_init(OSCR, "oscr0", clock_tick_rate, 200, 32, | 
					
						
							| 
									
										
										
										
											2011-05-08 14:09:47 +01:00
										 |  |  | 		clocksource_mmio_readl_up); | 
					
						
							| 
									
										
										
										
											2013-01-14 10:20:02 -08:00
										 |  |  | 	clockevents_config_and_register(&ckevt_pxa_osmr0, clock_tick_rate, | 
					
						
							|  |  |  | 		MIN_OSCR_DELTA * 2, 0x7fffffff); | 
					
						
							| 
									
										
										
										
											2005-09-01 12:48:40 +01:00
										 |  |  | } |