blob: 9c5eea3ea4deb22b7cb215184b3dd3a9b8a69152 [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>
Arnd Bergmann48b81882008-05-20 19:15:59 +020017#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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>
Al Virof23f6e02006-10-20 15:17:02 -040025#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/proc_fs.h>
27#include <linux/spinlock.h>
28#include <linux/sysctl.h>
29#include <linux/wait.h>
30#include <linux/bcd.h>
31#include <linux/seq_file.h>
32#include <linux/bitops.h>
Tony Luck0aa366f2007-07-20 11:22:30 -070033#include <linux/clocksource.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/current.h>
36#include <asm/uaccess.h>
37#include <asm/system.h>
38#include <asm/io.h>
39#include <asm/irq.h>
40#include <asm/div64.h>
41
42#include <linux/acpi.h>
43#include <acpi/acpi_bus.h>
44#include <linux/hpet.h>
45
46/*
47 * The High Precision Event Timer driver.
48 * This driver is closely modelled after the rtc.c driver.
Denis V. Luneve45f2c02008-11-24 11:28:36 +030049 * http://www.intel.com/hardwaredesign/hpetspec_1.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
51#define HPET_USER_FREQ (64)
52#define HPET_DRIFT (500)
53
Randy Dunlap757c4722005-10-30 15:03:42 -080054#define HPET_RANGE_SIZE 1024 /* from HPET spec */
55
David Brownell64a76f62008-07-29 12:47:38 -070056
57/* WARNING -- don't get confused. These macros are never used
58 * to write the (single) counter, and rarely to read it.
59 * They're badly named; to fix, someday.
60 */
Tony Luck0aa366f2007-07-20 11:22:30 -070061#if BITS_PER_LONG == 64
62#define write_counter(V, MC) writeq(V, MC)
63#define read_counter(MC) readq(MC)
64#else
65#define write_counter(V, MC) writel(V, MC)
66#define read_counter(MC) readl(MC)
67#endif
68
Clemens Ladisch642d30b2005-10-30 15:03:31 -080069static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030071/* This clocksource driver currently only works on ia64 */
72#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -070073static void __iomem *hpet_mctr;
74
Magnus Damm8e196082009-04-21 12:24:00 -070075static cycle_t read_hpet(struct clocksource *cs)
Tony Luck0aa366f2007-07-20 11:22:30 -070076{
77 return (cycle_t)read_counter((void __iomem *)hpet_mctr);
78}
79
80static struct clocksource clocksource_hpet = {
81 .name = "hpet",
82 .rating = 250,
83 .read = read_hpet,
Al Viro712aaa12007-07-26 17:34:49 +010084 .mask = CLOCKSOURCE_MASK(64),
David Brownell64a76f62008-07-29 12:47:38 -070085 .mult = 0, /* to be calculated */
Tony Luck0aa366f2007-07-20 11:22:30 -070086 .shift = 10,
87 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
88};
89static struct clocksource *hpet_clocksource;
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030090#endif
Tony Luck0aa366f2007-07-20 11:22:30 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* A lock for concurrent access by app and isr hpet activity. */
93static DEFINE_SPINLOCK(hpet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#define HPET_DEV_NAME (7)
96
97struct hpet_dev {
98 struct hpets *hd_hpets;
99 struct hpet __iomem *hd_hpet;
100 struct hpet_timer __iomem *hd_timer;
101 unsigned long hd_ireqfreq;
102 unsigned long hd_irqdata;
103 wait_queue_head_t hd_waitqueue;
104 struct fasync_struct *hd_async_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 unsigned int hd_flags;
106 unsigned int hd_irq;
107 unsigned int hd_hdwirq;
108 char hd_name[HPET_DEV_NAME];
109};
110
111struct hpets {
112 struct hpets *hp_next;
113 struct hpet __iomem *hp_hpet;
114 unsigned long hp_hpet_phys;
Tony Luck0aa366f2007-07-20 11:22:30 -0700115 struct clocksource *hp_clocksource;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800116 unsigned long long hp_tick_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned long hp_delta;
118 unsigned int hp_ntimer;
119 unsigned int hp_which;
120 struct hpet_dev hp_dev[1];
121};
122
123static struct hpets *hpets;
124
125#define HPET_OPEN 0x0001
126#define HPET_IE 0x0002 /* interrupt enabled */
127#define HPET_PERIODIC 0x0004
Clemens Ladisch0d290862005-10-30 15:03:34 -0800128#define HPET_SHARED_IRQ 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131#ifndef readq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700132static inline unsigned long long readq(void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
135}
136#endif
137
138#ifndef writeq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700139static inline void writeq(unsigned long long v, void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 writel(v & 0xffffffff, addr);
142 writel(v >> 32, addr + 4);
143}
144#endif
145
David Howells7d12e782006-10-05 14:55:46 +0100146static irqreturn_t hpet_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct hpet_dev *devp;
149 unsigned long isr;
150
151 devp = data;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800152 isr = 1 << (devp - devp->hd_hpets->hp_dev);
153
154 if ((devp->hd_flags & HPET_SHARED_IRQ) &&
155 !(isr & readl(&devp->hd_hpet->hpet_isr)))
156 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 spin_lock(&hpet_lock);
159 devp->hd_irqdata++;
160
161 /*
162 * For non-periodic timers, increment the accumulator.
163 * This has the effect of treating non-periodic like periodic.
164 */
165 if ((devp->hd_flags & (HPET_IE | HPET_PERIODIC)) == HPET_IE) {
166 unsigned long m, t;
167
168 t = devp->hd_ireqfreq;
Nils Carlsonae21cf92009-09-23 15:57:13 -0700169 m = read_counter(&devp->hd_timer->hpet_compare);
170 write_counter(t + m, &devp->hd_timer->hpet_compare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
Clemens Ladisch0d290862005-10-30 15:03:34 -0800173 if (devp->hd_flags & HPET_SHARED_IRQ)
174 writel(isr, &devp->hd_hpet->hpet_isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 spin_unlock(&hpet_lock);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 wake_up_interruptible(&devp->hd_waitqueue);
178
179 kill_fasync(&devp->hd_async_queue, SIGIO, POLL_IN);
180
181 return IRQ_HANDLED;
182}
183
Kevin Hao70ef6d52008-05-29 18:41:04 +0800184static void hpet_timer_set_irq(struct hpet_dev *devp)
185{
186 unsigned long v;
187 int irq, gsi;
188 struct hpet_timer __iomem *timer;
189
190 spin_lock_irq(&hpet_lock);
191 if (devp->hd_hdwirq) {
192 spin_unlock_irq(&hpet_lock);
193 return;
194 }
195
196 timer = devp->hd_timer;
197
198 /* we prefer level triggered mode */
199 v = readl(&timer->hpet_config);
200 if (!(v & Tn_INT_TYPE_CNF_MASK)) {
201 v |= Tn_INT_TYPE_CNF_MASK;
202 writel(v, &timer->hpet_config);
203 }
204 spin_unlock_irq(&hpet_lock);
205
206 v = (readq(&timer->hpet_config) & Tn_INT_ROUTE_CAP_MASK) >>
207 Tn_INT_ROUTE_CAP_SHIFT;
208
209 /*
210 * In PIC mode, skip IRQ0-4, IRQ6-9, IRQ12-15 which is always used by
211 * legacy device. In IO APIC mode, we skip all the legacy IRQS.
212 */
213 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC)
214 v &= ~0xf3df;
215 else
216 v &= ~0xffff;
217
Akinobu Mitae5d61512010-03-15 00:35:01 -0400218 for_each_set_bit(irq, &v, HPET_MAX_IRQ) {
Yinghai Lu1f45f562008-08-19 20:49:49 -0700219 if (irq >= nr_irqs) {
Kevin Hao70ef6d52008-05-29 18:41:04 +0800220 irq = HPET_MAX_IRQ;
221 break;
222 }
223
Yinghai Lua2f809b2009-04-27 18:01:20 -0700224 gsi = acpi_register_gsi(NULL, irq, ACPI_LEVEL_SENSITIVE,
Kevin Hao70ef6d52008-05-29 18:41:04 +0800225 ACPI_ACTIVE_LOW);
226 if (gsi > 0)
227 break;
228
229 /* FIXME: Setup interrupt source table */
230 }
231
232 if (irq < HPET_MAX_IRQ) {
233 spin_lock_irq(&hpet_lock);
234 v = readl(&timer->hpet_config);
235 v |= irq << Tn_INT_ROUTE_CNF_SHIFT;
236 writel(v, &timer->hpet_config);
237 devp->hd_hdwirq = gsi;
238 spin_unlock_irq(&hpet_lock);
239 }
240 return;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static int hpet_open(struct inode *inode, struct file *file)
244{
245 struct hpet_dev *devp;
246 struct hpets *hpetp;
247 int i;
248
249 if (file->f_mode & FMODE_WRITE)
250 return -EINVAL;
251
Arnd Bergmann48b81882008-05-20 19:15:59 +0200252 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 spin_lock_irq(&hpet_lock);
254
255 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
256 for (i = 0; i < hpetp->hp_ntimer; i++)
David Brownell64a76f62008-07-29 12:47:38 -0700257 if (hpetp->hp_dev[i].hd_flags & HPET_OPEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 continue;
259 else {
260 devp = &hpetp->hp_dev[i];
261 break;
262 }
263
264 if (!devp) {
265 spin_unlock_irq(&hpet_lock);
Arnd Bergmann48b81882008-05-20 19:15:59 +0200266 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EBUSY;
268 }
269
270 file->private_data = devp;
271 devp->hd_irqdata = 0;
272 devp->hd_flags |= HPET_OPEN;
273 spin_unlock_irq(&hpet_lock);
Arnd Bergmann48b81882008-05-20 19:15:59 +0200274 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Kevin Hao70ef6d52008-05-29 18:41:04 +0800276 hpet_timer_set_irq(devp);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return 0;
279}
280
281static ssize_t
282hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos)
283{
284 DECLARE_WAITQUEUE(wait, current);
285 unsigned long data;
286 ssize_t retval;
287 struct hpet_dev *devp;
288
289 devp = file->private_data;
290 if (!devp->hd_ireqfreq)
291 return -EIO;
292
293 if (count < sizeof(unsigned long))
294 return -EINVAL;
295
296 add_wait_queue(&devp->hd_waitqueue, &wait);
297
298 for ( ; ; ) {
299 set_current_state(TASK_INTERRUPTIBLE);
300
301 spin_lock_irq(&hpet_lock);
302 data = devp->hd_irqdata;
303 devp->hd_irqdata = 0;
304 spin_unlock_irq(&hpet_lock);
305
306 if (data)
307 break;
308 else if (file->f_flags & O_NONBLOCK) {
309 retval = -EAGAIN;
310 goto out;
311 } else if (signal_pending(current)) {
312 retval = -ERESTARTSYS;
313 goto out;
314 }
315 schedule();
316 }
317
318 retval = put_user(data, (unsigned long __user *)buf);
319 if (!retval)
320 retval = sizeof(unsigned long);
321out:
322 __set_current_state(TASK_RUNNING);
323 remove_wait_queue(&devp->hd_waitqueue, &wait);
324
325 return retval;
326}
327
328static unsigned int hpet_poll(struct file *file, poll_table * wait)
329{
330 unsigned long v;
331 struct hpet_dev *devp;
332
333 devp = file->private_data;
334
335 if (!devp->hd_ireqfreq)
336 return 0;
337
338 poll_wait(file, &devp->hd_waitqueue, wait);
339
340 spin_lock_irq(&hpet_lock);
341 v = devp->hd_irqdata;
342 spin_unlock_irq(&hpet_lock);
343
344 if (v != 0)
345 return POLLIN | POLLRDNORM;
346
347 return 0;
348}
349
350static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
351{
352#ifdef CONFIG_HPET_MMAP
353 struct hpet_dev *devp;
354 unsigned long addr;
355
356 if (((vma->vm_end - vma->vm_start) != PAGE_SIZE) || vma->vm_pgoff)
357 return -EINVAL;
358
359 devp = file->private_data;
360 addr = devp->hd_hpets->hp_hpet_phys;
361
362 if (addr & (PAGE_SIZE - 1))
363 return -ENOSYS;
364
365 vma->vm_flags |= VM_IO;
366 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
369 PAGE_SIZE, vma->vm_page_prot)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800370 printk(KERN_ERR "%s: io_remap_pfn_range failed\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700371 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -EAGAIN;
373 }
374
375 return 0;
376#else
377 return -ENOSYS;
378#endif
379}
380
381static int hpet_fasync(int fd, struct file *file, int on)
382{
383 struct hpet_dev *devp;
384
385 devp = file->private_data;
386
387 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
388 return 0;
389 else
390 return -EIO;
391}
392
393static int hpet_release(struct inode *inode, struct file *file)
394{
395 struct hpet_dev *devp;
396 struct hpet_timer __iomem *timer;
397 int irq = 0;
398
399 devp = file->private_data;
400 timer = devp->hd_timer;
401
402 spin_lock_irq(&hpet_lock);
403
404 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
405 &timer->hpet_config);
406
407 irq = devp->hd_irq;
408 devp->hd_irq = 0;
409
410 devp->hd_ireqfreq = 0;
411
412 if (devp->hd_flags & HPET_PERIODIC
413 && readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
414 unsigned long v;
415
416 v = readq(&timer->hpet_config);
417 v ^= Tn_TYPE_CNF_MASK;
418 writeq(v, &timer->hpet_config);
419 }
420
421 devp->hd_flags &= ~(HPET_OPEN | HPET_IE | HPET_PERIODIC);
422 spin_unlock_irq(&hpet_lock);
423
424 if (irq)
425 free_irq(irq, devp);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 file->private_data = NULL;
428 return 0;
429}
430
431static int hpet_ioctl_common(struct hpet_dev *, int, unsigned long, int);
432
433static int
434hpet_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
435 unsigned long arg)
436{
437 struct hpet_dev *devp;
438
439 devp = file->private_data;
440 return hpet_ioctl_common(devp, cmd, arg, 0);
441}
442
443static int hpet_ioctl_ieon(struct hpet_dev *devp)
444{
445 struct hpet_timer __iomem *timer;
446 struct hpet __iomem *hpet;
447 struct hpets *hpetp;
448 int irq;
449 unsigned long g, v, t, m;
450 unsigned long flags, isr;
451
452 timer = devp->hd_timer;
453 hpet = devp->hd_hpet;
454 hpetp = devp->hd_hpets;
455
Clemens Ladisch9090e6d2005-10-30 15:03:29 -0800456 if (!devp->hd_ireqfreq)
457 return -EIO;
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 spin_lock_irq(&hpet_lock);
460
461 if (devp->hd_flags & HPET_IE) {
462 spin_unlock_irq(&hpet_lock);
463 return -EBUSY;
464 }
465
466 devp->hd_flags |= HPET_IE;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800467
468 if (readl(&timer->hpet_config) & Tn_INT_TYPE_CNF_MASK)
469 devp->hd_flags |= HPET_SHARED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 spin_unlock_irq(&hpet_lock);
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 irq = devp->hd_hdwirq;
473
474 if (irq) {
Clemens Ladisch0d290862005-10-30 15:03:34 -0800475 unsigned long irq_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Clemens Ladisch0d290862005-10-30 15:03:34 -0800477 sprintf(devp->hd_name, "hpet%d", (int)(devp - hpetp->hp_dev));
478 irq_flags = devp->hd_flags & HPET_SHARED_IRQ
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700479 ? IRQF_SHARED : IRQF_DISABLED;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800480 if (request_irq(irq, hpet_interrupt, irq_flags,
481 devp->hd_name, (void *)devp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 printk(KERN_ERR "hpet: IRQ %d is not free\n", irq);
483 irq = 0;
484 }
485 }
486
487 if (irq == 0) {
488 spin_lock_irq(&hpet_lock);
489 devp->hd_flags ^= HPET_IE;
490 spin_unlock_irq(&hpet_lock);
491 return -EIO;
492 }
493
494 devp->hd_irq = irq;
495 t = devp->hd_ireqfreq;
496 v = readq(&timer->hpet_config);
David Brownell64a76f62008-07-29 12:47:38 -0700497
498 /* 64-bit comparators are not yet supported through the ioctls,
499 * so force this into 32-bit mode if it supports both modes
500 */
501 g = v | Tn_32MODE_CNF_MASK | Tn_INT_ENB_CNF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (devp->hd_flags & HPET_PERIODIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 g |= Tn_TYPE_CNF_MASK;
Nils Carlsonae21cf92009-09-23 15:57:13 -0700505 v |= Tn_TYPE_CNF_MASK | Tn_VAL_SET_CNF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 writeq(v, &timer->hpet_config);
507 local_irq_save(flags);
David Brownell64a76f62008-07-29 12:47:38 -0700508
Nils Carlsonae21cf92009-09-23 15:57:13 -0700509 /*
510 * NOTE: First we modify the hidden accumulator
David Brownell64a76f62008-07-29 12:47:38 -0700511 * register supported by periodic-capable comparators.
512 * We never want to modify the (single) counter; that
Nils Carlsonae21cf92009-09-23 15:57:13 -0700513 * would affect all the comparators. The value written
514 * is the counter value when the first interrupt is due.
David Brownell64a76f62008-07-29 12:47:38 -0700515 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 m = read_counter(&hpet->hpet_mc);
517 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
Nils Carlsonae21cf92009-09-23 15:57:13 -0700518 /*
519 * Then we modify the comparator, indicating the period
520 * for subsequent interrupt.
521 */
522 write_counter(t, &timer->hpet_compare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 } else {
524 local_irq_save(flags);
525 m = read_counter(&hpet->hpet_mc);
526 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
527 }
528
Clemens Ladisch0d290862005-10-30 15:03:34 -0800529 if (devp->hd_flags & HPET_SHARED_IRQ) {
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800530 isr = 1 << (devp - devp->hd_hpets->hp_dev);
Clemens Ladisch0d290862005-10-30 15:03:34 -0800531 writel(isr, &hpet->hpet_isr);
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 writeq(g, &timer->hpet_config);
534 local_irq_restore(flags);
535
536 return 0;
537}
538
Clemens Ladischba3f2132005-10-30 15:03:31 -0800539/* converts Hz to number of timer ticks */
540static inline unsigned long hpet_time_div(struct hpets *hpets,
541 unsigned long dis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Clemens Ladischba3f2132005-10-30 15:03:31 -0800543 unsigned long long m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Clemens Ladischba3f2132005-10-30 15:03:31 -0800545 m = hpets->hp_tick_freq + (dis >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 do_div(m, dis);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return (unsigned long)m;
548}
549
550static int
551hpet_ioctl_common(struct hpet_dev *devp, int cmd, unsigned long arg, int kernel)
552{
553 struct hpet_timer __iomem *timer;
554 struct hpet __iomem *hpet;
555 struct hpets *hpetp;
556 int err;
557 unsigned long v;
558
559 switch (cmd) {
560 case HPET_IE_OFF:
561 case HPET_INFO:
562 case HPET_EPI:
563 case HPET_DPI:
564 case HPET_IRQFREQ:
565 timer = devp->hd_timer;
566 hpet = devp->hd_hpet;
567 hpetp = devp->hd_hpets;
568 break;
569 case HPET_IE_ON:
570 return hpet_ioctl_ieon(devp);
571 default:
572 return -EINVAL;
573 }
574
575 err = 0;
576
577 switch (cmd) {
578 case HPET_IE_OFF:
579 if ((devp->hd_flags & HPET_IE) == 0)
580 break;
581 v = readq(&timer->hpet_config);
582 v &= ~Tn_INT_ENB_CNF_MASK;
583 writeq(v, &timer->hpet_config);
584 if (devp->hd_irq) {
585 free_irq(devp->hd_irq, devp);
586 devp->hd_irq = 0;
587 }
588 devp->hd_flags ^= HPET_IE;
589 break;
590 case HPET_INFO:
591 {
592 struct hpet_info info;
593
Clemens Ladischaf95ead2005-10-30 15:03:38 -0800594 if (devp->hd_ireqfreq)
595 info.hi_ireqfreq =
596 hpet_time_div(hpetp, devp->hd_ireqfreq);
597 else
598 info.hi_ireqfreq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 info.hi_flags =
600 readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK;
Clemens Ladischc860ed92005-10-30 15:03:40 -0800601 info.hi_hpet = hpetp->hp_which;
602 info.hi_timer = devp - hpetp->hp_dev;
Clemens Ladisch8e8505b2005-10-30 15:03:37 -0800603 if (kernel)
604 memcpy((void *)arg, &info, sizeof(info));
605 else
606 if (copy_to_user((void __user *)arg, &info,
607 sizeof(info)))
608 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
610 }
611 case HPET_EPI:
612 v = readq(&timer->hpet_config);
613 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
614 err = -ENXIO;
615 break;
616 }
617 devp->hd_flags |= HPET_PERIODIC;
618 break;
619 case HPET_DPI:
620 v = readq(&timer->hpet_config);
621 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
622 err = -ENXIO;
623 break;
624 }
625 if (devp->hd_flags & HPET_PERIODIC &&
626 readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
627 v = readq(&timer->hpet_config);
628 v ^= Tn_TYPE_CNF_MASK;
629 writeq(v, &timer->hpet_config);
630 }
631 devp->hd_flags &= ~HPET_PERIODIC;
632 break;
633 case HPET_IRQFREQ:
634 if (!kernel && (arg > hpet_max_freq) &&
635 !capable(CAP_SYS_RESOURCE)) {
636 err = -EACCES;
637 break;
638 }
639
Clemens Ladisch189e2dd2005-10-30 15:03:33 -0800640 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 err = -EINVAL;
642 break;
643 }
644
Clemens Ladischba3f2132005-10-30 15:03:31 -0800645 devp->hd_ireqfreq = hpet_time_div(hpetp, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
648 return err;
649}
650
Arjan van de Ven62322d22006-07-03 00:24:21 -0700651static const struct file_operations hpet_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 .owner = THIS_MODULE,
653 .llseek = no_llseek,
654 .read = hpet_read,
655 .poll = hpet_poll,
656 .ioctl = hpet_ioctl,
657 .open = hpet_open,
658 .release = hpet_release,
659 .fasync = hpet_fasync,
660 .mmap = hpet_mmap,
661};
662
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800663static int hpet_is_known(struct hpet_data *hdp)
664{
665 struct hpets *hpetp;
666
667 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
668 if (hpetp->hp_hpet_phys == hdp->hd_phys_address)
669 return 1;
670
671 return 0;
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674static ctl_table hpet_table[] = {
675 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .procname = "max-user-freq",
677 .data = &hpet_max_freq,
678 .maxlen = sizeof(int),
679 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800680 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800682 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683};
684
685static ctl_table hpet_root[] = {
686 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 .procname = "hpet",
688 .maxlen = 0,
689 .mode = 0555,
690 .child = hpet_table,
691 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800692 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693};
694
695static ctl_table dev_root[] = {
696 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 .procname = "dev",
698 .maxlen = 0,
699 .mode = 0555,
700 .child = hpet_root,
701 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800702 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703};
704
705static struct ctl_table_header *sysctl_header;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/*
708 * Adjustment for when arming the timer with
709 * initial conditions. That is, main counter
710 * ticks expired before interrupts are enabled.
711 */
712#define TICK_CALIBRATE (1000UL)
713
Yasunori Goto303d3792009-04-02 16:58:31 -0700714static unsigned long __hpet_calibrate(struct hpets *hpetp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct hpet_timer __iomem *timer = NULL;
717 unsigned long t, m, count, i, flags, start;
718 struct hpet_dev *devp;
719 int j;
720 struct hpet __iomem *hpet;
721
722 for (j = 0, devp = hpetp->hp_dev; j < hpetp->hp_ntimer; j++, devp++)
723 if ((devp->hd_flags & HPET_OPEN) == 0) {
724 timer = devp->hd_timer;
725 break;
726 }
727
728 if (!timer)
729 return 0;
730
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800731 hpet = hpetp->hp_hpet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 t = read_counter(&timer->hpet_compare);
733
734 i = 0;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800735 count = hpet_time_div(hpetp, TICK_CALIBRATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 local_irq_save(flags);
738
739 start = read_counter(&hpet->hpet_mc);
740
741 do {
742 m = read_counter(&hpet->hpet_mc);
743 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
744 } while (i++, (m - start) < count);
745
746 local_irq_restore(flags);
747
748 return (m - start) / i;
749}
750
Yasunori Goto303d3792009-04-02 16:58:31 -0700751static unsigned long hpet_calibrate(struct hpets *hpetp)
752{
753 unsigned long ret = -1;
754 unsigned long tmp;
755
756 /*
757 * Try to calibrate until return value becomes stable small value.
758 * If SMI interruption occurs in calibration loop, the return value
759 * will be big. This avoids its impact.
760 */
761 for ( ; ; ) {
762 tmp = __hpet_calibrate(hpetp);
763 if (ret <= tmp)
764 break;
765 ret = tmp;
766 }
767
768 return ret;
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771int hpet_alloc(struct hpet_data *hdp)
772{
Thomas Gleixner5761d642008-04-04 16:26:10 +0200773 u64 cap, mcfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct hpet_dev *devp;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200775 u32 i, ntimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct hpets *hpetp;
777 size_t siz;
778 struct hpet __iomem *hpet;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800779 static struct hpets *last = NULL;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200780 unsigned long period;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800781 unsigned long long temp;
David Brownellf92a7892008-07-31 12:59:56 -0700782 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 /*
785 * hpet_alloc can be called by platform dependent code.
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800786 * If platform dependent code has allocated the hpet that
787 * ACPI has also reported, then we catch it here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800789 if (hpet_is_known(hdp)) {
790 printk(KERN_DEBUG "%s: duplicate HPET ignored\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700791 __func__);
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800792 return 0;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
796 sizeof(struct hpet_dev));
797
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800798 hpetp = kzalloc(siz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 if (!hpetp)
801 return -ENOMEM;
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 hpetp->hp_which = hpet_nhpet++;
804 hpetp->hp_hpet = hdp->hd_address;
805 hpetp->hp_hpet_phys = hdp->hd_phys_address;
806
807 hpetp->hp_ntimer = hdp->hd_nirqs;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200808
809 for (i = 0; i < hdp->hd_nirqs; i++)
810 hpetp->hp_dev[i].hd_hdwirq = hdp->hd_irq[i];
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 hpet = hpetp->hp_hpet;
813
814 cap = readq(&hpet->hpet_cap);
815
816 ntimer = ((cap & HPET_NUM_TIM_CAP_MASK) >> HPET_NUM_TIM_CAP_SHIFT) + 1;
817
818 if (hpetp->hp_ntimer != ntimer) {
819 printk(KERN_WARNING "hpet: number irqs doesn't agree"
820 " with number of timers\n");
821 kfree(hpetp);
822 return -ENODEV;
823 }
824
825 if (last)
826 last->hp_next = hpetp;
827 else
828 hpets = hpetp;
829
830 last = hpetp;
831
Clemens Ladischba3f2132005-10-30 15:03:31 -0800832 period = (cap & HPET_COUNTER_CLK_PERIOD_MASK) >>
833 HPET_COUNTER_CLK_PERIOD_SHIFT; /* fs, 10^-15 */
834 temp = 1000000000000000uLL; /* 10^15 femtoseconds per second */
835 temp += period >> 1; /* round */
836 do_div(temp, period);
837 hpetp->hp_tick_freq = temp; /* ticks per second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Andi Kleen3034d112006-09-26 10:52:28 +0200839 printk(KERN_INFO "hpet%d: at MMIO 0x%lx, IRQ%s",
840 hpetp->hp_which, hdp->hd_phys_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 hpetp->hp_ntimer > 1 ? "s" : "");
842 for (i = 0; i < hpetp->hp_ntimer; i++)
Thomas Gleixner5761d642008-04-04 16:26:10 +0200843 printk("%s %d", i > 0 ? "," : "", hdp->hd_irq[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 printk("\n");
845
David Brownellf92a7892008-07-31 12:59:56 -0700846 temp = hpetp->hp_tick_freq;
847 remainder = do_div(temp, 1000000);
David Brownell64a76f62008-07-29 12:47:38 -0700848 printk(KERN_INFO
849 "hpet%u: %u comparators, %d-bit %u.%06u MHz counter\n",
850 hpetp->hp_which, hpetp->hp_ntimer,
851 cap & HPET_COUNTER_SIZE_MASK ? 64 : 32,
David Brownellf92a7892008-07-31 12:59:56 -0700852 (unsigned) temp, remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 mcfg = readq(&hpet->hpet_config);
855 if ((mcfg & HPET_ENABLE_CNF_MASK) == 0) {
856 write_counter(0L, &hpet->hpet_mc);
857 mcfg |= HPET_ENABLE_CNF_MASK;
858 writeq(mcfg, &hpet->hpet_config);
859 }
860
Clemens Ladisch642d30b2005-10-30 15:03:31 -0800861 for (i = 0, devp = hpetp->hp_dev; i < hpetp->hp_ntimer; i++, devp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct hpet_timer __iomem *timer;
863
864 timer = &hpet->hpet_timers[devp - hpetp->hp_dev];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 devp->hd_hpets = hpetp;
867 devp->hd_hpet = hpet;
868 devp->hd_timer = timer;
869
870 /*
871 * If the timer was reserved by platform code,
872 * then make timer unavailable for opens.
873 */
874 if (hdp->hd_state & (1 << i)) {
875 devp->hd_flags = HPET_OPEN;
876 continue;
877 }
878
879 init_waitqueue_head(&devp->hd_waitqueue);
880 }
881
882 hpetp->hp_delta = hpet_calibrate(hpetp);
Tony Luck0aa366f2007-07-20 11:22:30 -0700883
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700884/* This clocksource driver currently only works on ia64 */
885#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -0700886 if (!hpet_clocksource) {
887 hpet_mctr = (void __iomem *)&hpetp->hp_hpet->hpet_mc;
888 CLKSRC_FSYS_MMIO_SET(clocksource_hpet.fsys_mmio, hpet_mctr);
889 clocksource_hpet.mult = clocksource_hz2mult(hpetp->hp_tick_freq,
890 clocksource_hpet.shift);
891 clocksource_register(&clocksource_hpet);
892 hpetp->hp_clocksource = &clocksource_hpet;
893 hpet_clocksource = &clocksource_hpet;
894 }
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 return 0;
898}
899
900static acpi_status hpet_resources(struct acpi_resource *res, void *data)
901{
902 struct hpet_data *hdp;
903 acpi_status status;
904 struct acpi_resource_address64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 hdp = data;
907
908 status = acpi_resource_to_address64(res, &addr);
909
910 if (ACPI_SUCCESS(status)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400911 hdp->hd_phys_address = addr.minimum;
Bjorn Helgaas9224a862006-03-28 17:04:00 -0500912 hdp->hd_address = ioremap(addr.minimum, addr.address_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800914 if (hpet_is_known(hdp)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800915 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400916 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800917 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400918 } else if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
919 struct acpi_resource_fixed_memory32 *fixmem32;
Randy Dunlap757c4722005-10-30 15:03:42 -0800920
921 fixmem32 = &res->data.fixed_memory32;
922 if (!fixmem32)
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400923 return AE_NO_MEMORY;
Randy Dunlap757c4722005-10-30 15:03:42 -0800924
Bob Moore50eca3e2005-09-30 19:03:00 -0400925 hdp->hd_phys_address = fixmem32->address;
926 hdp->hd_address = ioremap(fixmem32->address,
Randy Dunlap757c4722005-10-30 15:03:42 -0800927 HPET_RANGE_SIZE);
928
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800929 if (hpet_is_known(hdp)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800930 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400931 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800932 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400933 } else if (res->type == ACPI_RESOURCE_TYPE_EXTENDED_IRQ) {
934 struct acpi_resource_extended_irq *irqp;
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800935 int i, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 irqp = &res->data.extended_irq;
938
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800939 for (i = 0; i < irqp->interrupt_count; i++) {
Yinghai Lua2f809b2009-04-27 18:01:20 -0700940 irq = acpi_register_gsi(NULL, irqp->interrupts[i],
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800941 irqp->triggering, irqp->polarity);
942 if (irq < 0)
943 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800945 hdp->hd_irq[hdp->hd_nirqs] = irq;
946 hdp->hd_nirqs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948 }
949
950 return AE_OK;
951}
952
953static int hpet_acpi_add(struct acpi_device *device)
954{
955 acpi_status result;
956 struct hpet_data data;
957
958 memset(&data, 0, sizeof(data));
959
960 result =
961 acpi_walk_resources(device->handle, METHOD_NAME__CRS,
962 hpet_resources, &data);
963
964 if (ACPI_FAILURE(result))
965 return -ENODEV;
966
967 if (!data.hd_address || !data.hd_nirqs) {
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700968 printk("%s: no address or irqs in _CRS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -ENODEV;
970 }
971
972 return hpet_alloc(&data);
973}
974
975static int hpet_acpi_remove(struct acpi_device *device, int type)
976{
Tony Luck0aa366f2007-07-20 11:22:30 -0700977 /* XXX need to unregister clocksource, dealloc mem, etc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return -EINVAL;
979}
980
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200981static const struct acpi_device_id hpet_device_ids[] = {
982 {"PNP0103", 0},
983 {"", 0},
984};
985MODULE_DEVICE_TABLE(acpi, hpet_device_ids);
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987static struct acpi_driver hpet_acpi_driver = {
988 .name = "hpet",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200989 .ids = hpet_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 .ops = {
991 .add = hpet_acpi_add,
992 .remove = hpet_acpi_remove,
993 },
994};
995
996static struct miscdevice hpet_misc = { HPET_MINOR, "hpet", &hpet_fops };
997
998static int __init hpet_init(void)
999{
1000 int result;
1001
1002 result = misc_register(&hpet_misc);
1003 if (result < 0)
1004 return -ENODEV;
1005
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08001006 sysctl_header = register_sysctl_table(dev_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 result = acpi_bus_register_driver(&hpet_acpi_driver);
1009 if (result < 0) {
1010 if (sysctl_header)
1011 unregister_sysctl_table(sysctl_header);
1012 misc_deregister(&hpet_misc);
1013 return result;
1014 }
1015
1016 return 0;
1017}
1018
1019static void __exit hpet_exit(void)
1020{
1021 acpi_bus_unregister_driver(&hpet_acpi_driver);
1022
1023 if (sysctl_header)
1024 unregister_sysctl_table(sysctl_header);
1025 misc_deregister(&hpet_misc);
1026
1027 return;
1028}
1029
1030module_init(hpet_init);
1031module_exit(hpet_exit);
1032MODULE_AUTHOR("Bob Picco <Robert.Picco@hp.com>");
1033MODULE_LICENSE("GPL");