]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/char/hpet.c
[PATCH] hpet: remove superfluous register reads
[mirror_ubuntu-artful-kernel.git] / drivers / char / hpet.c
CommitLineData
1da177e4
LT
1/*
2 * Intel & MS High Precision Event Timer Implementation.
3 *
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>
8 *
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.
12 */
13
14#include <linux/config.h>
15#include <linux/interrupt.h>
16#include <linux/module.h>
17#include <linux/kernel.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/proc_fs.h>
26#include <linux/spinlock.h>
27#include <linux/sysctl.h>
28#include <linux/wait.h>
29#include <linux/bcd.h>
30#include <linux/seq_file.h>
31#include <linux/bitops.h>
32
33#include <asm/current.h>
34#include <asm/uaccess.h>
35#include <asm/system.h>
36#include <asm/io.h>
37#include <asm/irq.h>
38#include <asm/div64.h>
39
40#include <linux/acpi.h>
41#include <acpi/acpi_bus.h>
42#include <linux/hpet.h>
43
44/*
45 * The High Precision Event Timer driver.
46 * This driver is closely modelled after the rtc.c driver.
96803820 47 * http://www.intel.com/hardwaredesign/hpetspec.htm
1da177e4
LT
48 */
49#define HPET_USER_FREQ (64)
50#define HPET_DRIFT (500)
51
642d30bb 52static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ;
1da177e4
LT
53
54/* A lock for concurrent access by app and isr hpet activity. */
55static DEFINE_SPINLOCK(hpet_lock);
56/* A lock for concurrent intermodule access to hpet and isr hpet activity. */
57static DEFINE_SPINLOCK(hpet_task_lock);
58
59#define HPET_DEV_NAME (7)
60
61struct hpet_dev {
62 struct hpets *hd_hpets;
63 struct hpet __iomem *hd_hpet;
64 struct hpet_timer __iomem *hd_timer;
65 unsigned long hd_ireqfreq;
66 unsigned long hd_irqdata;
67 wait_queue_head_t hd_waitqueue;
68 struct fasync_struct *hd_async_queue;
69 struct hpet_task *hd_task;
70 unsigned int hd_flags;
71 unsigned int hd_irq;
72 unsigned int hd_hdwirq;
73 char hd_name[HPET_DEV_NAME];
74};
75
76struct hpets {
77 struct hpets *hp_next;
78 struct hpet __iomem *hp_hpet;
79 unsigned long hp_hpet_phys;
80 struct time_interpolator *hp_interpolator;
ba3f213f 81 unsigned long long hp_tick_freq;
1da177e4
LT
82 unsigned long hp_delta;
83 unsigned int hp_ntimer;
84 unsigned int hp_which;
85 struct hpet_dev hp_dev[1];
86};
87
88static struct hpets *hpets;
89
90#define HPET_OPEN 0x0001
91#define HPET_IE 0x0002 /* interrupt enabled */
92#define HPET_PERIODIC 0x0004
93
94#if BITS_PER_LONG == 64
95#define write_counter(V, MC) writeq(V, MC)
96#define read_counter(MC) readq(MC)
97#else
98#define write_counter(V, MC) writel(V, MC)
99#define read_counter(MC) readl(MC)
100#endif
101
102#ifndef readq
887c27f3 103static inline unsigned long long readq(void __iomem *addr)
1da177e4
LT
104{
105 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
106}
107#endif
108
109#ifndef writeq
887c27f3 110static inline void writeq(unsigned long long v, void __iomem *addr)
1da177e4
LT
111{
112 writel(v & 0xffffffff, addr);
113 writel(v >> 32, addr + 4);
114}
115#endif
116
117static irqreturn_t hpet_interrupt(int irq, void *data, struct pt_regs *regs)
118{
119 struct hpet_dev *devp;
120 unsigned long isr;
121
122 devp = data;
123
124 spin_lock(&hpet_lock);
125 devp->hd_irqdata++;
126
127 /*
128 * For non-periodic timers, increment the accumulator.
129 * This has the effect of treating non-periodic like periodic.
130 */
131 if ((devp->hd_flags & (HPET_IE | HPET_PERIODIC)) == HPET_IE) {
132 unsigned long m, t;
133
134 t = devp->hd_ireqfreq;
135 m = read_counter(&devp->hd_hpet->hpet_mc);
136 write_counter(t + m + devp->hd_hpets->hp_delta,
137 &devp->hd_timer->hpet_compare);
138 }
139
140 isr = (1 << (devp - devp->hd_hpets->hp_dev));
141 writeq(isr, &devp->hd_hpet->hpet_isr);
142 spin_unlock(&hpet_lock);
143
144 spin_lock(&hpet_task_lock);
145 if (devp->hd_task)
146 devp->hd_task->ht_func(devp->hd_task->ht_data);
147 spin_unlock(&hpet_task_lock);
148
149 wake_up_interruptible(&devp->hd_waitqueue);
150
151 kill_fasync(&devp->hd_async_queue, SIGIO, POLL_IN);
152
153 return IRQ_HANDLED;
154}
155
156static int hpet_open(struct inode *inode, struct file *file)
157{
158 struct hpet_dev *devp;
159 struct hpets *hpetp;
160 int i;
161
162 if (file->f_mode & FMODE_WRITE)
163 return -EINVAL;
164
165 spin_lock_irq(&hpet_lock);
166
167 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
168 for (i = 0; i < hpetp->hp_ntimer; i++)
169 if (hpetp->hp_dev[i].hd_flags & HPET_OPEN
170 || hpetp->hp_dev[i].hd_task)
171 continue;
172 else {
173 devp = &hpetp->hp_dev[i];
174 break;
175 }
176
177 if (!devp) {
178 spin_unlock_irq(&hpet_lock);
179 return -EBUSY;
180 }
181
182 file->private_data = devp;
183 devp->hd_irqdata = 0;
184 devp->hd_flags |= HPET_OPEN;
185 spin_unlock_irq(&hpet_lock);
186
187 return 0;
188}
189
190static ssize_t
191hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos)
192{
193 DECLARE_WAITQUEUE(wait, current);
194 unsigned long data;
195 ssize_t retval;
196 struct hpet_dev *devp;
197
198 devp = file->private_data;
199 if (!devp->hd_ireqfreq)
200 return -EIO;
201
202 if (count < sizeof(unsigned long))
203 return -EINVAL;
204
205 add_wait_queue(&devp->hd_waitqueue, &wait);
206
207 for ( ; ; ) {
208 set_current_state(TASK_INTERRUPTIBLE);
209
210 spin_lock_irq(&hpet_lock);
211 data = devp->hd_irqdata;
212 devp->hd_irqdata = 0;
213 spin_unlock_irq(&hpet_lock);
214
215 if (data)
216 break;
217 else if (file->f_flags & O_NONBLOCK) {
218 retval = -EAGAIN;
219 goto out;
220 } else if (signal_pending(current)) {
221 retval = -ERESTARTSYS;
222 goto out;
223 }
224 schedule();
225 }
226
227 retval = put_user(data, (unsigned long __user *)buf);
228 if (!retval)
229 retval = sizeof(unsigned long);
230out:
231 __set_current_state(TASK_RUNNING);
232 remove_wait_queue(&devp->hd_waitqueue, &wait);
233
234 return retval;
235}
236
237static unsigned int hpet_poll(struct file *file, poll_table * wait)
238{
239 unsigned long v;
240 struct hpet_dev *devp;
241
242 devp = file->private_data;
243
244 if (!devp->hd_ireqfreq)
245 return 0;
246
247 poll_wait(file, &devp->hd_waitqueue, wait);
248
249 spin_lock_irq(&hpet_lock);
250 v = devp->hd_irqdata;
251 spin_unlock_irq(&hpet_lock);
252
253 if (v != 0)
254 return POLLIN | POLLRDNORM;
255
256 return 0;
257}
258
259static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
260{
261#ifdef CONFIG_HPET_MMAP
262 struct hpet_dev *devp;
263 unsigned long addr;
264
265 if (((vma->vm_end - vma->vm_start) != PAGE_SIZE) || vma->vm_pgoff)
266 return -EINVAL;
267
268 devp = file->private_data;
269 addr = devp->hd_hpets->hp_hpet_phys;
270
271 if (addr & (PAGE_SIZE - 1))
272 return -ENOSYS;
273
274 vma->vm_flags |= VM_IO;
275 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1da177e4
LT
276
277 if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
278 PAGE_SIZE, vma->vm_page_prot)) {
279 printk(KERN_ERR "remap_pfn_range failed in hpet.c\n");
280 return -EAGAIN;
281 }
282
283 return 0;
284#else
285 return -ENOSYS;
286#endif
287}
288
289static int hpet_fasync(int fd, struct file *file, int on)
290{
291 struct hpet_dev *devp;
292
293 devp = file->private_data;
294
295 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
296 return 0;
297 else
298 return -EIO;
299}
300
301static int hpet_release(struct inode *inode, struct file *file)
302{
303 struct hpet_dev *devp;
304 struct hpet_timer __iomem *timer;
305 int irq = 0;
306
307 devp = file->private_data;
308 timer = devp->hd_timer;
309
310 spin_lock_irq(&hpet_lock);
311
312 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
313 &timer->hpet_config);
314
315 irq = devp->hd_irq;
316 devp->hd_irq = 0;
317
318 devp->hd_ireqfreq = 0;
319
320 if (devp->hd_flags & HPET_PERIODIC
321 && readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
322 unsigned long v;
323
324 v = readq(&timer->hpet_config);
325 v ^= Tn_TYPE_CNF_MASK;
326 writeq(v, &timer->hpet_config);
327 }
328
329 devp->hd_flags &= ~(HPET_OPEN | HPET_IE | HPET_PERIODIC);
330 spin_unlock_irq(&hpet_lock);
331
332 if (irq)
333 free_irq(irq, devp);
334
335 if (file->f_flags & FASYNC)
336 hpet_fasync(-1, file, 0);
337
338 file->private_data = NULL;
339 return 0;
340}
341
342static int hpet_ioctl_common(struct hpet_dev *, int, unsigned long, int);
343
344static int
345hpet_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
346 unsigned long arg)
347{
348 struct hpet_dev *devp;
349
350 devp = file->private_data;
351 return hpet_ioctl_common(devp, cmd, arg, 0);
352}
353
354static int hpet_ioctl_ieon(struct hpet_dev *devp)
355{
356 struct hpet_timer __iomem *timer;
357 struct hpet __iomem *hpet;
358 struct hpets *hpetp;
359 int irq;
360 unsigned long g, v, t, m;
361 unsigned long flags, isr;
362
363 timer = devp->hd_timer;
364 hpet = devp->hd_hpet;
365 hpetp = devp->hd_hpets;
366
9090e6db
CL
367 if (!devp->hd_ireqfreq)
368 return -EIO;
369
1da177e4
LT
370 spin_lock_irq(&hpet_lock);
371
372 if (devp->hd_flags & HPET_IE) {
373 spin_unlock_irq(&hpet_lock);
374 return -EBUSY;
375 }
376
377 devp->hd_flags |= HPET_IE;
378 spin_unlock_irq(&hpet_lock);
379
1da177e4
LT
380 irq = devp->hd_hdwirq;
381
382 if (irq) {
383 sprintf(devp->hd_name, "hpet%d", (int)(devp - hpetp->hp_dev));
384
385 if (request_irq
386 (irq, hpet_interrupt, SA_INTERRUPT, devp->hd_name, (void *)devp)) {
387 printk(KERN_ERR "hpet: IRQ %d is not free\n", irq);
388 irq = 0;
389 }
390 }
391
392 if (irq == 0) {
393 spin_lock_irq(&hpet_lock);
394 devp->hd_flags ^= HPET_IE;
395 spin_unlock_irq(&hpet_lock);
396 return -EIO;
397 }
398
399 devp->hd_irq = irq;
400 t = devp->hd_ireqfreq;
401 v = readq(&timer->hpet_config);
402 g = v | Tn_INT_ENB_CNF_MASK;
403
404 if (devp->hd_flags & HPET_PERIODIC) {
405 write_counter(t, &timer->hpet_compare);
406 g |= Tn_TYPE_CNF_MASK;
407 v |= Tn_TYPE_CNF_MASK;
408 writeq(v, &timer->hpet_config);
409 v |= Tn_VAL_SET_CNF_MASK;
410 writeq(v, &timer->hpet_config);
411 local_irq_save(flags);
412 m = read_counter(&hpet->hpet_mc);
413 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
414 } else {
415 local_irq_save(flags);
416 m = read_counter(&hpet->hpet_mc);
417 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
418 }
419
420 isr = (1 << (devp - hpets->hp_dev));
421 writeq(isr, &hpet->hpet_isr);
422 writeq(g, &timer->hpet_config);
423 local_irq_restore(flags);
424
425 return 0;
426}
427
ba3f213f
CL
428/* converts Hz to number of timer ticks */
429static inline unsigned long hpet_time_div(struct hpets *hpets,
430 unsigned long dis)
1da177e4 431{
ba3f213f 432 unsigned long long m;
1da177e4 433
ba3f213f 434 m = hpets->hp_tick_freq + (dis >> 1);
1da177e4 435 do_div(m, dis);
1da177e4
LT
436 return (unsigned long)m;
437}
438
439static int
440hpet_ioctl_common(struct hpet_dev *devp, int cmd, unsigned long arg, int kernel)
441{
442 struct hpet_timer __iomem *timer;
443 struct hpet __iomem *hpet;
444 struct hpets *hpetp;
445 int err;
446 unsigned long v;
447
448 switch (cmd) {
449 case HPET_IE_OFF:
450 case HPET_INFO:
451 case HPET_EPI:
452 case HPET_DPI:
453 case HPET_IRQFREQ:
454 timer = devp->hd_timer;
455 hpet = devp->hd_hpet;
456 hpetp = devp->hd_hpets;
457 break;
458 case HPET_IE_ON:
459 return hpet_ioctl_ieon(devp);
460 default:
461 return -EINVAL;
462 }
463
464 err = 0;
465
466 switch (cmd) {
467 case HPET_IE_OFF:
468 if ((devp->hd_flags & HPET_IE) == 0)
469 break;
470 v = readq(&timer->hpet_config);
471 v &= ~Tn_INT_ENB_CNF_MASK;
472 writeq(v, &timer->hpet_config);
473 if (devp->hd_irq) {
474 free_irq(devp->hd_irq, devp);
475 devp->hd_irq = 0;
476 }
477 devp->hd_flags ^= HPET_IE;
478 break;
479 case HPET_INFO:
480 {
481 struct hpet_info info;
482
ba3f213f 483 info.hi_ireqfreq = hpet_time_div(hpetp,
1da177e4
LT
484 devp->hd_ireqfreq);
485 info.hi_flags =
486 readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK;
487 info.hi_hpet = devp->hd_hpets->hp_which;
488 info.hi_timer = devp - devp->hd_hpets->hp_dev;
489 if (copy_to_user((void __user *)arg, &info, sizeof(info)))
490 err = -EFAULT;
491 break;
492 }
493 case HPET_EPI:
494 v = readq(&timer->hpet_config);
495 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
496 err = -ENXIO;
497 break;
498 }
499 devp->hd_flags |= HPET_PERIODIC;
500 break;
501 case HPET_DPI:
502 v = readq(&timer->hpet_config);
503 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
504 err = -ENXIO;
505 break;
506 }
507 if (devp->hd_flags & HPET_PERIODIC &&
508 readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
509 v = readq(&timer->hpet_config);
510 v ^= Tn_TYPE_CNF_MASK;
511 writeq(v, &timer->hpet_config);
512 }
513 devp->hd_flags &= ~HPET_PERIODIC;
514 break;
515 case HPET_IRQFREQ:
516 if (!kernel && (arg > hpet_max_freq) &&
517 !capable(CAP_SYS_RESOURCE)) {
518 err = -EACCES;
519 break;
520 }
521
9090e6db 522 if (!arg || (arg & (arg - 1))) {
1da177e4
LT
523 err = -EINVAL;
524 break;
525 }
526
ba3f213f 527 devp->hd_ireqfreq = hpet_time_div(hpetp, arg);
1da177e4
LT
528 }
529
530 return err;
531}
532
533static struct file_operations hpet_fops = {
534 .owner = THIS_MODULE,
535 .llseek = no_llseek,
536 .read = hpet_read,
537 .poll = hpet_poll,
538 .ioctl = hpet_ioctl,
539 .open = hpet_open,
540 .release = hpet_release,
541 .fasync = hpet_fasync,
542 .mmap = hpet_mmap,
543};
544
545EXPORT_SYMBOL(hpet_alloc);
546EXPORT_SYMBOL(hpet_register);
547EXPORT_SYMBOL(hpet_unregister);
548EXPORT_SYMBOL(hpet_control);
549
550int hpet_register(struct hpet_task *tp, int periodic)
551{
552 unsigned int i;
553 u64 mask;
554 struct hpet_timer __iomem *timer;
555 struct hpet_dev *devp;
556 struct hpets *hpetp;
557
558 switch (periodic) {
559 case 1:
560 mask = Tn_PER_INT_CAP_MASK;
561 break;
562 case 0:
563 mask = 0;
564 break;
565 default:
566 return -EINVAL;
567 }
568
569 spin_lock_irq(&hpet_task_lock);
570 spin_lock(&hpet_lock);
571
572 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
573 for (timer = hpetp->hp_hpet->hpet_timers, i = 0;
574 i < hpetp->hp_ntimer; i++, timer++) {
575 if ((readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK)
576 != mask)
577 continue;
578
579 devp = &hpetp->hp_dev[i];
580
581 if (devp->hd_flags & HPET_OPEN || devp->hd_task) {
582 devp = NULL;
583 continue;
584 }
585
586 tp->ht_opaque = devp;
587 devp->hd_task = tp;
588 break;
589 }
590
591 spin_unlock(&hpet_lock);
592 spin_unlock_irq(&hpet_task_lock);
593
594 if (tp->ht_opaque)
595 return 0;
596 else
597 return -EBUSY;
598}
599
600static inline int hpet_tpcheck(struct hpet_task *tp)
601{
602 struct hpet_dev *devp;
603 struct hpets *hpetp;
604
605 devp = tp->ht_opaque;
606
607 if (!devp)
608 return -ENXIO;
609
610 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
611 if (devp >= hpetp->hp_dev
612 && devp < (hpetp->hp_dev + hpetp->hp_ntimer)
613 && devp->hd_hpet == hpetp->hp_hpet)
614 return 0;
615
616 return -ENXIO;
617}
618
619int hpet_unregister(struct hpet_task *tp)
620{
621 struct hpet_dev *devp;
622 struct hpet_timer __iomem *timer;
623 int err;
624
625 if ((err = hpet_tpcheck(tp)))
626 return err;
627
628 spin_lock_irq(&hpet_task_lock);
629 spin_lock(&hpet_lock);
630
631 devp = tp->ht_opaque;
632 if (devp->hd_task != tp) {
633 spin_unlock(&hpet_lock);
634 spin_unlock_irq(&hpet_task_lock);
635 return -ENXIO;
636 }
637
638 timer = devp->hd_timer;
639 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
640 &timer->hpet_config);
641 devp->hd_flags &= ~(HPET_IE | HPET_PERIODIC);
642 devp->hd_task = NULL;
643 spin_unlock(&hpet_lock);
644 spin_unlock_irq(&hpet_task_lock);
645
646 return 0;
647}
648
649int hpet_control(struct hpet_task *tp, unsigned int cmd, unsigned long arg)
650{
651 struct hpet_dev *devp;
652 int err;
653
654 if ((err = hpet_tpcheck(tp)))
655 return err;
656
657 spin_lock_irq(&hpet_lock);
658 devp = tp->ht_opaque;
659 if (devp->hd_task != tp) {
660 spin_unlock_irq(&hpet_lock);
661 return -ENXIO;
662 }
663 spin_unlock_irq(&hpet_lock);
664 return hpet_ioctl_common(devp, cmd, arg, 1);
665}
666
667static ctl_table hpet_table[] = {
668 {
669 .ctl_name = 1,
670 .procname = "max-user-freq",
671 .data = &hpet_max_freq,
672 .maxlen = sizeof(int),
673 .mode = 0644,
674 .proc_handler = &proc_dointvec,
675 },
676 {.ctl_name = 0}
677};
678
679static ctl_table hpet_root[] = {
680 {
681 .ctl_name = 1,
682 .procname = "hpet",
683 .maxlen = 0,
684 .mode = 0555,
685 .child = hpet_table,
686 },
687 {.ctl_name = 0}
688};
689
690static ctl_table dev_root[] = {
691 {
692 .ctl_name = CTL_DEV,
693 .procname = "dev",
694 .maxlen = 0,
695 .mode = 0555,
696 .child = hpet_root,
697 },
698 {.ctl_name = 0}
699};
700
701static struct ctl_table_header *sysctl_header;
702
703static void hpet_register_interpolator(struct hpets *hpetp)
704{
705#ifdef CONFIG_TIME_INTERPOLATION
706 struct time_interpolator *ti;
707
708 ti = kmalloc(sizeof(*ti), GFP_KERNEL);
709 if (!ti)
710 return;
711
712 memset(ti, 0, sizeof(*ti));
713 ti->source = TIME_SOURCE_MMIO64;
714 ti->shift = 10;
715 ti->addr = &hpetp->hp_hpet->hpet_mc;
ba3f213f 716 ti->frequency = hpetp->hp_tick_freq;
96803820 717 ti->drift = HPET_DRIFT;
1da177e4
LT
718 ti->mask = -1;
719
720 hpetp->hp_interpolator = ti;
721 register_time_interpolator(ti);
722#endif
723}
724
725/*
726 * Adjustment for when arming the timer with
727 * initial conditions. That is, main counter
728 * ticks expired before interrupts are enabled.
729 */
730#define TICK_CALIBRATE (1000UL)
731
732static unsigned long hpet_calibrate(struct hpets *hpetp)
733{
734 struct hpet_timer __iomem *timer = NULL;
735 unsigned long t, m, count, i, flags, start;
736 struct hpet_dev *devp;
737 int j;
738 struct hpet __iomem *hpet;
739
740 for (j = 0, devp = hpetp->hp_dev; j < hpetp->hp_ntimer; j++, devp++)
741 if ((devp->hd_flags & HPET_OPEN) == 0) {
742 timer = devp->hd_timer;
743 break;
744 }
745
746 if (!timer)
747 return 0;
748
749 hpet = hpets->hp_hpet;
750 t = read_counter(&timer->hpet_compare);
751
752 i = 0;
ba3f213f 753 count = hpet_time_div(hpetp, TICK_CALIBRATE);
1da177e4
LT
754
755 local_irq_save(flags);
756
757 start = read_counter(&hpet->hpet_mc);
758
759 do {
760 m = read_counter(&hpet->hpet_mc);
761 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
762 } while (i++, (m - start) < count);
763
764 local_irq_restore(flags);
765
766 return (m - start) / i;
767}
768
769int hpet_alloc(struct hpet_data *hdp)
770{
771 u64 cap, mcfg;
772 struct hpet_dev *devp;
773 u32 i, ntimer;
774 struct hpets *hpetp;
775 size_t siz;
776 struct hpet __iomem *hpet;
777 static struct hpets *last = (struct hpets *)0;
ba3f213f
CL
778 unsigned long ns, period;
779 unsigned long long temp;
1da177e4
LT
780
781 /*
782 * hpet_alloc can be called by platform dependent code.
783 * if platform dependent code has allocated the hpet
784 * ACPI also reports hpet, then we catch it here.
785 */
786 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
787 if (hpetp->hp_hpet == hdp->hd_address)
788 return 0;
789
790 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
791 sizeof(struct hpet_dev));
792
793 hpetp = kmalloc(siz, GFP_KERNEL);
794
795 if (!hpetp)
796 return -ENOMEM;
797
798 memset(hpetp, 0, siz);
799
800 hpetp->hp_which = hpet_nhpet++;
801 hpetp->hp_hpet = hdp->hd_address;
802 hpetp->hp_hpet_phys = hdp->hd_phys_address;
803
804 hpetp->hp_ntimer = hdp->hd_nirqs;
805
806 for (i = 0; i < hdp->hd_nirqs; i++)
807 hpetp->hp_dev[i].hd_hdwirq = hdp->hd_irq[i];
808
809 hpet = hpetp->hp_hpet;
810
811 cap = readq(&hpet->hpet_cap);
812
813 ntimer = ((cap & HPET_NUM_TIM_CAP_MASK) >> HPET_NUM_TIM_CAP_SHIFT) + 1;
814
815 if (hpetp->hp_ntimer != ntimer) {
816 printk(KERN_WARNING "hpet: number irqs doesn't agree"
817 " with number of timers\n");
818 kfree(hpetp);
819 return -ENODEV;
820 }
821
822 if (last)
823 last->hp_next = hpetp;
824 else
825 hpets = hpetp;
826
827 last = hpetp;
828
ba3f213f
CL
829 period = (cap & HPET_COUNTER_CLK_PERIOD_MASK) >>
830 HPET_COUNTER_CLK_PERIOD_SHIFT; /* fs, 10^-15 */
831 temp = 1000000000000000uLL; /* 10^15 femtoseconds per second */
832 temp += period >> 1; /* round */
833 do_div(temp, period);
834 hpetp->hp_tick_freq = temp; /* ticks per second */
1da177e4
LT
835
836 printk(KERN_INFO "hpet%d: at MMIO 0x%lx, IRQ%s",
837 hpetp->hp_which, hdp->hd_phys_address,
838 hpetp->hp_ntimer > 1 ? "s" : "");
839 for (i = 0; i < hpetp->hp_ntimer; i++)
840 printk("%s %d", i > 0 ? "," : "", hdp->hd_irq[i]);
841 printk("\n");
842
ba3f213f 843 ns = period / 1000000; /* convert to nanoseconds, 10^-9 */
1da177e4
LT
844 printk(KERN_INFO "hpet%d: %ldns tick, %d %d-bit timers\n",
845 hpetp->hp_which, ns, hpetp->hp_ntimer,
846 cap & HPET_COUNTER_SIZE_MASK ? 64 : 32);
847
848 mcfg = readq(&hpet->hpet_config);
849 if ((mcfg & HPET_ENABLE_CNF_MASK) == 0) {
850 write_counter(0L, &hpet->hpet_mc);
851 mcfg |= HPET_ENABLE_CNF_MASK;
852 writeq(mcfg, &hpet->hpet_config);
853 }
854
642d30bb 855 for (i = 0, devp = hpetp->hp_dev; i < hpetp->hp_ntimer; i++, devp++) {
1da177e4
LT
856 struct hpet_timer __iomem *timer;
857
858 timer = &hpet->hpet_timers[devp - hpetp->hp_dev];
1da177e4
LT
859
860 devp->hd_hpets = hpetp;
861 devp->hd_hpet = hpet;
862 devp->hd_timer = timer;
863
864 /*
865 * If the timer was reserved by platform code,
866 * then make timer unavailable for opens.
867 */
868 if (hdp->hd_state & (1 << i)) {
869 devp->hd_flags = HPET_OPEN;
870 continue;
871 }
872
873 init_waitqueue_head(&devp->hd_waitqueue);
874 }
875
876 hpetp->hp_delta = hpet_calibrate(hpetp);
877 hpet_register_interpolator(hpetp);
878
879 return 0;
880}
881
882static acpi_status hpet_resources(struct acpi_resource *res, void *data)
883{
884 struct hpet_data *hdp;
885 acpi_status status;
886 struct acpi_resource_address64 addr;
887 struct hpets *hpetp;
888
889 hdp = data;
890
891 status = acpi_resource_to_address64(res, &addr);
892
893 if (ACPI_SUCCESS(status)) {
894 unsigned long size;
895
896 size = addr.max_address_range - addr.min_address_range + 1;
897 hdp->hd_phys_address = addr.min_address_range;
898 hdp->hd_address = ioremap(addr.min_address_range, size);
899
900 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
901 if (hpetp->hp_hpet == hdp->hd_address)
902 return -EBUSY;
903 } else if (res->id == ACPI_RSTYPE_EXT_IRQ) {
904 struct acpi_resource_ext_irq *irqp;
905 int i;
906
907 irqp = &res->data.extended_irq;
908
909 if (irqp->number_of_interrupts > 0) {
910 hdp->hd_nirqs = irqp->number_of_interrupts;
911
a9bd53bc
KK
912 for (i = 0; i < hdp->hd_nirqs; i++) {
913 int rc =
1da177e4
LT
914 acpi_register_gsi(irqp->interrupts[i],
915 irqp->edge_level,
916 irqp->active_high_low);
a9bd53bc
KK
917 if (rc < 0)
918 return AE_ERROR;
919 hdp->hd_irq[i] = rc;
920 }
1da177e4
LT
921 }
922 }
923
924 return AE_OK;
925}
926
927static int hpet_acpi_add(struct acpi_device *device)
928{
929 acpi_status result;
930 struct hpet_data data;
931
932 memset(&data, 0, sizeof(data));
933
934 result =
935 acpi_walk_resources(device->handle, METHOD_NAME__CRS,
936 hpet_resources, &data);
937
938 if (ACPI_FAILURE(result))
939 return -ENODEV;
940
941 if (!data.hd_address || !data.hd_nirqs) {
942 printk("%s: no address or irqs in _CRS\n", __FUNCTION__);
943 return -ENODEV;
944 }
945
946 return hpet_alloc(&data);
947}
948
949static int hpet_acpi_remove(struct acpi_device *device, int type)
950{
951 /* XXX need to unregister interpolator, dealloc mem, etc */
952 return -EINVAL;
953}
954
955static struct acpi_driver hpet_acpi_driver = {
956 .name = "hpet",
957 .ids = "PNP0103",
958 .ops = {
959 .add = hpet_acpi_add,
960 .remove = hpet_acpi_remove,
961 },
962};
963
964static struct miscdevice hpet_misc = { HPET_MINOR, "hpet", &hpet_fops };
965
966static int __init hpet_init(void)
967{
968 int result;
969
970 result = misc_register(&hpet_misc);
971 if (result < 0)
972 return -ENODEV;
973
974 sysctl_header = register_sysctl_table(dev_root, 0);
975
976 result = acpi_bus_register_driver(&hpet_acpi_driver);
977 if (result < 0) {
978 if (sysctl_header)
979 unregister_sysctl_table(sysctl_header);
980 misc_deregister(&hpet_misc);
981 return result;
982 }
983
984 return 0;
985}
986
987static void __exit hpet_exit(void)
988{
989 acpi_bus_unregister_driver(&hpet_acpi_driver);
990
991 if (sysctl_header)
992 unregister_sysctl_table(sysctl_header);
993 misc_deregister(&hpet_misc);
994
995 return;
996}
997
998module_init(hpet_init);
999module_exit(hpet_exit);
1000MODULE_AUTHOR("Bob Picco <Robert.Picco@hp.com>");
1001MODULE_LICENSE("GPL");