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