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