| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/arch/arm/mach-footbridge/dc21285-timer.c | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 1998 Russell King. | 
 | 5 |  *  Copyright (C) 1998 Phil Blundell | 
 | 6 |  */ | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 7 | #include <linux/clockchips.h> | 
 | 8 | #include <linux/clocksource.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/init.h> | 
 | 10 | #include <linux/interrupt.h> | 
| Thomas Gleixner | 55e8698 | 2006-07-01 22:32:17 +0100 | [diff] [blame] | 11 | #include <linux/irq.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  | 
 | 13 | #include <asm/irq.h> | 
 | 14 |  | 
 | 15 | #include <asm/hardware/dec21285.h> | 
 | 16 | #include <asm/mach/time.h> | 
| David Howells | 9f97da7 | 2012-03-28 18:30:01 +0100 | [diff] [blame] | 17 | #include <asm/system_info.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 |  | 
 | 19 | #include "common.h" | 
 | 20 |  | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 21 | static cycle_t cksrc_dc21285_read(struct clocksource *cs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | { | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 23 | 	return cs->mask - *CSR_TIMER2_VALUE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | } | 
 | 25 |  | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 26 | static int cksrc_dc21285_enable(struct clocksource *cs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 28 | 	*CSR_TIMER2_LOAD = cs->mask; | 
 | 29 | 	*CSR_TIMER2_CLR = 0; | 
 | 30 | 	*CSR_TIMER2_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_DIV16; | 
 | 31 | 	return 0; | 
 | 32 | } | 
 | 33 |  | 
| Thomas Gleixner | f2e0bf21 | 2011-03-28 11:25:40 +0200 | [diff] [blame] | 34 | static void cksrc_dc21285_disable(struct clocksource *cs) | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 35 | { | 
 | 36 | 	*CSR_TIMER2_CNTL = 0; | 
 | 37 | } | 
 | 38 |  | 
 | 39 | static struct clocksource cksrc_dc21285 = { | 
 | 40 | 	.name		= "dc21285_timer2", | 
 | 41 | 	.rating		= 200, | 
 | 42 | 	.read		= cksrc_dc21285_read, | 
 | 43 | 	.enable		= cksrc_dc21285_enable, | 
 | 44 | 	.disable	= cksrc_dc21285_disable, | 
 | 45 | 	.mask		= CLOCKSOURCE_MASK(24), | 
 | 46 | 	.flags		= CLOCK_SOURCE_IS_CONTINUOUS, | 
 | 47 | }; | 
 | 48 |  | 
 | 49 | static void ckevt_dc21285_set_mode(enum clock_event_mode mode, | 
 | 50 | 	struct clock_event_device *c) | 
 | 51 | { | 
 | 52 | 	switch (mode) { | 
 | 53 | 	case CLOCK_EVT_MODE_RESUME: | 
 | 54 | 	case CLOCK_EVT_MODE_PERIODIC: | 
 | 55 | 		*CSR_TIMER1_CLR = 0; | 
 | 56 | 		*CSR_TIMER1_LOAD = (mem_fclk_21285 + 8 * HZ) / (16 * HZ); | 
 | 57 | 		*CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD | | 
 | 58 | 				   TIMER_CNTL_DIV16; | 
 | 59 | 		break; | 
 | 60 |  | 
 | 61 | 	default: | 
 | 62 | 		*CSR_TIMER1_CNTL = 0; | 
 | 63 | 		break; | 
 | 64 | 	} | 
 | 65 | } | 
 | 66 |  | 
 | 67 | static struct clock_event_device ckevt_dc21285 = { | 
 | 68 | 	.name		= "dc21285_timer1", | 
 | 69 | 	.features	= CLOCK_EVT_FEAT_PERIODIC, | 
 | 70 | 	.rating		= 200, | 
 | 71 | 	.irq		= IRQ_TIMER1, | 
 | 72 | 	.set_mode	= ckevt_dc21285_set_mode, | 
 | 73 | }; | 
 | 74 |  | 
 | 75 | static irqreturn_t timer1_interrupt(int irq, void *dev_id) | 
 | 76 | { | 
 | 77 | 	struct clock_event_device *ce = dev_id; | 
 | 78 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | 	*CSR_TIMER1_CLR = 0; | 
 | 80 |  | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 81 | 	ce->event_handler(ce); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | 	return IRQ_HANDLED; | 
 | 84 | } | 
 | 85 |  | 
 | 86 | static struct irqaction footbridge_timer_irq = { | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 87 | 	.name		= "dc21285_timer1", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | 	.handler	= timer1_interrupt, | 
| Bernhard Walle | b30faba | 2007-05-08 00:35:39 -0700 | [diff] [blame] | 89 | 	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 90 | 	.dev_id		= &ckevt_dc21285, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | }; | 
 | 92 |  | 
 | 93 | /* | 
 | 94 |  * Set up timer interrupt. | 
 | 95 |  */ | 
 | 96 | static void __init footbridge_timer_init(void) | 
 | 97 | { | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 98 | 	struct clock_event_device *ce = &ckevt_dc21285; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 100 | 	clocksource_register_hz(&cksrc_dc21285, (mem_fclk_21285 + 8) / 16); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 |  | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 102 | 	setup_irq(ce->irq, &footbridge_timer_irq); | 
 | 103 |  | 
 | 104 | 	clockevents_calc_mult_shift(ce, mem_fclk_21285, 5); | 
 | 105 | 	ce->max_delta_ns = clockevent_delta2ns(0xffffff, ce); | 
 | 106 | 	ce->min_delta_ns = clockevent_delta2ns(0x000004, ce); | 
| Russell King | 7d7975a | 2011-06-11 00:46:17 +0100 | [diff] [blame] | 107 | 	ce->cpumask = cpumask_of(smp_processor_id()); | 
| Russell King | 4e8d763 | 2011-01-28 21:00:39 +0000 | [diff] [blame] | 108 |  | 
 | 109 | 	clockevents_register_device(ce); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } | 
 | 111 |  | 
 | 112 | struct sys_timer footbridge_timer = { | 
 | 113 | 	.init		= footbridge_timer_init, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |