2 * at91sam926x_time.c - Periodic Interval Timer (PIT) for at91sam926x
4 * Copyright (C) 2005-2006 M. Amine SAYA, ATMEL Rousset, France
5 * Revision 2005 M. Nicolas Diremdjian, ATMEL Rousset, France
6 * Converted to ClockSource/ClockEvents by David Brownell.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/interrupt.h>
13 #include <linux/irq.h>
14 #include <linux/kernel.h>
15 #include <linux/clk.h>
16 #include <linux/clockchips.h>
18 #include <asm/mach/time.h>
20 #include <mach/at91_pit.h>
23 #define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
24 #define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
26 static u32 pit_cycle
; /* write-once */
27 static u32 pit_cnt
; /* access only w/system irq blocked */
28 static void __iomem
*pit_base_addr __read_mostly
;
30 static inline unsigned int pit_read(unsigned int reg_offset
)
32 return __raw_readl(pit_base_addr
+ reg_offset
);
35 static inline void pit_write(unsigned int reg_offset
, unsigned long value
)
37 __raw_writel(value
, pit_base_addr
+ reg_offset
);
41 * Clocksource: just a monotonic counter of MCK/16 cycles.
42 * We don't care whether or not PIT irqs are enabled.
44 static cycle_t
read_pit_clk(struct clocksource
*cs
)
50 raw_local_irq_save(flags
);
52 t
= pit_read(AT91_PIT_PIIR
);
53 raw_local_irq_restore(flags
);
55 elapsed
+= PIT_PICNT(t
) * pit_cycle
;
56 elapsed
+= PIT_CPIV(t
);
60 static struct clocksource pit_clk
= {
64 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
69 * Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
72 pit_clkevt_mode(enum clock_event_mode mode
, struct clock_event_device
*dev
)
75 case CLOCK_EVT_MODE_PERIODIC
:
76 /* update clocksource counter */
77 pit_cnt
+= pit_cycle
* PIT_PICNT(pit_read(AT91_PIT_PIVR
));
78 pit_write(AT91_PIT_MR
, (pit_cycle
- 1) | AT91_PIT_PITEN
81 case CLOCK_EVT_MODE_ONESHOT
:
84 case CLOCK_EVT_MODE_SHUTDOWN
:
85 case CLOCK_EVT_MODE_UNUSED
:
86 /* disable irq, leaving the clocksource active */
87 pit_write(AT91_PIT_MR
, (pit_cycle
- 1) | AT91_PIT_PITEN
);
89 case CLOCK_EVT_MODE_RESUME
:
94 static struct clock_event_device pit_clkevt
= {
96 .features
= CLOCK_EVT_FEAT_PERIODIC
,
99 .set_mode
= pit_clkevt_mode
,
104 * IRQ handler for the timer.
106 static irqreturn_t
at91sam926x_pit_interrupt(int irq
, void *dev_id
)
109 * irqs should be disabled here, but as the irq is shared they are only
110 * guaranteed to be off if the timer irq is registered first.
112 WARN_ON_ONCE(!irqs_disabled());
114 /* The PIT interrupt may be disabled, and is shared */
115 if ((pit_clkevt
.mode
== CLOCK_EVT_MODE_PERIODIC
)
116 && (pit_read(AT91_PIT_SR
) & AT91_PIT_PITS
)) {
119 /* Get number of ticks performed before irq, and ack it */
120 nr_ticks
= PIT_PICNT(pit_read(AT91_PIT_PIVR
));
122 pit_cnt
+= pit_cycle
;
123 pit_clkevt
.event_handler(&pit_clkevt
);
133 static struct irqaction at91sam926x_pit_irq
= {
135 .flags
= IRQF_SHARED
| IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
136 .handler
= at91sam926x_pit_interrupt
139 static void at91sam926x_pit_reset(void)
141 /* Disable timer and irqs */
142 pit_write(AT91_PIT_MR
, 0);
144 /* Clear any pending interrupts, wait for PIT to stop counting */
145 while (PIT_CPIV(pit_read(AT91_PIT_PIVR
)) != 0)
148 /* Start PIT but don't enable IRQ */
149 pit_write(AT91_PIT_MR
, (pit_cycle
- 1) | AT91_PIT_PITEN
);
153 * Set up both clocksource and clockevent support.
155 static void __init
at91sam926x_pit_init(void)
157 unsigned long pit_rate
;
161 * Use our actual MCK to figure out how many MCK/16 ticks per
162 * 1/HZ period (instead of a compile-time constant LATCH).
164 pit_rate
= clk_get_rate(clk_get(NULL
, "mck")) / 16;
165 pit_cycle
= (pit_rate
+ HZ
/2) / HZ
;
166 WARN_ON(((pit_cycle
- 1) & ~AT91_PIT_PIV
) != 0);
168 /* Initialize and enable the timer */
169 at91sam926x_pit_reset();
172 * Register clocksource. The high order bits of PIV are unused,
173 * so this isn't a 32-bit counter unless we get clockevent irqs.
175 bits
= 12 /* PICNT */ + ilog2(pit_cycle
) /* PIV */;
176 pit_clk
.mask
= CLOCKSOURCE_MASK(bits
);
177 clocksource_register_hz(&pit_clk
, pit_rate
);
179 /* Set up irq handler */
180 setup_irq(AT91_ID_SYS
, &at91sam926x_pit_irq
);
182 /* Set up and register clockevents */
183 pit_clkevt
.mult
= div_sc(pit_rate
, NSEC_PER_SEC
, pit_clkevt
.shift
);
184 pit_clkevt
.cpumask
= cpumask_of(0);
185 clockevents_register_device(&pit_clkevt
);
188 static void at91sam926x_pit_suspend(void)
191 pit_write(AT91_PIT_MR
, 0);
194 void __init
at91sam926x_ioremap_pit(u32 addr
)
196 pit_base_addr
= ioremap(addr
, 16);
199 panic("Impossible to ioremap PIT\n");
202 struct sys_timer at91sam926x_timer
= {
203 .init
= at91sam926x_pit_init
,
204 .suspend
= at91sam926x_pit_suspend
,
205 .resume
= at91sam926x_pit_reset
,