blob: c9bf5d44402d2f5f2d336e056a63f2323e337575 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/interrupt.h>
15#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/types.h>
18#include <linux/miscdevice.h>
19#include <linux/major.h>
20#include <linux/ioport.h>
21#include <linux/fcntl.h>
22#include <linux/init.h>
23#include <linux/poll.h>
Al Virof23f6e02006-10-20 15:17:02 -040024#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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>
Tony Luck0aa366f2007-07-20 11:22:30 -070032#include <linux/clocksource.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/current.h>
35#include <asm/uaccess.h>
36#include <asm/system.h>
37#include <asm/io.h>
38#include <asm/irq.h>
39#include <asm/div64.h>
40
41#include <linux/acpi.h>
42#include <acpi/acpi_bus.h>
43#include <linux/hpet.h>
44
45/*
46 * The High Precision Event Timer driver.
47 * This driver is closely modelled after the rtc.c driver.
Alex Williamson96803822005-09-06 15:17:54 -070048 * http://www.intel.com/hardwaredesign/hpetspec.htm
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
50#define HPET_USER_FREQ (64)
51#define HPET_DRIFT (500)
52
Randy Dunlap757c4722005-10-30 15:03:42 -080053#define HPET_RANGE_SIZE 1024 /* from HPET spec */
54
Tony Luck0aa366f2007-07-20 11:22:30 -070055#if BITS_PER_LONG == 64
56#define write_counter(V, MC) writeq(V, MC)
57#define read_counter(MC) readq(MC)
58#else
59#define write_counter(V, MC) writel(V, MC)
60#define read_counter(MC) readl(MC)
61#endif
62
Clemens Ladisch642d30b2005-10-30 15:03:31 -080063static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030065/* This clocksource driver currently only works on ia64 */
66#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -070067static void __iomem *hpet_mctr;
68
69static cycle_t read_hpet(void)
70{
71 return (cycle_t)read_counter((void __iomem *)hpet_mctr);
72}
73
74static struct clocksource clocksource_hpet = {
75 .name = "hpet",
76 .rating = 250,
77 .read = read_hpet,
Al Viro712aaa12007-07-26 17:34:49 +010078 .mask = CLOCKSOURCE_MASK(64),
Tony Luck0aa366f2007-07-20 11:22:30 -070079 .mult = 0, /*to be caluclated*/
80 .shift = 10,
81 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
82};
83static struct clocksource *hpet_clocksource;
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030084#endif
Tony Luck0aa366f2007-07-20 11:22:30 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* A lock for concurrent access by app and isr hpet activity. */
87static DEFINE_SPINLOCK(hpet_lock);
88/* A lock for concurrent intermodule access to hpet and isr hpet activity. */
89static DEFINE_SPINLOCK(hpet_task_lock);
90
91#define HPET_DEV_NAME (7)
92
93struct hpet_dev {
94 struct hpets *hd_hpets;
95 struct hpet __iomem *hd_hpet;
96 struct hpet_timer __iomem *hd_timer;
97 unsigned long hd_ireqfreq;
98 unsigned long hd_irqdata;
99 wait_queue_head_t hd_waitqueue;
100 struct fasync_struct *hd_async_queue;
101 struct hpet_task *hd_task;
102 unsigned int hd_flags;
103 unsigned int hd_irq;
104 unsigned int hd_hdwirq;
105 char hd_name[HPET_DEV_NAME];
106};
107
108struct hpets {
109 struct hpets *hp_next;
110 struct hpet __iomem *hp_hpet;
111 unsigned long hp_hpet_phys;
Tony Luck0aa366f2007-07-20 11:22:30 -0700112 struct clocksource *hp_clocksource;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800113 unsigned long long hp_tick_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 unsigned long hp_delta;
115 unsigned int hp_ntimer;
116 unsigned int hp_which;
117 struct hpet_dev hp_dev[1];
118};
119
120static struct hpets *hpets;
121
122#define HPET_OPEN 0x0001
123#define HPET_IE 0x0002 /* interrupt enabled */
124#define HPET_PERIODIC 0x0004
Clemens Ladisch0d290862005-10-30 15:03:34 -0800125#define HPET_SHARED_IRQ 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128#ifndef readq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700129static inline unsigned long long readq(void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
132}
133#endif
134
135#ifndef writeq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700136static inline void writeq(unsigned long long v, void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 writel(v & 0xffffffff, addr);
139 writel(v >> 32, addr + 4);
140}
141#endif
142
David Howells7d12e782006-10-05 14:55:46 +0100143static irqreturn_t hpet_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 struct hpet_dev *devp;
146 unsigned long isr;
147
148 devp = data;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800149 isr = 1 << (devp - devp->hd_hpets->hp_dev);
150
151 if ((devp->hd_flags & HPET_SHARED_IRQ) &&
152 !(isr & readl(&devp->hd_hpet->hpet_isr)))
153 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 spin_lock(&hpet_lock);
156 devp->hd_irqdata++;
157
158 /*
159 * For non-periodic timers, increment the accumulator.
160 * This has the effect of treating non-periodic like periodic.
161 */
162 if ((devp->hd_flags & (HPET_IE | HPET_PERIODIC)) == HPET_IE) {
163 unsigned long m, t;
164
165 t = devp->hd_ireqfreq;
166 m = read_counter(&devp->hd_hpet->hpet_mc);
167 write_counter(t + m + devp->hd_hpets->hp_delta,
168 &devp->hd_timer->hpet_compare);
169 }
170
Clemens Ladisch0d290862005-10-30 15:03:34 -0800171 if (devp->hd_flags & HPET_SHARED_IRQ)
172 writel(isr, &devp->hd_hpet->hpet_isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 spin_unlock(&hpet_lock);
174
175 spin_lock(&hpet_task_lock);
176 if (devp->hd_task)
177 devp->hd_task->ht_func(devp->hd_task->ht_data);
178 spin_unlock(&hpet_task_lock);
179
180 wake_up_interruptible(&devp->hd_waitqueue);
181
182 kill_fasync(&devp->hd_async_queue, SIGIO, POLL_IN);
183
184 return IRQ_HANDLED;
185}
186
Kevin Hao70ef6d52008-05-29 18:41:04 +0800187static void hpet_timer_set_irq(struct hpet_dev *devp)
188{
189 unsigned long v;
190 int irq, gsi;
191 struct hpet_timer __iomem *timer;
192
193 spin_lock_irq(&hpet_lock);
194 if (devp->hd_hdwirq) {
195 spin_unlock_irq(&hpet_lock);
196 return;
197 }
198
199 timer = devp->hd_timer;
200
201 /* we prefer level triggered mode */
202 v = readl(&timer->hpet_config);
203 if (!(v & Tn_INT_TYPE_CNF_MASK)) {
204 v |= Tn_INT_TYPE_CNF_MASK;
205 writel(v, &timer->hpet_config);
206 }
207 spin_unlock_irq(&hpet_lock);
208
209 v = (readq(&timer->hpet_config) & Tn_INT_ROUTE_CAP_MASK) >>
210 Tn_INT_ROUTE_CAP_SHIFT;
211
212 /*
213 * In PIC mode, skip IRQ0-4, IRQ6-9, IRQ12-15 which is always used by
214 * legacy device. In IO APIC mode, we skip all the legacy IRQS.
215 */
216 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC)
217 v &= ~0xf3df;
218 else
219 v &= ~0xffff;
220
221 for (irq = find_first_bit(&v, HPET_MAX_IRQ); irq < HPET_MAX_IRQ;
222 irq = find_next_bit(&v, HPET_MAX_IRQ, 1 + irq)) {
223
224 if (irq >= NR_IRQS) {
225 irq = HPET_MAX_IRQ;
226 break;
227 }
228
229 gsi = acpi_register_gsi(irq, ACPI_LEVEL_SENSITIVE,
230 ACPI_ACTIVE_LOW);
231 if (gsi > 0)
232 break;
233
234 /* FIXME: Setup interrupt source table */
235 }
236
237 if (irq < HPET_MAX_IRQ) {
238 spin_lock_irq(&hpet_lock);
239 v = readl(&timer->hpet_config);
240 v |= irq << Tn_INT_ROUTE_CNF_SHIFT;
241 writel(v, &timer->hpet_config);
242 devp->hd_hdwirq = gsi;
243 spin_unlock_irq(&hpet_lock);
244 }
245 return;
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248static int hpet_open(struct inode *inode, struct file *file)
249{
250 struct hpet_dev *devp;
251 struct hpets *hpetp;
252 int i;
253
254 if (file->f_mode & FMODE_WRITE)
255 return -EINVAL;
256
257 spin_lock_irq(&hpet_lock);
258
259 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
260 for (i = 0; i < hpetp->hp_ntimer; i++)
261 if (hpetp->hp_dev[i].hd_flags & HPET_OPEN
262 || hpetp->hp_dev[i].hd_task)
263 continue;
264 else {
265 devp = &hpetp->hp_dev[i];
266 break;
267 }
268
269 if (!devp) {
270 spin_unlock_irq(&hpet_lock);
271 return -EBUSY;
272 }
273
274 file->private_data = devp;
275 devp->hd_irqdata = 0;
276 devp->hd_flags |= HPET_OPEN;
277 spin_unlock_irq(&hpet_lock);
278
Kevin Hao70ef6d52008-05-29 18:41:04 +0800279 hpet_timer_set_irq(devp);
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
282}
283
284static ssize_t
285hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos)
286{
287 DECLARE_WAITQUEUE(wait, current);
288 unsigned long data;
289 ssize_t retval;
290 struct hpet_dev *devp;
291
292 devp = file->private_data;
293 if (!devp->hd_ireqfreq)
294 return -EIO;
295
296 if (count < sizeof(unsigned long))
297 return -EINVAL;
298
299 add_wait_queue(&devp->hd_waitqueue, &wait);
300
301 for ( ; ; ) {
302 set_current_state(TASK_INTERRUPTIBLE);
303
304 spin_lock_irq(&hpet_lock);
305 data = devp->hd_irqdata;
306 devp->hd_irqdata = 0;
307 spin_unlock_irq(&hpet_lock);
308
309 if (data)
310 break;
311 else if (file->f_flags & O_NONBLOCK) {
312 retval = -EAGAIN;
313 goto out;
314 } else if (signal_pending(current)) {
315 retval = -ERESTARTSYS;
316 goto out;
317 }
318 schedule();
319 }
320
321 retval = put_user(data, (unsigned long __user *)buf);
322 if (!retval)
323 retval = sizeof(unsigned long);
324out:
325 __set_current_state(TASK_RUNNING);
326 remove_wait_queue(&devp->hd_waitqueue, &wait);
327
328 return retval;
329}
330
331static unsigned int hpet_poll(struct file *file, poll_table * wait)
332{
333 unsigned long v;
334 struct hpet_dev *devp;
335
336 devp = file->private_data;
337
338 if (!devp->hd_ireqfreq)
339 return 0;
340
341 poll_wait(file, &devp->hd_waitqueue, wait);
342
343 spin_lock_irq(&hpet_lock);
344 v = devp->hd_irqdata;
345 spin_unlock_irq(&hpet_lock);
346
347 if (v != 0)
348 return POLLIN | POLLRDNORM;
349
350 return 0;
351}
352
353static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
354{
355#ifdef CONFIG_HPET_MMAP
356 struct hpet_dev *devp;
357 unsigned long addr;
358
359 if (((vma->vm_end - vma->vm_start) != PAGE_SIZE) || vma->vm_pgoff)
360 return -EINVAL;
361
362 devp = file->private_data;
363 addr = devp->hd_hpets->hp_hpet_phys;
364
365 if (addr & (PAGE_SIZE - 1))
366 return -ENOSYS;
367
368 vma->vm_flags |= VM_IO;
369 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
372 PAGE_SIZE, vma->vm_page_prot)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800373 printk(KERN_ERR "%s: io_remap_pfn_range failed\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700374 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return -EAGAIN;
376 }
377
378 return 0;
379#else
380 return -ENOSYS;
381#endif
382}
383
384static int hpet_fasync(int fd, struct file *file, int on)
385{
386 struct hpet_dev *devp;
387
388 devp = file->private_data;
389
390 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
391 return 0;
392 else
393 return -EIO;
394}
395
396static int hpet_release(struct inode *inode, struct file *file)
397{
398 struct hpet_dev *devp;
399 struct hpet_timer __iomem *timer;
400 int irq = 0;
401
402 devp = file->private_data;
403 timer = devp->hd_timer;
404
405 spin_lock_irq(&hpet_lock);
406
407 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
408 &timer->hpet_config);
409
410 irq = devp->hd_irq;
411 devp->hd_irq = 0;
412
413 devp->hd_ireqfreq = 0;
414
415 if (devp->hd_flags & HPET_PERIODIC
416 && readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
417 unsigned long v;
418
419 v = readq(&timer->hpet_config);
420 v ^= Tn_TYPE_CNF_MASK;
421 writeq(v, &timer->hpet_config);
422 }
423
424 devp->hd_flags &= ~(HPET_OPEN | HPET_IE | HPET_PERIODIC);
425 spin_unlock_irq(&hpet_lock);
426
427 if (irq)
428 free_irq(irq, devp);
429
430 if (file->f_flags & FASYNC)
431 hpet_fasync(-1, file, 0);
432
433 file->private_data = NULL;
434 return 0;
435}
436
437static int hpet_ioctl_common(struct hpet_dev *, int, unsigned long, int);
438
439static int
440hpet_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
441 unsigned long arg)
442{
443 struct hpet_dev *devp;
444
445 devp = file->private_data;
446 return hpet_ioctl_common(devp, cmd, arg, 0);
447}
448
449static int hpet_ioctl_ieon(struct hpet_dev *devp)
450{
451 struct hpet_timer __iomem *timer;
452 struct hpet __iomem *hpet;
453 struct hpets *hpetp;
454 int irq;
455 unsigned long g, v, t, m;
456 unsigned long flags, isr;
457
458 timer = devp->hd_timer;
459 hpet = devp->hd_hpet;
460 hpetp = devp->hd_hpets;
461
Clemens Ladisch9090e6d2005-10-30 15:03:29 -0800462 if (!devp->hd_ireqfreq)
463 return -EIO;
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 spin_lock_irq(&hpet_lock);
466
467 if (devp->hd_flags & HPET_IE) {
468 spin_unlock_irq(&hpet_lock);
469 return -EBUSY;
470 }
471
472 devp->hd_flags |= HPET_IE;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800473
474 if (readl(&timer->hpet_config) & Tn_INT_TYPE_CNF_MASK)
475 devp->hd_flags |= HPET_SHARED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 spin_unlock_irq(&hpet_lock);
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 irq = devp->hd_hdwirq;
479
480 if (irq) {
Clemens Ladisch0d290862005-10-30 15:03:34 -0800481 unsigned long irq_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Clemens Ladisch0d290862005-10-30 15:03:34 -0800483 sprintf(devp->hd_name, "hpet%d", (int)(devp - hpetp->hp_dev));
484 irq_flags = devp->hd_flags & HPET_SHARED_IRQ
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700485 ? IRQF_SHARED : IRQF_DISABLED;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800486 if (request_irq(irq, hpet_interrupt, irq_flags,
487 devp->hd_name, (void *)devp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 printk(KERN_ERR "hpet: IRQ %d is not free\n", irq);
489 irq = 0;
490 }
491 }
492
493 if (irq == 0) {
494 spin_lock_irq(&hpet_lock);
495 devp->hd_flags ^= HPET_IE;
496 spin_unlock_irq(&hpet_lock);
497 return -EIO;
498 }
499
500 devp->hd_irq = irq;
501 t = devp->hd_ireqfreq;
502 v = readq(&timer->hpet_config);
503 g = v | Tn_INT_ENB_CNF_MASK;
504
505 if (devp->hd_flags & HPET_PERIODIC) {
506 write_counter(t, &timer->hpet_compare);
507 g |= Tn_TYPE_CNF_MASK;
508 v |= Tn_TYPE_CNF_MASK;
509 writeq(v, &timer->hpet_config);
510 v |= Tn_VAL_SET_CNF_MASK;
511 writeq(v, &timer->hpet_config);
512 local_irq_save(flags);
513 m = read_counter(&hpet->hpet_mc);
514 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
515 } else {
516 local_irq_save(flags);
517 m = read_counter(&hpet->hpet_mc);
518 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
519 }
520
Clemens Ladisch0d290862005-10-30 15:03:34 -0800521 if (devp->hd_flags & HPET_SHARED_IRQ) {
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800522 isr = 1 << (devp - devp->hd_hpets->hp_dev);
Clemens Ladisch0d290862005-10-30 15:03:34 -0800523 writel(isr, &hpet->hpet_isr);
524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 writeq(g, &timer->hpet_config);
526 local_irq_restore(flags);
527
528 return 0;
529}
530
Clemens Ladischba3f2132005-10-30 15:03:31 -0800531/* converts Hz to number of timer ticks */
532static inline unsigned long hpet_time_div(struct hpets *hpets,
533 unsigned long dis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Clemens Ladischba3f2132005-10-30 15:03:31 -0800535 unsigned long long m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Clemens Ladischba3f2132005-10-30 15:03:31 -0800537 m = hpets->hp_tick_freq + (dis >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 do_div(m, dis);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return (unsigned long)m;
540}
541
542static int
543hpet_ioctl_common(struct hpet_dev *devp, int cmd, unsigned long arg, int kernel)
544{
545 struct hpet_timer __iomem *timer;
546 struct hpet __iomem *hpet;
547 struct hpets *hpetp;
548 int err;
549 unsigned long v;
550
551 switch (cmd) {
552 case HPET_IE_OFF:
553 case HPET_INFO:
554 case HPET_EPI:
555 case HPET_DPI:
556 case HPET_IRQFREQ:
557 timer = devp->hd_timer;
558 hpet = devp->hd_hpet;
559 hpetp = devp->hd_hpets;
560 break;
561 case HPET_IE_ON:
562 return hpet_ioctl_ieon(devp);
563 default:
564 return -EINVAL;
565 }
566
567 err = 0;
568
569 switch (cmd) {
570 case HPET_IE_OFF:
571 if ((devp->hd_flags & HPET_IE) == 0)
572 break;
573 v = readq(&timer->hpet_config);
574 v &= ~Tn_INT_ENB_CNF_MASK;
575 writeq(v, &timer->hpet_config);
576 if (devp->hd_irq) {
577 free_irq(devp->hd_irq, devp);
578 devp->hd_irq = 0;
579 }
580 devp->hd_flags ^= HPET_IE;
581 break;
582 case HPET_INFO:
583 {
584 struct hpet_info info;
585
Clemens Ladischaf95ead2005-10-30 15:03:38 -0800586 if (devp->hd_ireqfreq)
587 info.hi_ireqfreq =
588 hpet_time_div(hpetp, devp->hd_ireqfreq);
589 else
590 info.hi_ireqfreq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 info.hi_flags =
592 readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK;
Clemens Ladischc860ed92005-10-30 15:03:40 -0800593 info.hi_hpet = hpetp->hp_which;
594 info.hi_timer = devp - hpetp->hp_dev;
Clemens Ladisch8e8505b2005-10-30 15:03:37 -0800595 if (kernel)
596 memcpy((void *)arg, &info, sizeof(info));
597 else
598 if (copy_to_user((void __user *)arg, &info,
599 sizeof(info)))
600 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 break;
602 }
603 case HPET_EPI:
604 v = readq(&timer->hpet_config);
605 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
606 err = -ENXIO;
607 break;
608 }
609 devp->hd_flags |= HPET_PERIODIC;
610 break;
611 case HPET_DPI:
612 v = readq(&timer->hpet_config);
613 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
614 err = -ENXIO;
615 break;
616 }
617 if (devp->hd_flags & HPET_PERIODIC &&
618 readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
619 v = readq(&timer->hpet_config);
620 v ^= Tn_TYPE_CNF_MASK;
621 writeq(v, &timer->hpet_config);
622 }
623 devp->hd_flags &= ~HPET_PERIODIC;
624 break;
625 case HPET_IRQFREQ:
626 if (!kernel && (arg > hpet_max_freq) &&
627 !capable(CAP_SYS_RESOURCE)) {
628 err = -EACCES;
629 break;
630 }
631
Clemens Ladisch189e2dd2005-10-30 15:03:33 -0800632 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 err = -EINVAL;
634 break;
635 }
636
Clemens Ladischba3f2132005-10-30 15:03:31 -0800637 devp->hd_ireqfreq = hpet_time_div(hpetp, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
640 return err;
641}
642
Arjan van de Ven62322d22006-07-03 00:24:21 -0700643static const struct file_operations hpet_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 .owner = THIS_MODULE,
645 .llseek = no_llseek,
646 .read = hpet_read,
647 .poll = hpet_poll,
648 .ioctl = hpet_ioctl,
649 .open = hpet_open,
650 .release = hpet_release,
651 .fasync = hpet_fasync,
652 .mmap = hpet_mmap,
653};
654
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800655static int hpet_is_known(struct hpet_data *hdp)
656{
657 struct hpets *hpetp;
658
659 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
660 if (hpetp->hp_hpet_phys == hdp->hd_phys_address)
661 return 1;
662
663 return 0;
664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666static inline int hpet_tpcheck(struct hpet_task *tp)
667{
668 struct hpet_dev *devp;
669 struct hpets *hpetp;
670
671 devp = tp->ht_opaque;
672
673 if (!devp)
674 return -ENXIO;
675
676 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
677 if (devp >= hpetp->hp_dev
678 && devp < (hpetp->hp_dev + hpetp->hp_ntimer)
679 && devp->hd_hpet == hpetp->hp_hpet)
680 return 0;
681
682 return -ENXIO;
683}
684
685int hpet_unregister(struct hpet_task *tp)
686{
687 struct hpet_dev *devp;
688 struct hpet_timer __iomem *timer;
689 int err;
690
691 if ((err = hpet_tpcheck(tp)))
692 return err;
693
694 spin_lock_irq(&hpet_task_lock);
695 spin_lock(&hpet_lock);
696
697 devp = tp->ht_opaque;
698 if (devp->hd_task != tp) {
699 spin_unlock(&hpet_lock);
700 spin_unlock_irq(&hpet_task_lock);
701 return -ENXIO;
702 }
703
704 timer = devp->hd_timer;
705 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
706 &timer->hpet_config);
707 devp->hd_flags &= ~(HPET_IE | HPET_PERIODIC);
708 devp->hd_task = NULL;
709 spin_unlock(&hpet_lock);
710 spin_unlock_irq(&hpet_task_lock);
711
712 return 0;
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715static ctl_table hpet_table[] = {
716 {
Eric W. Biederman22943362007-02-14 00:33:51 -0800717 .ctl_name = CTL_UNNUMBERED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 .procname = "max-user-freq",
719 .data = &hpet_max_freq,
720 .maxlen = sizeof(int),
721 .mode = 0644,
722 .proc_handler = &proc_dointvec,
723 },
724 {.ctl_name = 0}
725};
726
727static ctl_table hpet_root[] = {
728 {
Eric W. Biederman22943362007-02-14 00:33:51 -0800729 .ctl_name = CTL_UNNUMBERED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 .procname = "hpet",
731 .maxlen = 0,
732 .mode = 0555,
733 .child = hpet_table,
734 },
735 {.ctl_name = 0}
736};
737
738static ctl_table dev_root[] = {
739 {
740 .ctl_name = CTL_DEV,
741 .procname = "dev",
742 .maxlen = 0,
743 .mode = 0555,
744 .child = hpet_root,
745 },
746 {.ctl_name = 0}
747};
748
749static struct ctl_table_header *sysctl_header;
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/*
752 * Adjustment for when arming the timer with
753 * initial conditions. That is, main counter
754 * ticks expired before interrupts are enabled.
755 */
756#define TICK_CALIBRATE (1000UL)
757
758static unsigned long hpet_calibrate(struct hpets *hpetp)
759{
760 struct hpet_timer __iomem *timer = NULL;
761 unsigned long t, m, count, i, flags, start;
762 struct hpet_dev *devp;
763 int j;
764 struct hpet __iomem *hpet;
765
766 for (j = 0, devp = hpetp->hp_dev; j < hpetp->hp_ntimer; j++, devp++)
767 if ((devp->hd_flags & HPET_OPEN) == 0) {
768 timer = devp->hd_timer;
769 break;
770 }
771
772 if (!timer)
773 return 0;
774
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800775 hpet = hpetp->hp_hpet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 t = read_counter(&timer->hpet_compare);
777
778 i = 0;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800779 count = hpet_time_div(hpetp, TICK_CALIBRATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 local_irq_save(flags);
782
783 start = read_counter(&hpet->hpet_mc);
784
785 do {
786 m = read_counter(&hpet->hpet_mc);
787 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
788 } while (i++, (m - start) < count);
789
790 local_irq_restore(flags);
791
792 return (m - start) / i;
793}
794
795int hpet_alloc(struct hpet_data *hdp)
796{
Thomas Gleixner5761d642008-04-04 16:26:10 +0200797 u64 cap, mcfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct hpet_dev *devp;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200799 u32 i, ntimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct hpets *hpetp;
801 size_t siz;
802 struct hpet __iomem *hpet;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800803 static struct hpets *last = NULL;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200804 unsigned long period;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800805 unsigned long long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 /*
808 * hpet_alloc can be called by platform dependent code.
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800809 * If platform dependent code has allocated the hpet that
810 * ACPI has also reported, then we catch it here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 */
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800812 if (hpet_is_known(hdp)) {
813 printk(KERN_DEBUG "%s: duplicate HPET ignored\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700814 __func__);
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800815 return 0;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
819 sizeof(struct hpet_dev));
820
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800821 hpetp = kzalloc(siz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (!hpetp)
824 return -ENOMEM;
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 hpetp->hp_which = hpet_nhpet++;
827 hpetp->hp_hpet = hdp->hd_address;
828 hpetp->hp_hpet_phys = hdp->hd_phys_address;
829
830 hpetp->hp_ntimer = hdp->hd_nirqs;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200831
832 for (i = 0; i < hdp->hd_nirqs; i++)
833 hpetp->hp_dev[i].hd_hdwirq = hdp->hd_irq[i];
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 hpet = hpetp->hp_hpet;
836
837 cap = readq(&hpet->hpet_cap);
838
839 ntimer = ((cap & HPET_NUM_TIM_CAP_MASK) >> HPET_NUM_TIM_CAP_SHIFT) + 1;
840
841 if (hpetp->hp_ntimer != ntimer) {
842 printk(KERN_WARNING "hpet: number irqs doesn't agree"
843 " with number of timers\n");
844 kfree(hpetp);
845 return -ENODEV;
846 }
847
848 if (last)
849 last->hp_next = hpetp;
850 else
851 hpets = hpetp;
852
853 last = hpetp;
854
Clemens Ladischba3f2132005-10-30 15:03:31 -0800855 period = (cap & HPET_COUNTER_CLK_PERIOD_MASK) >>
856 HPET_COUNTER_CLK_PERIOD_SHIFT; /* fs, 10^-15 */
857 temp = 1000000000000000uLL; /* 10^15 femtoseconds per second */
858 temp += period >> 1; /* round */
859 do_div(temp, period);
860 hpetp->hp_tick_freq = temp; /* ticks per second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Andi Kleen3034d112006-09-26 10:52:28 +0200862 printk(KERN_INFO "hpet%d: at MMIO 0x%lx, IRQ%s",
863 hpetp->hp_which, hdp->hd_phys_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 hpetp->hp_ntimer > 1 ? "s" : "");
865 for (i = 0; i < hpetp->hp_ntimer; i++)
Thomas Gleixner5761d642008-04-04 16:26:10 +0200866 printk("%s %d", i > 0 ? "," : "", hdp->hd_irq[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 printk("\n");
868
Clemens Ladisch318db8f2005-10-30 15:03:41 -0800869 printk(KERN_INFO "hpet%u: %u %d-bit timers, %Lu Hz\n",
870 hpetp->hp_which, hpetp->hp_ntimer,
871 cap & HPET_COUNTER_SIZE_MASK ? 64 : 32, hpetp->hp_tick_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 mcfg = readq(&hpet->hpet_config);
874 if ((mcfg & HPET_ENABLE_CNF_MASK) == 0) {
875 write_counter(0L, &hpet->hpet_mc);
876 mcfg |= HPET_ENABLE_CNF_MASK;
877 writeq(mcfg, &hpet->hpet_config);
878 }
879
Clemens Ladisch642d30b2005-10-30 15:03:31 -0800880 for (i = 0, devp = hpetp->hp_dev; i < hpetp->hp_ntimer; i++, devp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct hpet_timer __iomem *timer;
882
883 timer = &hpet->hpet_timers[devp - hpetp->hp_dev];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 devp->hd_hpets = hpetp;
886 devp->hd_hpet = hpet;
887 devp->hd_timer = timer;
888
889 /*
890 * If the timer was reserved by platform code,
891 * then make timer unavailable for opens.
892 */
893 if (hdp->hd_state & (1 << i)) {
894 devp->hd_flags = HPET_OPEN;
895 continue;
896 }
897
898 init_waitqueue_head(&devp->hd_waitqueue);
899 }
900
901 hpetp->hp_delta = hpet_calibrate(hpetp);
Tony Luck0aa366f2007-07-20 11:22:30 -0700902
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700903/* This clocksource driver currently only works on ia64 */
904#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -0700905 if (!hpet_clocksource) {
906 hpet_mctr = (void __iomem *)&hpetp->hp_hpet->hpet_mc;
907 CLKSRC_FSYS_MMIO_SET(clocksource_hpet.fsys_mmio, hpet_mctr);
908 clocksource_hpet.mult = clocksource_hz2mult(hpetp->hp_tick_freq,
909 clocksource_hpet.shift);
910 clocksource_register(&clocksource_hpet);
911 hpetp->hp_clocksource = &clocksource_hpet;
912 hpet_clocksource = &clocksource_hpet;
913 }
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700914#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 return 0;
917}
918
919static acpi_status hpet_resources(struct acpi_resource *res, void *data)
920{
921 struct hpet_data *hdp;
922 acpi_status status;
923 struct acpi_resource_address64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 hdp = data;
926
927 status = acpi_resource_to_address64(res, &addr);
928
929 if (ACPI_SUCCESS(status)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400930 hdp->hd_phys_address = addr.minimum;
Bjorn Helgaas9224a862006-03-28 17:04:00 -0500931 hdp->hd_address = ioremap(addr.minimum, addr.address_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800933 if (hpet_is_known(hdp)) {
934 printk(KERN_DEBUG "%s: 0x%lx is busy\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700935 __func__, hdp->hd_phys_address);
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800936 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400937 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800938 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400939 } else if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
940 struct acpi_resource_fixed_memory32 *fixmem32;
Randy Dunlap757c4722005-10-30 15:03:42 -0800941
942 fixmem32 = &res->data.fixed_memory32;
943 if (!fixmem32)
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400944 return AE_NO_MEMORY;
Randy Dunlap757c4722005-10-30 15:03:42 -0800945
Bob Moore50eca3e2005-09-30 19:03:00 -0400946 hdp->hd_phys_address = fixmem32->address;
947 hdp->hd_address = ioremap(fixmem32->address,
Randy Dunlap757c4722005-10-30 15:03:42 -0800948 HPET_RANGE_SIZE);
949
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800950 if (hpet_is_known(hdp)) {
951 printk(KERN_DEBUG "%s: 0x%lx is busy\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700952 __func__, hdp->hd_phys_address);
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800953 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400954 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800955 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400956 } else if (res->type == ACPI_RESOURCE_TYPE_EXTENDED_IRQ) {
957 struct acpi_resource_extended_irq *irqp;
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800958 int i, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 irqp = &res->data.extended_irq;
961
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800962 for (i = 0; i < irqp->interrupt_count; i++) {
963 irq = acpi_register_gsi(irqp->interrupts[i],
964 irqp->triggering, irqp->polarity);
965 if (irq < 0)
966 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800968 hdp->hd_irq[hdp->hd_nirqs] = irq;
969 hdp->hd_nirqs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
971 }
972
973 return AE_OK;
974}
975
976static int hpet_acpi_add(struct acpi_device *device)
977{
978 acpi_status result;
979 struct hpet_data data;
980
981 memset(&data, 0, sizeof(data));
982
983 result =
984 acpi_walk_resources(device->handle, METHOD_NAME__CRS,
985 hpet_resources, &data);
986
987 if (ACPI_FAILURE(result))
988 return -ENODEV;
989
990 if (!data.hd_address || !data.hd_nirqs) {
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700991 printk("%s: no address or irqs in _CRS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return -ENODEV;
993 }
994
995 return hpet_alloc(&data);
996}
997
998static int hpet_acpi_remove(struct acpi_device *device, int type)
999{
Tony Luck0aa366f2007-07-20 11:22:30 -07001000 /* XXX need to unregister clocksource, dealloc mem, etc */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EINVAL;
1002}
1003
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001004static const struct acpi_device_id hpet_device_ids[] = {
1005 {"PNP0103", 0},
1006 {"", 0},
1007};
1008MODULE_DEVICE_TABLE(acpi, hpet_device_ids);
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010static struct acpi_driver hpet_acpi_driver = {
1011 .name = "hpet",
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001012 .ids = hpet_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 .ops = {
1014 .add = hpet_acpi_add,
1015 .remove = hpet_acpi_remove,
1016 },
1017};
1018
1019static struct miscdevice hpet_misc = { HPET_MINOR, "hpet", &hpet_fops };
1020
1021static int __init hpet_init(void)
1022{
1023 int result;
1024
1025 result = misc_register(&hpet_misc);
1026 if (result < 0)
1027 return -ENODEV;
1028
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08001029 sysctl_header = register_sysctl_table(dev_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 result = acpi_bus_register_driver(&hpet_acpi_driver);
1032 if (result < 0) {
1033 if (sysctl_header)
1034 unregister_sysctl_table(sysctl_header);
1035 misc_deregister(&hpet_misc);
1036 return result;
1037 }
1038
1039 return 0;
1040}
1041
1042static void __exit hpet_exit(void)
1043{
1044 acpi_bus_unregister_driver(&hpet_acpi_driver);
1045
1046 if (sysctl_header)
1047 unregister_sysctl_table(sysctl_header);
1048 misc_deregister(&hpet_misc);
1049
1050 return;
1051}
1052
1053module_init(hpet_init);
1054module_exit(hpet_exit);
1055MODULE_AUTHOR("Bob Picco <Robert.Picco@hp.com>");
1056MODULE_LICENSE("GPL");