x86, apic: Fix spurious error interrupts triggering on all non-boot APs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / char / hpet.c
bloba3bcb6ba354bb8cf469b0b799724e86d0487be3d
1 /*
2 * Intel & MS High Precision Event Timer Implementation.
4 * Copyright (C) 2003 Intel Corporation
5 * Venki Pallipadi
6 * (c) Copyright 2004 Hewlett-Packard Development Company, L.P.
7 * Bob Picco <robert.picco@hp.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/interrupt.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/smp_lock.h>
18 #include <linux/types.h>
19 #include <linux/miscdevice.h>
20 #include <linux/major.h>
21 #include <linux/ioport.h>
22 #include <linux/fcntl.h>
23 #include <linux/init.h>
24 #include <linux/poll.h>
25 #include <linux/mm.h>
26 #include <linux/proc_fs.h>
27 #include <linux/spinlock.h>
28 #include <linux/sysctl.h>
29 #include <linux/wait.h>
30 #include <linux/bcd.h>
31 #include <linux/seq_file.h>
32 #include <linux/bitops.h>
33 #include <linux/clocksource.h>
35 #include <asm/current.h>
36 #include <asm/uaccess.h>
37 #include <asm/system.h>
38 #include <asm/io.h>
39 #include <asm/irq.h>
40 #include <asm/div64.h>
42 #include <linux/acpi.h>
43 #include <acpi/acpi_bus.h>
44 #include <linux/hpet.h>
47 * The High Precision Event Timer driver.
48 * This driver is closely modelled after the rtc.c driver.
49 * http://www.intel.com/hardwaredesign/hpetspec_1.pdf
51 #define HPET_USER_FREQ (64)
52 #define HPET_DRIFT (500)
54 #define HPET_RANGE_SIZE 1024 /* from HPET spec */
57 /* WARNING -- don't get confused. These macros are never used
58 * to write the (single) counter, and rarely to read it.
59 * They're badly named; to fix, someday.
61 #if BITS_PER_LONG == 64
62 #define write_counter(V, MC) writeq(V, MC)
63 #define read_counter(MC) readq(MC)
64 #else
65 #define write_counter(V, MC) writel(V, MC)
66 #define read_counter(MC) readl(MC)
67 #endif
69 static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ;
71 /* This clocksource driver currently only works on ia64 */
72 #ifdef CONFIG_IA64
73 static void __iomem *hpet_mctr;
75 static cycle_t read_hpet(struct clocksource *cs)
77 return (cycle_t)read_counter((void __iomem *)hpet_mctr);
80 static struct clocksource clocksource_hpet = {
81 .name = "hpet",
82 .rating = 250,
83 .read = read_hpet,
84 .mask = CLOCKSOURCE_MASK(64),
85 .mult = 0, /* to be calculated */
86 .shift = 10,
87 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
89 static struct clocksource *hpet_clocksource;
90 #endif
92 /* A lock for concurrent access by app and isr hpet activity. */
93 static DEFINE_SPINLOCK(hpet_lock);
95 #define HPET_DEV_NAME (7)
97 struct hpet_dev {
98 struct hpets *hd_hpets;
99 struct hpet __iomem *hd_hpet;
100 struct hpet_timer __iomem *hd_timer;
101 unsigned long hd_ireqfreq;
102 unsigned long hd_irqdata;
103 wait_queue_head_t hd_waitqueue;
104 struct fasync_struct *hd_async_queue;
105 unsigned int hd_flags;
106 unsigned int hd_irq;
107 unsigned int hd_hdwirq;
108 char hd_name[HPET_DEV_NAME];
111 struct hpets {
112 struct hpets *hp_next;
113 struct hpet __iomem *hp_hpet;
114 unsigned long hp_hpet_phys;
115 struct clocksource *hp_clocksource;
116 unsigned long long hp_tick_freq;
117 unsigned long hp_delta;
118 unsigned int hp_ntimer;
119 unsigned int hp_which;
120 struct hpet_dev hp_dev[1];
123 static struct hpets *hpets;
125 #define HPET_OPEN 0x0001
126 #define HPET_IE 0x0002 /* interrupt enabled */
127 #define HPET_PERIODIC 0x0004
128 #define HPET_SHARED_IRQ 0x0008
131 #ifndef readq
132 static inline unsigned long long readq(void __iomem *addr)
134 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
136 #endif
138 #ifndef writeq
139 static inline void writeq(unsigned long long v, void __iomem *addr)
141 writel(v & 0xffffffff, addr);
142 writel(v >> 32, addr + 4);
144 #endif
146 static irqreturn_t hpet_interrupt(int irq, void *data)
148 struct hpet_dev *devp;
149 unsigned long isr;
151 devp = data;
152 isr = 1 << (devp - devp->hd_hpets->hp_dev);
154 if ((devp->hd_flags & HPET_SHARED_IRQ) &&
155 !(isr & readl(&devp->hd_hpet->hpet_isr)))
156 return IRQ_NONE;
158 spin_lock(&hpet_lock);
159 devp->hd_irqdata++;
162 * For non-periodic timers, increment the accumulator.
163 * This has the effect of treating non-periodic like periodic.
165 if ((devp->hd_flags & (HPET_IE | HPET_PERIODIC)) == HPET_IE) {
166 unsigned long m, t;
168 t = devp->hd_ireqfreq;
169 m = read_counter(&devp->hd_timer->hpet_compare);
170 write_counter(t + m, &devp->hd_timer->hpet_compare);
173 if (devp->hd_flags & HPET_SHARED_IRQ)
174 writel(isr, &devp->hd_hpet->hpet_isr);
175 spin_unlock(&hpet_lock);
177 wake_up_interruptible(&devp->hd_waitqueue);
179 kill_fasync(&devp->hd_async_queue, SIGIO, POLL_IN);
181 return IRQ_HANDLED;
184 static void hpet_timer_set_irq(struct hpet_dev *devp)
186 unsigned long v;
187 int irq, gsi;
188 struct hpet_timer __iomem *timer;
190 spin_lock_irq(&hpet_lock);
191 if (devp->hd_hdwirq) {
192 spin_unlock_irq(&hpet_lock);
193 return;
196 timer = devp->hd_timer;
198 /* we prefer level triggered mode */
199 v = readl(&timer->hpet_config);
200 if (!(v & Tn_INT_TYPE_CNF_MASK)) {
201 v |= Tn_INT_TYPE_CNF_MASK;
202 writel(v, &timer->hpet_config);
204 spin_unlock_irq(&hpet_lock);
206 v = (readq(&timer->hpet_config) & Tn_INT_ROUTE_CAP_MASK) >>
207 Tn_INT_ROUTE_CAP_SHIFT;
210 * In PIC mode, skip IRQ0-4, IRQ6-9, IRQ12-15 which is always used by
211 * legacy device. In IO APIC mode, we skip all the legacy IRQS.
213 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC)
214 v &= ~0xf3df;
215 else
216 v &= ~0xffff;
218 for (irq = find_first_bit(&v, HPET_MAX_IRQ); irq < HPET_MAX_IRQ;
219 irq = find_next_bit(&v, HPET_MAX_IRQ, 1 + irq)) {
221 if (irq >= nr_irqs) {
222 irq = HPET_MAX_IRQ;
223 break;
226 gsi = acpi_register_gsi(NULL, irq, ACPI_LEVEL_SENSITIVE,
227 ACPI_ACTIVE_LOW);
228 if (gsi > 0)
229 break;
231 /* FIXME: Setup interrupt source table */
234 if (irq < HPET_MAX_IRQ) {
235 spin_lock_irq(&hpet_lock);
236 v = readl(&timer->hpet_config);
237 v |= irq << Tn_INT_ROUTE_CNF_SHIFT;
238 writel(v, &timer->hpet_config);
239 devp->hd_hdwirq = gsi;
240 spin_unlock_irq(&hpet_lock);
242 return;
245 static int hpet_open(struct inode *inode, struct file *file)
247 struct hpet_dev *devp;
248 struct hpets *hpetp;
249 int i;
251 if (file->f_mode & FMODE_WRITE)
252 return -EINVAL;
254 lock_kernel();
255 spin_lock_irq(&hpet_lock);
257 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
258 for (i = 0; i < hpetp->hp_ntimer; i++)
259 if (hpetp->hp_dev[i].hd_flags & HPET_OPEN)
260 continue;
261 else {
262 devp = &hpetp->hp_dev[i];
263 break;
266 if (!devp) {
267 spin_unlock_irq(&hpet_lock);
268 unlock_kernel();
269 return -EBUSY;
272 file->private_data = devp;
273 devp->hd_irqdata = 0;
274 devp->hd_flags |= HPET_OPEN;
275 spin_unlock_irq(&hpet_lock);
276 unlock_kernel();
278 hpet_timer_set_irq(devp);
280 return 0;
283 static ssize_t
284 hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos)
286 DECLARE_WAITQUEUE(wait, current);
287 unsigned long data;
288 ssize_t retval;
289 struct hpet_dev *devp;
291 devp = file->private_data;
292 if (!devp->hd_ireqfreq)
293 return -EIO;
295 if (count < sizeof(unsigned long))
296 return -EINVAL;
298 add_wait_queue(&devp->hd_waitqueue, &wait);
300 for ( ; ; ) {
301 set_current_state(TASK_INTERRUPTIBLE);
303 spin_lock_irq(&hpet_lock);
304 data = devp->hd_irqdata;
305 devp->hd_irqdata = 0;
306 spin_unlock_irq(&hpet_lock);
308 if (data)
309 break;
310 else if (file->f_flags & O_NONBLOCK) {
311 retval = -EAGAIN;
312 goto out;
313 } else if (signal_pending(current)) {
314 retval = -ERESTARTSYS;
315 goto out;
317 schedule();
320 retval = put_user(data, (unsigned long __user *)buf);
321 if (!retval)
322 retval = sizeof(unsigned long);
323 out:
324 __set_current_state(TASK_RUNNING);
325 remove_wait_queue(&devp->hd_waitqueue, &wait);
327 return retval;
330 static unsigned int hpet_poll(struct file *file, poll_table * wait)
332 unsigned long v;
333 struct hpet_dev *devp;
335 devp = file->private_data;
337 if (!devp->hd_ireqfreq)
338 return 0;
340 poll_wait(file, &devp->hd_waitqueue, wait);
342 spin_lock_irq(&hpet_lock);
343 v = devp->hd_irqdata;
344 spin_unlock_irq(&hpet_lock);
346 if (v != 0)
347 return POLLIN | POLLRDNORM;
349 return 0;
352 static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
354 #ifdef CONFIG_HPET_MMAP
355 struct hpet_dev *devp;
356 unsigned long addr;
358 if (((vma->vm_end - vma->vm_start) != PAGE_SIZE) || vma->vm_pgoff)
359 return -EINVAL;
361 devp = file->private_data;
362 addr = devp->hd_hpets->hp_hpet_phys;
364 if (addr & (PAGE_SIZE - 1))
365 return -ENOSYS;
367 vma->vm_flags |= VM_IO;
368 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
370 if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
371 PAGE_SIZE, vma->vm_page_prot)) {
372 printk(KERN_ERR "%s: io_remap_pfn_range failed\n",
373 __func__);
374 return -EAGAIN;
377 return 0;
378 #else
379 return -ENOSYS;
380 #endif
383 static int hpet_fasync(int fd, struct file *file, int on)
385 struct hpet_dev *devp;
387 devp = file->private_data;
389 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
390 return 0;
391 else
392 return -EIO;
395 static int hpet_release(struct inode *inode, struct file *file)
397 struct hpet_dev *devp;
398 struct hpet_timer __iomem *timer;
399 int irq = 0;
401 devp = file->private_data;
402 timer = devp->hd_timer;
404 spin_lock_irq(&hpet_lock);
406 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
407 &timer->hpet_config);
409 irq = devp->hd_irq;
410 devp->hd_irq = 0;
412 devp->hd_ireqfreq = 0;
414 if (devp->hd_flags & HPET_PERIODIC
415 && readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
416 unsigned long v;
418 v = readq(&timer->hpet_config);
419 v ^= Tn_TYPE_CNF_MASK;
420 writeq(v, &timer->hpet_config);
423 devp->hd_flags &= ~(HPET_OPEN | HPET_IE | HPET_PERIODIC);
424 spin_unlock_irq(&hpet_lock);
426 if (irq)
427 free_irq(irq, devp);
429 file->private_data = NULL;
430 return 0;
433 static int hpet_ioctl_common(struct hpet_dev *, int, unsigned long, int);
435 static int
436 hpet_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
437 unsigned long arg)
439 struct hpet_dev *devp;
441 devp = file->private_data;
442 return hpet_ioctl_common(devp, cmd, arg, 0);
445 static int hpet_ioctl_ieon(struct hpet_dev *devp)
447 struct hpet_timer __iomem *timer;
448 struct hpet __iomem *hpet;
449 struct hpets *hpetp;
450 int irq;
451 unsigned long g, v, t, m;
452 unsigned long flags, isr;
454 timer = devp->hd_timer;
455 hpet = devp->hd_hpet;
456 hpetp = devp->hd_hpets;
458 if (!devp->hd_ireqfreq)
459 return -EIO;
461 spin_lock_irq(&hpet_lock);
463 if (devp->hd_flags & HPET_IE) {
464 spin_unlock_irq(&hpet_lock);
465 return -EBUSY;
468 devp->hd_flags |= HPET_IE;
470 if (readl(&timer->hpet_config) & Tn_INT_TYPE_CNF_MASK)
471 devp->hd_flags |= HPET_SHARED_IRQ;
472 spin_unlock_irq(&hpet_lock);
474 irq = devp->hd_hdwirq;
476 if (irq) {
477 unsigned long irq_flags;
479 if (devp->hd_flags & HPET_SHARED_IRQ) {
481 * To prevent the interrupt handler from seeing an
482 * unwanted interrupt status bit, program the timer
483 * so that it will not fire in the near future ...
485 writel(readl(&timer->hpet_config) & ~Tn_TYPE_CNF_MASK,
486 &timer->hpet_config);
487 write_counter(read_counter(&hpet->hpet_mc),
488 &timer->hpet_compare);
489 /* ... and clear any left-over status. */
490 isr = 1 << (devp - devp->hd_hpets->hp_dev);
491 writel(isr, &hpet->hpet_isr);
494 sprintf(devp->hd_name, "hpet%d", (int)(devp - hpetp->hp_dev));
495 irq_flags = devp->hd_flags & HPET_SHARED_IRQ
496 ? IRQF_SHARED : IRQF_DISABLED;
497 if (request_irq(irq, hpet_interrupt, irq_flags,
498 devp->hd_name, (void *)devp)) {
499 printk(KERN_ERR "hpet: IRQ %d is not free\n", irq);
500 irq = 0;
504 if (irq == 0) {
505 spin_lock_irq(&hpet_lock);
506 devp->hd_flags ^= HPET_IE;
507 spin_unlock_irq(&hpet_lock);
508 return -EIO;
511 devp->hd_irq = irq;
512 t = devp->hd_ireqfreq;
513 v = readq(&timer->hpet_config);
515 /* 64-bit comparators are not yet supported through the ioctls,
516 * so force this into 32-bit mode if it supports both modes
518 g = v | Tn_32MODE_CNF_MASK | Tn_INT_ENB_CNF_MASK;
520 if (devp->hd_flags & HPET_PERIODIC) {
521 g |= Tn_TYPE_CNF_MASK;
522 v |= Tn_TYPE_CNF_MASK | Tn_VAL_SET_CNF_MASK;
523 writeq(v, &timer->hpet_config);
524 local_irq_save(flags);
527 * NOTE: First we modify the hidden accumulator
528 * register supported by periodic-capable comparators.
529 * We never want to modify the (single) counter; that
530 * would affect all the comparators. The value written
531 * is the counter value when the first interrupt is due.
533 m = read_counter(&hpet->hpet_mc);
534 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
536 * Then we modify the comparator, indicating the period
537 * for subsequent interrupt.
539 write_counter(t, &timer->hpet_compare);
540 } else {
541 local_irq_save(flags);
542 m = read_counter(&hpet->hpet_mc);
543 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
546 if (devp->hd_flags & HPET_SHARED_IRQ) {
547 isr = 1 << (devp - devp->hd_hpets->hp_dev);
548 writel(isr, &hpet->hpet_isr);
550 writeq(g, &timer->hpet_config);
551 local_irq_restore(flags);
553 return 0;
556 /* converts Hz to number of timer ticks */
557 static inline unsigned long hpet_time_div(struct hpets *hpets,
558 unsigned long dis)
560 unsigned long long m;
562 m = hpets->hp_tick_freq + (dis >> 1);
563 do_div(m, dis);
564 return (unsigned long)m;
567 static int
568 hpet_ioctl_common(struct hpet_dev *devp, int cmd, unsigned long arg, int kernel)
570 struct hpet_timer __iomem *timer;
571 struct hpet __iomem *hpet;
572 struct hpets *hpetp;
573 int err;
574 unsigned long v;
576 switch (cmd) {
577 case HPET_IE_OFF:
578 case HPET_INFO:
579 case HPET_EPI:
580 case HPET_DPI:
581 case HPET_IRQFREQ:
582 timer = devp->hd_timer;
583 hpet = devp->hd_hpet;
584 hpetp = devp->hd_hpets;
585 break;
586 case HPET_IE_ON:
587 return hpet_ioctl_ieon(devp);
588 default:
589 return -EINVAL;
592 err = 0;
594 switch (cmd) {
595 case HPET_IE_OFF:
596 if ((devp->hd_flags & HPET_IE) == 0)
597 break;
598 v = readq(&timer->hpet_config);
599 v &= ~Tn_INT_ENB_CNF_MASK;
600 writeq(v, &timer->hpet_config);
601 if (devp->hd_irq) {
602 free_irq(devp->hd_irq, devp);
603 devp->hd_irq = 0;
605 devp->hd_flags ^= HPET_IE;
606 break;
607 case HPET_INFO:
609 struct hpet_info info;
611 if (devp->hd_ireqfreq)
612 info.hi_ireqfreq =
613 hpet_time_div(hpetp, devp->hd_ireqfreq);
614 else
615 info.hi_ireqfreq = 0;
616 info.hi_flags =
617 readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK;
618 info.hi_hpet = hpetp->hp_which;
619 info.hi_timer = devp - hpetp->hp_dev;
620 if (kernel)
621 memcpy((void *)arg, &info, sizeof(info));
622 else
623 if (copy_to_user((void __user *)arg, &info,
624 sizeof(info)))
625 err = -EFAULT;
626 break;
628 case HPET_EPI:
629 v = readq(&timer->hpet_config);
630 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
631 err = -ENXIO;
632 break;
634 devp->hd_flags |= HPET_PERIODIC;
635 break;
636 case HPET_DPI:
637 v = readq(&timer->hpet_config);
638 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
639 err = -ENXIO;
640 break;
642 if (devp->hd_flags & HPET_PERIODIC &&
643 readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
644 v = readq(&timer->hpet_config);
645 v ^= Tn_TYPE_CNF_MASK;
646 writeq(v, &timer->hpet_config);
648 devp->hd_flags &= ~HPET_PERIODIC;
649 break;
650 case HPET_IRQFREQ:
651 if (!kernel && (arg > hpet_max_freq) &&
652 !capable(CAP_SYS_RESOURCE)) {
653 err = -EACCES;
654 break;
657 if (!arg) {
658 err = -EINVAL;
659 break;
662 devp->hd_ireqfreq = hpet_time_div(hpetp, arg);
665 return err;
668 static const struct file_operations hpet_fops = {
669 .owner = THIS_MODULE,
670 .llseek = no_llseek,
671 .read = hpet_read,
672 .poll = hpet_poll,
673 .ioctl = hpet_ioctl,
674 .open = hpet_open,
675 .release = hpet_release,
676 .fasync = hpet_fasync,
677 .mmap = hpet_mmap,
680 static int hpet_is_known(struct hpet_data *hdp)
682 struct hpets *hpetp;
684 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
685 if (hpetp->hp_hpet_phys == hdp->hd_phys_address)
686 return 1;
688 return 0;
691 static ctl_table hpet_table[] = {
693 .procname = "max-user-freq",
694 .data = &hpet_max_freq,
695 .maxlen = sizeof(int),
696 .mode = 0644,
697 .proc_handler = proc_dointvec,
702 static ctl_table hpet_root[] = {
704 .procname = "hpet",
705 .maxlen = 0,
706 .mode = 0555,
707 .child = hpet_table,
712 static ctl_table dev_root[] = {
714 .procname = "dev",
715 .maxlen = 0,
716 .mode = 0555,
717 .child = hpet_root,
722 static struct ctl_table_header *sysctl_header;
725 * Adjustment for when arming the timer with
726 * initial conditions. That is, main counter
727 * ticks expired before interrupts are enabled.
729 #define TICK_CALIBRATE (1000UL)
731 static unsigned long __hpet_calibrate(struct hpets *hpetp)
733 struct hpet_timer __iomem *timer = NULL;
734 unsigned long t, m, count, i, flags, start;
735 struct hpet_dev *devp;
736 int j;
737 struct hpet __iomem *hpet;
739 for (j = 0, devp = hpetp->hp_dev; j < hpetp->hp_ntimer; j++, devp++)
740 if ((devp->hd_flags & HPET_OPEN) == 0) {
741 timer = devp->hd_timer;
742 break;
745 if (!timer)
746 return 0;
748 hpet = hpetp->hp_hpet;
749 t = read_counter(&timer->hpet_compare);
751 i = 0;
752 count = hpet_time_div(hpetp, TICK_CALIBRATE);
754 local_irq_save(flags);
756 start = read_counter(&hpet->hpet_mc);
758 do {
759 m = read_counter(&hpet->hpet_mc);
760 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
761 } while (i++, (m - start) < count);
763 local_irq_restore(flags);
765 return (m - start) / i;
768 static unsigned long hpet_calibrate(struct hpets *hpetp)
770 unsigned long ret = -1;
771 unsigned long tmp;
774 * Try to calibrate until return value becomes stable small value.
775 * If SMI interruption occurs in calibration loop, the return value
776 * will be big. This avoids its impact.
778 for ( ; ; ) {
779 tmp = __hpet_calibrate(hpetp);
780 if (ret <= tmp)
781 break;
782 ret = tmp;
785 return ret;
788 int hpet_alloc(struct hpet_data *hdp)
790 u64 cap, mcfg;
791 struct hpet_dev *devp;
792 u32 i, ntimer;
793 struct hpets *hpetp;
794 size_t siz;
795 struct hpet __iomem *hpet;
796 static struct hpets *last = NULL;
797 unsigned long period;
798 unsigned long long temp;
799 u32 remainder;
802 * hpet_alloc can be called by platform dependent code.
803 * If platform dependent code has allocated the hpet that
804 * ACPI has also reported, then we catch it here.
806 if (hpet_is_known(hdp)) {
807 printk(KERN_DEBUG "%s: duplicate HPET ignored\n",
808 __func__);
809 return 0;
812 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
813 sizeof(struct hpet_dev));
815 hpetp = kzalloc(siz, GFP_KERNEL);
817 if (!hpetp)
818 return -ENOMEM;
820 hpetp->hp_which = hpet_nhpet++;
821 hpetp->hp_hpet = hdp->hd_address;
822 hpetp->hp_hpet_phys = hdp->hd_phys_address;
824 hpetp->hp_ntimer = hdp->hd_nirqs;
826 for (i = 0; i < hdp->hd_nirqs; i++)
827 hpetp->hp_dev[i].hd_hdwirq = hdp->hd_irq[i];
829 hpet = hpetp->hp_hpet;
831 cap = readq(&hpet->hpet_cap);
833 ntimer = ((cap & HPET_NUM_TIM_CAP_MASK) >> HPET_NUM_TIM_CAP_SHIFT) + 1;
835 if (hpetp->hp_ntimer != ntimer) {
836 printk(KERN_WARNING "hpet: number irqs doesn't agree"
837 " with number of timers\n");
838 kfree(hpetp);
839 return -ENODEV;
842 if (last)
843 last->hp_next = hpetp;
844 else
845 hpets = hpetp;
847 last = hpetp;
849 period = (cap & HPET_COUNTER_CLK_PERIOD_MASK) >>
850 HPET_COUNTER_CLK_PERIOD_SHIFT; /* fs, 10^-15 */
851 temp = 1000000000000000uLL; /* 10^15 femtoseconds per second */
852 temp += period >> 1; /* round */
853 do_div(temp, period);
854 hpetp->hp_tick_freq = temp; /* ticks per second */
856 printk(KERN_INFO "hpet%d: at MMIO 0x%lx, IRQ%s",
857 hpetp->hp_which, hdp->hd_phys_address,
858 hpetp->hp_ntimer > 1 ? "s" : "");
859 for (i = 0; i < hpetp->hp_ntimer; i++)
860 printk("%s %d", i > 0 ? "," : "", hdp->hd_irq[i]);
861 printk("\n");
863 temp = hpetp->hp_tick_freq;
864 remainder = do_div(temp, 1000000);
865 printk(KERN_INFO
866 "hpet%u: %u comparators, %d-bit %u.%06u MHz counter\n",
867 hpetp->hp_which, hpetp->hp_ntimer,
868 cap & HPET_COUNTER_SIZE_MASK ? 64 : 32,
869 (unsigned) temp, remainder);
871 mcfg = readq(&hpet->hpet_config);
872 if ((mcfg & HPET_ENABLE_CNF_MASK) == 0) {
873 write_counter(0L, &hpet->hpet_mc);
874 mcfg |= HPET_ENABLE_CNF_MASK;
875 writeq(mcfg, &hpet->hpet_config);
878 for (i = 0, devp = hpetp->hp_dev; i < hpetp->hp_ntimer; i++, devp++) {
879 struct hpet_timer __iomem *timer;
881 timer = &hpet->hpet_timers[devp - hpetp->hp_dev];
883 devp->hd_hpets = hpetp;
884 devp->hd_hpet = hpet;
885 devp->hd_timer = timer;
888 * If the timer was reserved by platform code,
889 * then make timer unavailable for opens.
891 if (hdp->hd_state & (1 << i)) {
892 devp->hd_flags = HPET_OPEN;
893 continue;
896 init_waitqueue_head(&devp->hd_waitqueue);
899 hpetp->hp_delta = hpet_calibrate(hpetp);
901 /* This clocksource driver currently only works on ia64 */
902 #ifdef CONFIG_IA64
903 if (!hpet_clocksource) {
904 hpet_mctr = (void __iomem *)&hpetp->hp_hpet->hpet_mc;
905 CLKSRC_FSYS_MMIO_SET(clocksource_hpet.fsys_mmio, hpet_mctr);
906 clocksource_hpet.mult = clocksource_hz2mult(hpetp->hp_tick_freq,
907 clocksource_hpet.shift);
908 clocksource_register(&clocksource_hpet);
909 hpetp->hp_clocksource = &clocksource_hpet;
910 hpet_clocksource = &clocksource_hpet;
912 #endif
914 return 0;
917 static acpi_status hpet_resources(struct acpi_resource *res, void *data)
919 struct hpet_data *hdp;
920 acpi_status status;
921 struct acpi_resource_address64 addr;
923 hdp = data;
925 status = acpi_resource_to_address64(res, &addr);
927 if (ACPI_SUCCESS(status)) {
928 hdp->hd_phys_address = addr.minimum;
929 hdp->hd_address = ioremap(addr.minimum, addr.address_length);
931 if (hpet_is_known(hdp)) {
932 iounmap(hdp->hd_address);
933 return AE_ALREADY_EXISTS;
935 } else if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
936 struct acpi_resource_fixed_memory32 *fixmem32;
938 fixmem32 = &res->data.fixed_memory32;
939 if (!fixmem32)
940 return AE_NO_MEMORY;
942 hdp->hd_phys_address = fixmem32->address;
943 hdp->hd_address = ioremap(fixmem32->address,
944 HPET_RANGE_SIZE);
946 if (hpet_is_known(hdp)) {
947 iounmap(hdp->hd_address);
948 return AE_ALREADY_EXISTS;
950 } else if (res->type == ACPI_RESOURCE_TYPE_EXTENDED_IRQ) {
951 struct acpi_resource_extended_irq *irqp;
952 int i, irq;
954 irqp = &res->data.extended_irq;
956 for (i = 0; i < irqp->interrupt_count; i++) {
957 irq = acpi_register_gsi(NULL, irqp->interrupts[i],
958 irqp->triggering, irqp->polarity);
959 if (irq < 0)
960 return AE_ERROR;
962 hdp->hd_irq[hdp->hd_nirqs] = irq;
963 hdp->hd_nirqs++;
967 return AE_OK;
970 static int hpet_acpi_add(struct acpi_device *device)
972 acpi_status result;
973 struct hpet_data data;
975 memset(&data, 0, sizeof(data));
977 result =
978 acpi_walk_resources(device->handle, METHOD_NAME__CRS,
979 hpet_resources, &data);
981 if (ACPI_FAILURE(result))
982 return -ENODEV;
984 if (!data.hd_address || !data.hd_nirqs) {
985 if (data.hd_address)
986 iounmap(data.hd_address);
987 printk("%s: no address or irqs in _CRS\n", __func__);
988 return -ENODEV;
991 return hpet_alloc(&data);
994 static int hpet_acpi_remove(struct acpi_device *device, int type)
996 /* XXX need to unregister clocksource, dealloc mem, etc */
997 return -EINVAL;
1000 static const struct acpi_device_id hpet_device_ids[] = {
1001 {"PNP0103", 0},
1002 {"", 0},
1004 MODULE_DEVICE_TABLE(acpi, hpet_device_ids);
1006 static struct acpi_driver hpet_acpi_driver = {
1007 .name = "hpet",
1008 .ids = hpet_device_ids,
1009 .ops = {
1010 .add = hpet_acpi_add,
1011 .remove = hpet_acpi_remove,
1015 static struct miscdevice hpet_misc = { HPET_MINOR, "hpet", &hpet_fops };
1017 static int __init hpet_init(void)
1019 int result;
1021 result = misc_register(&hpet_misc);
1022 if (result < 0)
1023 return -ENODEV;
1025 sysctl_header = register_sysctl_table(dev_root);
1027 result = acpi_bus_register_driver(&hpet_acpi_driver);
1028 if (result < 0) {
1029 if (sysctl_header)
1030 unregister_sysctl_table(sysctl_header);
1031 misc_deregister(&hpet_misc);
1032 return result;
1035 return 0;
1038 static void __exit hpet_exit(void)
1040 acpi_bus_unregister_driver(&hpet_acpi_driver);
1042 if (sysctl_header)
1043 unregister_sysctl_table(sysctl_header);
1044 misc_deregister(&hpet_misc);
1046 return;
1049 module_init(hpet_init);
1050 module_exit(hpet_exit);
1051 MODULE_AUTHOR("Bob Picco <Robert.Picco@hp.com>");
1052 MODULE_LICENSE("GPL");