2 * Timer device implementation for SGI SN platforms.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (c) 2001-2006 Silicon Graphics, Inc. All rights reserved.
10 * This driver exports an API that should be supportable by any HPET or IA-PC
11 * multimedia timer. The code below is currently specific to the SGI Altix
14 * 11/01/01 - jbarnes - initial revision
15 * 9/10/04 - Christoph Lameter - remove interrupt support for kernel inclusion
16 * 10/1/04 - Christoph Lameter - provide posix clock CLOCK_SGI_CYCLE
17 * 10/13/04 - Christoph Lameter, Dimitri Sivanich - provide timer interrupt
18 * support via the posix timer interface
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/ioctl.h>
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/errno.h>
29 #include <linux/mmtimer.h>
30 #include <linux/miscdevice.h>
31 #include <linux/posix-timers.h>
32 #include <linux/interrupt.h>
34 #include <asm/uaccess.h>
35 #include <asm/sn/addrs.h>
36 #include <asm/sn/intr.h>
37 #include <asm/sn/shub_mmr.h>
38 #include <asm/sn/nodepda.h>
39 #include <asm/sn/shubio.h>
41 MODULE_AUTHOR("Jesse Barnes <jbarnes@sgi.com>");
42 MODULE_DESCRIPTION("SGI Altix RTC Timer");
43 MODULE_LICENSE("GPL");
45 /* name of the device, usually in /dev */
46 #define MMTIMER_NAME "mmtimer"
47 #define MMTIMER_DESC "SGI Altix RTC Timer"
48 #define MMTIMER_VERSION "2.1"
50 #define RTC_BITS 55 /* 55 bits for this implementation */
52 extern unsigned long sn_rtc_cycles_per_second
;
54 #define RTC_COUNTER_ADDR ((long *)LOCAL_MMR_ADDR(SH_RTC))
56 #define rtc_time() (*RTC_COUNTER_ADDR)
58 static int mmtimer_ioctl(struct inode
*inode
, struct file
*file
,
59 unsigned int cmd
, unsigned long arg
);
60 static int mmtimer_mmap(struct file
*file
, struct vm_area_struct
*vma
);
63 * Period in femtoseconds (10^-15 s)
65 static unsigned long mmtimer_femtoperiod
= 0;
67 static const struct file_operations mmtimer_fops
= {
70 .ioctl
= mmtimer_ioctl
,
74 * We only have comparison registers RTC1-4 currently available per
75 * node. RTC0 is used by SAL.
77 #define NUM_COMPARATORS 3
78 /* Check for an RTC interrupt pending */
79 static int inline mmtimer_int_pending(int comparator
)
81 if (HUB_L((unsigned long *)LOCAL_MMR_ADDR(SH_EVENT_OCCURRED
)) &
82 SH_EVENT_OCCURRED_RTC1_INT_MASK
<< comparator
)
87 /* Clear the RTC interrupt pending bit */
88 static void inline mmtimer_clr_int_pending(int comparator
)
90 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_EVENT_OCCURRED_ALIAS
),
91 SH_EVENT_OCCURRED_RTC1_INT_MASK
<< comparator
);
94 /* Setup timer on comparator RTC1 */
95 static void inline mmtimer_setup_int_0(u64 expires
)
99 /* Disable interrupt */
100 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC1_INT_ENABLE
), 0UL);
102 /* Initialize comparator value */
103 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPB
), -1L);
105 /* Clear pending bit */
106 mmtimer_clr_int_pending(0);
108 val
= ((u64
)SGI_MMTIMER_VECTOR
<< SH_RTC1_INT_CONFIG_IDX_SHFT
) |
109 ((u64
)cpu_physical_id(smp_processor_id()) <<
110 SH_RTC1_INT_CONFIG_PID_SHFT
);
112 /* Set configuration */
113 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC1_INT_CONFIG
), val
);
115 /* Enable RTC interrupts */
116 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC1_INT_ENABLE
), 1UL);
118 /* Initialize comparator value */
119 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPB
), expires
);
124 /* Setup timer on comparator RTC2 */
125 static void inline mmtimer_setup_int_1(u64 expires
)
129 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC2_INT_ENABLE
), 0UL);
131 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPC
), -1L);
133 mmtimer_clr_int_pending(1);
135 val
= ((u64
)SGI_MMTIMER_VECTOR
<< SH_RTC2_INT_CONFIG_IDX_SHFT
) |
136 ((u64
)cpu_physical_id(smp_processor_id()) <<
137 SH_RTC2_INT_CONFIG_PID_SHFT
);
139 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC2_INT_CONFIG
), val
);
141 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC2_INT_ENABLE
), 1UL);
143 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPC
), expires
);
146 /* Setup timer on comparator RTC3 */
147 static void inline mmtimer_setup_int_2(u64 expires
)
151 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC3_INT_ENABLE
), 0UL);
153 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPD
), -1L);
155 mmtimer_clr_int_pending(2);
157 val
= ((u64
)SGI_MMTIMER_VECTOR
<< SH_RTC3_INT_CONFIG_IDX_SHFT
) |
158 ((u64
)cpu_physical_id(smp_processor_id()) <<
159 SH_RTC3_INT_CONFIG_PID_SHFT
);
161 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC3_INT_CONFIG
), val
);
163 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC3_INT_ENABLE
), 1UL);
165 HUB_S((u64
*)LOCAL_MMR_ADDR(SH_INT_CMPD
), expires
);
169 * This function must be called with interrupts disabled and preemption off
170 * in order to insure that the setup succeeds in a deterministic time frame.
171 * It will check if the interrupt setup succeeded.
173 static int inline mmtimer_setup(int comparator
, unsigned long expires
)
176 switch (comparator
) {
178 mmtimer_setup_int_0(expires
);
181 mmtimer_setup_int_1(expires
);
184 mmtimer_setup_int_2(expires
);
187 /* We might've missed our expiration time */
188 if (rtc_time() < expires
)
192 * If an interrupt is already pending then its okay
193 * if not then we failed
195 return mmtimer_int_pending(comparator
);
198 static int inline mmtimer_disable_int(long nasid
, int comparator
)
200 switch (comparator
) {
202 nasid
== -1 ? HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC1_INT_ENABLE
),
203 0UL) : REMOTE_HUB_S(nasid
, SH_RTC1_INT_ENABLE
, 0UL);
206 nasid
== -1 ? HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC2_INT_ENABLE
),
207 0UL) : REMOTE_HUB_S(nasid
, SH_RTC2_INT_ENABLE
, 0UL);
210 nasid
== -1 ? HUB_S((u64
*)LOCAL_MMR_ADDR(SH_RTC3_INT_ENABLE
),
211 0UL) : REMOTE_HUB_S(nasid
, SH_RTC3_INT_ENABLE
, 0UL);
219 #define TIMER_OFF 0xbadcabLL
221 /* There is one of these for each comparator */
222 typedef struct mmtimer
{
223 spinlock_t lock ____cacheline_aligned
;
224 struct k_itimer
*timer
;
227 struct tasklet_struct tasklet
;
230 static mmtimer_t
** timers
;
233 * mmtimer_ioctl - ioctl interface for /dev/mmtimer
234 * @inode: inode of the device
235 * @file: file structure for the device
236 * @cmd: command to execute
237 * @arg: optional argument to command
239 * Executes the command specified by @cmd. Returns 0 for success, < 0 for
244 * %MMTIMER_GETOFFSET - Should return the offset (relative to the start
245 * of the page where the registers are mapped) for the counter in question.
247 * %MMTIMER_GETRES - Returns the resolution of the clock in femto (10^-15)
250 * %MMTIMER_GETFREQ - Copies the frequency of the clock in Hz to the address
253 * %MMTIMER_GETBITS - Returns the number of bits in the clock's counter
255 * %MMTIMER_MMAPAVAIL - Returns 1 if the registers can be mmap'd into userspace
257 * %MMTIMER_GETCOUNTER - Gets the current value in the counter and places it
258 * in the address specified by @arg.
260 static int mmtimer_ioctl(struct inode
*inode
, struct file
*file
,
261 unsigned int cmd
, unsigned long arg
)
266 case MMTIMER_GETOFFSET
: /* offset of the counter */
268 * SN RTC registers are on their own 64k page
270 if(PAGE_SIZE
<= (1 << 16))
271 ret
= (((long)RTC_COUNTER_ADDR
) & (PAGE_SIZE
-1)) / 8;
276 case MMTIMER_GETRES
: /* resolution of the clock in 10^-15 s */
277 if(copy_to_user((unsigned long __user
*)arg
,
278 &mmtimer_femtoperiod
, sizeof(unsigned long)))
282 case MMTIMER_GETFREQ
: /* frequency in Hz */
283 if(copy_to_user((unsigned long __user
*)arg
,
284 &sn_rtc_cycles_per_second
,
285 sizeof(unsigned long)))
290 case MMTIMER_GETBITS
: /* number of bits in the clock */
294 case MMTIMER_MMAPAVAIL
: /* can we mmap the clock into userspace? */
295 ret
= (PAGE_SIZE
<= (1 << 16)) ? 1 : 0;
298 case MMTIMER_GETCOUNTER
:
299 if(copy_to_user((unsigned long __user
*)arg
,
300 RTC_COUNTER_ADDR
, sizeof(unsigned long)))
312 * mmtimer_mmap - maps the clock's registers into userspace
313 * @file: file structure for the device
314 * @vma: VMA to map the registers into
316 * Calls remap_pfn_range() to map the clock's registers into
317 * the calling process' address space.
319 static int mmtimer_mmap(struct file
*file
, struct vm_area_struct
*vma
)
321 unsigned long mmtimer_addr
;
323 if (vma
->vm_end
- vma
->vm_start
!= PAGE_SIZE
)
326 if (vma
->vm_flags
& VM_WRITE
)
329 if (PAGE_SIZE
> (1 << 16))
332 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
334 mmtimer_addr
= __pa(RTC_COUNTER_ADDR
);
335 mmtimer_addr
&= ~(PAGE_SIZE
- 1);
336 mmtimer_addr
&= 0xfffffffffffffffUL
;
338 if (remap_pfn_range(vma
, vma
->vm_start
, mmtimer_addr
>> PAGE_SHIFT
,
339 PAGE_SIZE
, vma
->vm_page_prot
)) {
340 printk(KERN_ERR
"remap_pfn_range failed in mmtimer.c\n");
347 static struct miscdevice mmtimer_miscdev
= {
353 static struct timespec sgi_clock_offset
;
354 static int sgi_clock_period
;
357 * Posix Timer Interface
360 static struct timespec sgi_clock_offset
;
361 static int sgi_clock_period
;
363 static int sgi_clock_get(clockid_t clockid
, struct timespec
*tp
)
367 nsec
= rtc_time() * sgi_clock_period
368 + sgi_clock_offset
.tv_nsec
;
369 tp
->tv_sec
= div_long_long_rem(nsec
, NSEC_PER_SEC
, &tp
->tv_nsec
)
370 + sgi_clock_offset
.tv_sec
;
374 static int sgi_clock_set(clockid_t clockid
, struct timespec
*tp
)
380 nsec
= rtc_time() * sgi_clock_period
;
382 sgi_clock_offset
.tv_sec
= tp
->tv_sec
- div_long_long_rem(nsec
, NSEC_PER_SEC
, &rem
);
384 if (rem
<= tp
->tv_nsec
)
385 sgi_clock_offset
.tv_nsec
= tp
->tv_sec
- rem
;
387 sgi_clock_offset
.tv_nsec
= tp
->tv_sec
+ NSEC_PER_SEC
- rem
;
388 sgi_clock_offset
.tv_sec
--;
394 * Schedule the next periodic interrupt. This function will attempt
395 * to schedule a periodic interrupt later if necessary. If the scheduling
396 * of an interrupt fails then the time to skip is lengthened
397 * exponentially in order to ensure that the next interrupt
398 * can be properly scheduled..
400 static int inline reschedule_periodic_timer(mmtimer_t
*x
)
403 struct k_itimer
*t
= x
->timer
;
405 t
->it
.mmtimer
.clock
= x
->i
;
411 t
->it
.mmtimer
.expires
+= t
->it
.mmtimer
.incr
<< n
;
412 t
->it_overrun
+= 1 << n
;
417 } while (!mmtimer_setup(x
->i
, t
->it
.mmtimer
.expires
));
423 * mmtimer_interrupt - timer interrupt handler
425 * @dev_id: device the irq came from
427 * Called when one of the comarators matches the counter, This
428 * routine will send signals to processes that have requested
431 * This interrupt is run in an interrupt context
432 * by the SHUB. It is therefore safe to locally access SHub
436 mmtimer_interrupt(int irq
, void *dev_id
)
439 unsigned long expires
= 0;
440 int result
= IRQ_NONE
;
441 unsigned indx
= cpu_to_node(smp_processor_id());
444 * Do this once for each comparison register
446 for (i
= 0; i
< NUM_COMPARATORS
; i
++) {
447 mmtimer_t
*base
= timers
[indx
] + i
;
448 /* Make sure this doesn't get reused before tasklet_sched */
449 spin_lock(&base
->lock
);
450 if (base
->cpu
== smp_processor_id()) {
452 expires
= base
->timer
->it
.mmtimer
.expires
;
453 /* expires test won't work with shared irqs */
454 if ((mmtimer_int_pending(i
) > 0) ||
455 (expires
&& (expires
< rtc_time()))) {
456 mmtimer_clr_int_pending(i
);
457 tasklet_schedule(&base
->tasklet
);
458 result
= IRQ_HANDLED
;
461 spin_unlock(&base
->lock
);
467 void mmtimer_tasklet(unsigned long data
) {
468 mmtimer_t
*x
= (mmtimer_t
*)data
;
469 struct k_itimer
*t
= x
->timer
;
475 /* Send signal and deal with periodic signals */
476 spin_lock_irqsave(&t
->it_lock
, flags
);
478 /* If timer was deleted between interrupt and here, leave */
483 if (posix_timer_event(t
, 0) != 0) {
485 // printk(KERN_WARNING "mmtimer: cannot deliver signal.\n");
489 if(t
->it
.mmtimer
.incr
) {
491 if (reschedule_periodic_timer(x
)) {
492 printk(KERN_WARNING
"mmtimer: unable to reschedule\n");
496 /* Ensure we don't false trigger in mmtimer_interrupt */
497 t
->it
.mmtimer
.expires
= 0;
499 t
->it_overrun_last
= t
->it_overrun
;
501 spin_unlock(&x
->lock
);
502 spin_unlock_irqrestore(&t
->it_lock
, flags
);
505 static int sgi_timer_create(struct k_itimer
*timer
)
507 /* Insure that a newly created timer is off */
508 timer
->it
.mmtimer
.clock
= TIMER_OFF
;
512 /* This does not really delete a timer. It just insures
513 * that the timer is not active
515 * Assumption: it_lock is already held with irq's disabled
517 static int sgi_timer_del(struct k_itimer
*timr
)
519 int i
= timr
->it
.mmtimer
.clock
;
520 cnodeid_t nodeid
= timr
->it
.mmtimer
.node
;
521 mmtimer_t
*t
= timers
[nodeid
] + i
;
522 unsigned long irqflags
;
524 if (i
!= TIMER_OFF
) {
525 spin_lock_irqsave(&t
->lock
, irqflags
);
526 mmtimer_disable_int(cnodeid_to_nasid(nodeid
),i
);
528 timr
->it
.mmtimer
.clock
= TIMER_OFF
;
529 timr
->it
.mmtimer
.expires
= 0;
530 spin_unlock_irqrestore(&t
->lock
, irqflags
);
535 #define timespec_to_ns(x) ((x).tv_nsec + (x).tv_sec * NSEC_PER_SEC)
536 #define ns_to_timespec(ts, nsec) (ts).tv_sec = div_long_long_rem(nsec, NSEC_PER_SEC, &(ts).tv_nsec)
538 /* Assumption: it_lock is already held with irq's disabled */
539 static void sgi_timer_get(struct k_itimer
*timr
, struct itimerspec
*cur_setting
)
542 if (timr
->it
.mmtimer
.clock
== TIMER_OFF
) {
543 cur_setting
->it_interval
.tv_nsec
= 0;
544 cur_setting
->it_interval
.tv_sec
= 0;
545 cur_setting
->it_value
.tv_nsec
= 0;
546 cur_setting
->it_value
.tv_sec
=0;
550 ns_to_timespec(cur_setting
->it_interval
, timr
->it
.mmtimer
.incr
* sgi_clock_period
);
551 ns_to_timespec(cur_setting
->it_value
, (timr
->it
.mmtimer
.expires
- rtc_time())* sgi_clock_period
);
556 static int sgi_timer_set(struct k_itimer
*timr
, int flags
,
557 struct itimerspec
* new_setting
,
558 struct itimerspec
* old_setting
)
562 unsigned long when
, period
, irqflags
;
568 sgi_timer_get(timr
, old_setting
);
571 when
= timespec_to_ns(new_setting
->it_value
);
572 period
= timespec_to_ns(new_setting
->it_interval
);
578 if (flags
& TIMER_ABSTIME
) {
583 now
= timespec_to_ns(n
);
587 /* Fire the timer immediately */
592 * Convert to sgi clock period. Need to keep rtc_time() as near as possible
593 * to getnstimeofday() in order to be as faithful as possible to the time
596 when
= (when
+ sgi_clock_period
- 1) / sgi_clock_period
+ rtc_time();
597 period
= (period
+ sgi_clock_period
- 1) / sgi_clock_period
;
600 * We are allocating a local SHub comparator. If we would be moved to another
601 * cpu then another SHub may be local to us. Prohibit that by switching off
606 nodeid
= cpu_to_node(smp_processor_id());
608 /* Don't use an allocated timer, or a deleted one that's pending */
609 for(i
= 0; i
< NUM_COMPARATORS
; i
++) {
610 base
= timers
[nodeid
] + i
;
611 if (!base
->timer
&& !base
->tasklet
.state
) {
616 if (i
== NUM_COMPARATORS
) {
621 spin_lock_irqsave(&base
->lock
, irqflags
);
623 if (base
->timer
|| base
->tasklet
.state
!= 0) {
624 spin_unlock_irqrestore(&base
->lock
, irqflags
);
628 base
->cpu
= smp_processor_id();
630 timr
->it
.mmtimer
.clock
= i
;
631 timr
->it
.mmtimer
.node
= nodeid
;
632 timr
->it
.mmtimer
.incr
= period
;
633 timr
->it
.mmtimer
.expires
= when
;
636 if (!mmtimer_setup(i
, when
)) {
637 mmtimer_disable_int(-1, i
);
638 posix_timer_event(timr
, 0);
639 timr
->it
.mmtimer
.expires
= 0;
642 timr
->it
.mmtimer
.expires
-= period
;
643 if (reschedule_periodic_timer(base
))
647 spin_unlock_irqrestore(&base
->lock
, irqflags
);
654 static struct k_clock sgi_clock
= {
656 .clock_set
= sgi_clock_set
,
657 .clock_get
= sgi_clock_get
,
658 .timer_create
= sgi_timer_create
,
659 .nsleep
= do_posix_clock_nonanosleep
,
660 .timer_set
= sgi_timer_set
,
661 .timer_del
= sgi_timer_del
,
662 .timer_get
= sgi_timer_get
666 * mmtimer_init - device initialization routine
668 * Does initial setup for the mmtimer device.
670 static int __init
mmtimer_init(void)
673 cnodeid_t node
, maxn
= -1;
675 if (!ia64_platform_is("sn2"))
679 * Sanity check the cycles/sec variable
681 if (sn_rtc_cycles_per_second
< 100000) {
682 printk(KERN_ERR
"%s: unable to determine clock frequency\n",
687 mmtimer_femtoperiod
= ((unsigned long)1E15
+ sn_rtc_cycles_per_second
/
688 2) / sn_rtc_cycles_per_second
;
690 if (request_irq(SGI_MMTIMER_VECTOR
, mmtimer_interrupt
, IRQF_PERCPU
, MMTIMER_NAME
, NULL
)) {
691 printk(KERN_WARNING
"%s: unable to allocate interrupt.",
696 if (misc_register(&mmtimer_miscdev
)) {
697 printk(KERN_ERR
"%s: failed to register device\n",
702 /* Get max numbered node, calculate slots needed */
703 for_each_online_node(node
) {
708 /* Allocate list of node ptrs to mmtimer_t's */
709 timers
= kzalloc(sizeof(mmtimer_t
*)*maxn
, GFP_KERNEL
);
710 if (timers
== NULL
) {
711 printk(KERN_ERR
"%s: failed to allocate memory for device\n",
716 /* Allocate mmtimer_t's for each online node */
717 for_each_online_node(node
) {
718 timers
[node
] = kmalloc_node(sizeof(mmtimer_t
)*NUM_COMPARATORS
, GFP_KERNEL
, node
);
719 if (timers
[node
] == NULL
) {
720 printk(KERN_ERR
"%s: failed to allocate memory for device\n",
724 for (i
=0; i
< NUM_COMPARATORS
; i
++) {
725 mmtimer_t
* base
= timers
[node
] + i
;
727 spin_lock_init(&base
->lock
);
731 tasklet_init(&base
->tasklet
, mmtimer_tasklet
,
732 (unsigned long) (base
));
736 sgi_clock_period
= sgi_clock
.res
= NSEC_PER_SEC
/ sn_rtc_cycles_per_second
;
737 register_posix_clock(CLOCK_SGI_CYCLE
, &sgi_clock
);
739 printk(KERN_INFO
"%s: v%s, %ld MHz\n", MMTIMER_DESC
, MMTIMER_VERSION
,
740 sn_rtc_cycles_per_second
/(unsigned long)1E6
);
745 for_each_online_node(node
) {
749 misc_deregister(&mmtimer_miscdev
);
751 free_irq(SGI_MMTIMER_VECTOR
, NULL
);
756 module_init(mmtimer_init
);