blob: e3f9a99b8522e41dd2a4005142ea396838f26bbf [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>
Arnd Bergmann54066a52010-03-22 20:55:11 +010032#include <linux/compat.h>
Tony Luck0aa366f2007-07-20 11:22:30 -070033#include <linux/clocksource.h>
Jaswinder Singh Rajput0ca01762010-10-26 14:22:13 -070034#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Jaswinder Singh Rajput0ca01762010-10-26 14:22:13 -070036#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/current.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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
Arnd Bergmann54066a52010-03-22 20:55:11 +010069static DEFINE_MUTEX(hpet_mutex); /* replaces BKL */
Clemens Ladisch642d30b2005-10-30 15:03:31 -080070static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030072/* This clocksource driver currently only works on ia64 */
73#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -070074static void __iomem *hpet_mctr;
75
Magnus Damm8e196082009-04-21 12:24:00 -070076static cycle_t read_hpet(struct clocksource *cs)
Tony Luck0aa366f2007-07-20 11:22:30 -070077{
78 return (cycle_t)read_counter((void __iomem *)hpet_mctr);
79}
80
81static struct clocksource clocksource_hpet = {
Jaswinder Singh Rajput0ca01762010-10-26 14:22:13 -070082 .name = "hpet",
83 .rating = 250,
84 .read = read_hpet,
85 .mask = CLOCKSOURCE_MASK(64),
Jaswinder Singh Rajput0ca01762010-10-26 14:22:13 -070086 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Tony Luck0aa366f2007-07-20 11:22:30 -070087};
88static struct clocksource *hpet_clocksource;
S.Çağlar Onur3dffec42007-09-26 12:15:33 +030089#endif
Tony Luck0aa366f2007-07-20 11:22:30 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* A lock for concurrent access by app and isr hpet activity. */
92static DEFINE_SPINLOCK(hpet_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#define HPET_DEV_NAME (7)
95
96struct hpet_dev {
97 struct hpets *hd_hpets;
98 struct hpet __iomem *hd_hpet;
99 struct hpet_timer __iomem *hd_timer;
100 unsigned long hd_ireqfreq;
101 unsigned long hd_irqdata;
102 wait_queue_head_t hd_waitqueue;
103 struct fasync_struct *hd_async_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 unsigned int hd_flags;
105 unsigned int hd_irq;
106 unsigned int hd_hdwirq;
107 char hd_name[HPET_DEV_NAME];
108};
109
110struct hpets {
111 struct hpets *hp_next;
112 struct hpet __iomem *hp_hpet;
113 unsigned long hp_hpet_phys;
Tony Luck0aa366f2007-07-20 11:22:30 -0700114 struct clocksource *hp_clocksource;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800115 unsigned long long hp_tick_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 unsigned long hp_delta;
117 unsigned int hp_ntimer;
118 unsigned int hp_which;
119 struct hpet_dev hp_dev[1];
120};
121
122static struct hpets *hpets;
123
124#define HPET_OPEN 0x0001
125#define HPET_IE 0x0002 /* interrupt enabled */
126#define HPET_PERIODIC 0x0004
Clemens Ladisch0d290862005-10-30 15:03:34 -0800127#define HPET_SHARED_IRQ 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130#ifndef readq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700131static inline unsigned long long readq(void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
134}
135#endif
136
137#ifndef writeq
Adrian Bunk887c27f2005-09-10 00:26:52 -0700138static inline void writeq(unsigned long long v, void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 writel(v & 0xffffffff, addr);
141 writel(v >> 32, addr + 4);
142}
143#endif
144
David Howells7d12e782006-10-05 14:55:46 +0100145static irqreturn_t hpet_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct hpet_dev *devp;
148 unsigned long isr;
149
150 devp = data;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800151 isr = 1 << (devp - devp->hd_hpets->hp_dev);
152
153 if ((devp->hd_flags & HPET_SHARED_IRQ) &&
154 !(isr & readl(&devp->hd_hpet->hpet_isr)))
155 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 spin_lock(&hpet_lock);
158 devp->hd_irqdata++;
159
160 /*
161 * For non-periodic timers, increment the accumulator.
162 * This has the effect of treating non-periodic like periodic.
163 */
164 if ((devp->hd_flags & (HPET_IE | HPET_PERIODIC)) == HPET_IE) {
Nils Carlson273ef952011-06-15 15:08:54 -0700165 unsigned long m, t, mc, base, k;
166 struct hpet __iomem *hpet = devp->hd_hpet;
167 struct hpets *hpetp = devp->hd_hpets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 t = devp->hd_ireqfreq;
Nils Carlsonae21cf92009-09-23 15:57:13 -0700170 m = read_counter(&devp->hd_timer->hpet_compare);
Nils Carlson273ef952011-06-15 15:08:54 -0700171 mc = read_counter(&hpet->hpet_mc);
172 /* The time for the next interrupt would logically be t + m,
173 * however, if we are very unlucky and the interrupt is delayed
174 * for longer than t then we will completely miss the next
175 * interrupt if we set t + m and an application will hang.
176 * Therefore we need to make a more complex computation assuming
177 * that there exists a k for which the following is true:
178 * k * t + base < mc + delta
179 * (k + 1) * t + base > mc + delta
180 * where t is the interval in hpet ticks for the given freq,
181 * base is the theoretical start value 0 < base < t,
182 * mc is the main counter value at the time of the interrupt,
183 * delta is the time it takes to write the a value to the
184 * comparator.
185 * k may then be computed as (mc - base + delta) / t .
186 */
187 base = mc % t;
188 k = (mc - base + hpetp->hp_delta) / t;
189 write_counter(t * (k + 1) + base,
190 &devp->hd_timer->hpet_compare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
Clemens Ladisch0d290862005-10-30 15:03:34 -0800193 if (devp->hd_flags & HPET_SHARED_IRQ)
194 writel(isr, &devp->hd_hpet->hpet_isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 spin_unlock(&hpet_lock);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 wake_up_interruptible(&devp->hd_waitqueue);
198
199 kill_fasync(&devp->hd_async_queue, SIGIO, POLL_IN);
200
201 return IRQ_HANDLED;
202}
203
Kevin Hao70ef6d52008-05-29 18:41:04 +0800204static void hpet_timer_set_irq(struct hpet_dev *devp)
205{
206 unsigned long v;
207 int irq, gsi;
208 struct hpet_timer __iomem *timer;
209
210 spin_lock_irq(&hpet_lock);
211 if (devp->hd_hdwirq) {
212 spin_unlock_irq(&hpet_lock);
213 return;
214 }
215
216 timer = devp->hd_timer;
217
218 /* we prefer level triggered mode */
219 v = readl(&timer->hpet_config);
220 if (!(v & Tn_INT_TYPE_CNF_MASK)) {
221 v |= Tn_INT_TYPE_CNF_MASK;
222 writel(v, &timer->hpet_config);
223 }
224 spin_unlock_irq(&hpet_lock);
225
226 v = (readq(&timer->hpet_config) & Tn_INT_ROUTE_CAP_MASK) >>
227 Tn_INT_ROUTE_CAP_SHIFT;
228
229 /*
230 * In PIC mode, skip IRQ0-4, IRQ6-9, IRQ12-15 which is always used by
231 * legacy device. In IO APIC mode, we skip all the legacy IRQS.
232 */
233 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC)
234 v &= ~0xf3df;
235 else
236 v &= ~0xffff;
237
Akinobu Mitae5d61512010-03-15 00:35:01 -0400238 for_each_set_bit(irq, &v, HPET_MAX_IRQ) {
Yinghai Lu1f45f562008-08-19 20:49:49 -0700239 if (irq >= nr_irqs) {
Kevin Hao70ef6d52008-05-29 18:41:04 +0800240 irq = HPET_MAX_IRQ;
241 break;
242 }
243
Yinghai Lua2f809b2009-04-27 18:01:20 -0700244 gsi = acpi_register_gsi(NULL, irq, ACPI_LEVEL_SENSITIVE,
Kevin Hao70ef6d52008-05-29 18:41:04 +0800245 ACPI_ACTIVE_LOW);
246 if (gsi > 0)
247 break;
248
249 /* FIXME: Setup interrupt source table */
250 }
251
252 if (irq < HPET_MAX_IRQ) {
253 spin_lock_irq(&hpet_lock);
254 v = readl(&timer->hpet_config);
255 v |= irq << Tn_INT_ROUTE_CNF_SHIFT;
256 writel(v, &timer->hpet_config);
257 devp->hd_hdwirq = gsi;
258 spin_unlock_irq(&hpet_lock);
259 }
260 return;
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263static int hpet_open(struct inode *inode, struct file *file)
264{
265 struct hpet_dev *devp;
266 struct hpets *hpetp;
267 int i;
268
269 if (file->f_mode & FMODE_WRITE)
270 return -EINVAL;
271
Arnd Bergmann54066a52010-03-22 20:55:11 +0100272 mutex_lock(&hpet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 spin_lock_irq(&hpet_lock);
274
275 for (devp = NULL, hpetp = hpets; hpetp && !devp; hpetp = hpetp->hp_next)
276 for (i = 0; i < hpetp->hp_ntimer; i++)
David Brownell64a76f62008-07-29 12:47:38 -0700277 if (hpetp->hp_dev[i].hd_flags & HPET_OPEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 continue;
279 else {
280 devp = &hpetp->hp_dev[i];
281 break;
282 }
283
284 if (!devp) {
285 spin_unlock_irq(&hpet_lock);
Arnd Bergmann54066a52010-03-22 20:55:11 +0100286 mutex_unlock(&hpet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return -EBUSY;
288 }
289
290 file->private_data = devp;
291 devp->hd_irqdata = 0;
292 devp->hd_flags |= HPET_OPEN;
293 spin_unlock_irq(&hpet_lock);
Arnd Bergmann54066a52010-03-22 20:55:11 +0100294 mutex_unlock(&hpet_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Kevin Hao70ef6d52008-05-29 18:41:04 +0800296 hpet_timer_set_irq(devp);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return 0;
299}
300
301static ssize_t
302hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos)
303{
304 DECLARE_WAITQUEUE(wait, current);
305 unsigned long data;
306 ssize_t retval;
307 struct hpet_dev *devp;
308
309 devp = file->private_data;
310 if (!devp->hd_ireqfreq)
311 return -EIO;
312
313 if (count < sizeof(unsigned long))
314 return -EINVAL;
315
316 add_wait_queue(&devp->hd_waitqueue, &wait);
317
318 for ( ; ; ) {
319 set_current_state(TASK_INTERRUPTIBLE);
320
321 spin_lock_irq(&hpet_lock);
322 data = devp->hd_irqdata;
323 devp->hd_irqdata = 0;
324 spin_unlock_irq(&hpet_lock);
325
326 if (data)
327 break;
328 else if (file->f_flags & O_NONBLOCK) {
329 retval = -EAGAIN;
330 goto out;
331 } else if (signal_pending(current)) {
332 retval = -ERESTARTSYS;
333 goto out;
334 }
335 schedule();
336 }
337
338 retval = put_user(data, (unsigned long __user *)buf);
339 if (!retval)
340 retval = sizeof(unsigned long);
341out:
342 __set_current_state(TASK_RUNNING);
343 remove_wait_queue(&devp->hd_waitqueue, &wait);
344
345 return retval;
346}
347
348static unsigned int hpet_poll(struct file *file, poll_table * wait)
349{
350 unsigned long v;
351 struct hpet_dev *devp;
352
353 devp = file->private_data;
354
355 if (!devp->hd_ireqfreq)
356 return 0;
357
358 poll_wait(file, &devp->hd_waitqueue, wait);
359
360 spin_lock_irq(&hpet_lock);
361 v = devp->hd_irqdata;
362 spin_unlock_irq(&hpet_lock);
363
364 if (v != 0)
365 return POLLIN | POLLRDNORM;
366
367 return 0;
368}
369
370static int hpet_mmap(struct file *file, struct vm_area_struct *vma)
371{
372#ifdef CONFIG_HPET_MMAP
373 struct hpet_dev *devp;
374 unsigned long addr;
375
376 if (((vma->vm_end - vma->vm_start) != PAGE_SIZE) || vma->vm_pgoff)
377 return -EINVAL;
378
379 devp = file->private_data;
380 addr = devp->hd_hpets->hp_hpet_phys;
381
382 if (addr & (PAGE_SIZE - 1))
383 return -ENOSYS;
384
385 vma->vm_flags |= VM_IO;
386 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
389 PAGE_SIZE, vma->vm_page_prot)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800390 printk(KERN_ERR "%s: io_remap_pfn_range failed\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700391 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -EAGAIN;
393 }
394
395 return 0;
396#else
397 return -ENOSYS;
398#endif
399}
400
401static int hpet_fasync(int fd, struct file *file, int on)
402{
403 struct hpet_dev *devp;
404
405 devp = file->private_data;
406
407 if (fasync_helper(fd, file, on, &devp->hd_async_queue) >= 0)
408 return 0;
409 else
410 return -EIO;
411}
412
413static int hpet_release(struct inode *inode, struct file *file)
414{
415 struct hpet_dev *devp;
416 struct hpet_timer __iomem *timer;
417 int irq = 0;
418
419 devp = file->private_data;
420 timer = devp->hd_timer;
421
422 spin_lock_irq(&hpet_lock);
423
424 writeq((readq(&timer->hpet_config) & ~Tn_INT_ENB_CNF_MASK),
425 &timer->hpet_config);
426
427 irq = devp->hd_irq;
428 devp->hd_irq = 0;
429
430 devp->hd_ireqfreq = 0;
431
432 if (devp->hd_flags & HPET_PERIODIC
433 && readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
434 unsigned long v;
435
436 v = readq(&timer->hpet_config);
437 v ^= Tn_TYPE_CNF_MASK;
438 writeq(v, &timer->hpet_config);
439 }
440
441 devp->hd_flags &= ~(HPET_OPEN | HPET_IE | HPET_PERIODIC);
442 spin_unlock_irq(&hpet_lock);
443
444 if (irq)
445 free_irq(irq, devp);
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 file->private_data = NULL;
448 return 0;
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451static int hpet_ioctl_ieon(struct hpet_dev *devp)
452{
453 struct hpet_timer __iomem *timer;
454 struct hpet __iomem *hpet;
455 struct hpets *hpetp;
456 int irq;
457 unsigned long g, v, t, m;
458 unsigned long flags, isr;
459
460 timer = devp->hd_timer;
461 hpet = devp->hd_hpet;
462 hpetp = devp->hd_hpets;
463
Clemens Ladisch9090e6d2005-10-30 15:03:29 -0800464 if (!devp->hd_ireqfreq)
465 return -EIO;
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 spin_lock_irq(&hpet_lock);
468
469 if (devp->hd_flags & HPET_IE) {
470 spin_unlock_irq(&hpet_lock);
471 return -EBUSY;
472 }
473
474 devp->hd_flags |= HPET_IE;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800475
476 if (readl(&timer->hpet_config) & Tn_INT_TYPE_CNF_MASK)
477 devp->hd_flags |= HPET_SHARED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 spin_unlock_irq(&hpet_lock);
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 irq = devp->hd_hdwirq;
481
482 if (irq) {
Clemens Ladisch0d290862005-10-30 15:03:34 -0800483 unsigned long irq_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Clemens Ladisch96e96942010-10-26 14:22:13 -0700485 if (devp->hd_flags & HPET_SHARED_IRQ) {
486 /*
487 * To prevent the interrupt handler from seeing an
488 * unwanted interrupt status bit, program the timer
489 * so that it will not fire in the near future ...
490 */
491 writel(readl(&timer->hpet_config) & ~Tn_TYPE_CNF_MASK,
492 &timer->hpet_config);
493 write_counter(read_counter(&hpet->hpet_mc),
494 &timer->hpet_compare);
495 /* ... and clear any left-over status. */
496 isr = 1 << (devp - devp->hd_hpets->hp_dev);
497 writel(isr, &hpet->hpet_isr);
498 }
499
Clemens Ladisch0d290862005-10-30 15:03:34 -0800500 sprintf(devp->hd_name, "hpet%d", (int)(devp - hpetp->hp_dev));
501 irq_flags = devp->hd_flags & HPET_SHARED_IRQ
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700502 ? IRQF_SHARED : IRQF_DISABLED;
Clemens Ladisch0d290862005-10-30 15:03:34 -0800503 if (request_irq(irq, hpet_interrupt, irq_flags,
504 devp->hd_name, (void *)devp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 printk(KERN_ERR "hpet: IRQ %d is not free\n", irq);
506 irq = 0;
507 }
508 }
509
510 if (irq == 0) {
511 spin_lock_irq(&hpet_lock);
512 devp->hd_flags ^= HPET_IE;
513 spin_unlock_irq(&hpet_lock);
514 return -EIO;
515 }
516
517 devp->hd_irq = irq;
518 t = devp->hd_ireqfreq;
519 v = readq(&timer->hpet_config);
David Brownell64a76f62008-07-29 12:47:38 -0700520
521 /* 64-bit comparators are not yet supported through the ioctls,
522 * so force this into 32-bit mode if it supports both modes
523 */
524 g = v | Tn_32MODE_CNF_MASK | Tn_INT_ENB_CNF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (devp->hd_flags & HPET_PERIODIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 g |= Tn_TYPE_CNF_MASK;
Nils Carlsonae21cf92009-09-23 15:57:13 -0700528 v |= Tn_TYPE_CNF_MASK | Tn_VAL_SET_CNF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 writeq(v, &timer->hpet_config);
530 local_irq_save(flags);
David Brownell64a76f62008-07-29 12:47:38 -0700531
Nils Carlsonae21cf92009-09-23 15:57:13 -0700532 /*
533 * NOTE: First we modify the hidden accumulator
David Brownell64a76f62008-07-29 12:47:38 -0700534 * register supported by periodic-capable comparators.
535 * We never want to modify the (single) counter; that
Nils Carlsonae21cf92009-09-23 15:57:13 -0700536 * would affect all the comparators. The value written
537 * is the counter value when the first interrupt is due.
David Brownell64a76f62008-07-29 12:47:38 -0700538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 m = read_counter(&hpet->hpet_mc);
540 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
Nils Carlsonae21cf92009-09-23 15:57:13 -0700541 /*
542 * Then we modify the comparator, indicating the period
543 * for subsequent interrupt.
544 */
545 write_counter(t, &timer->hpet_compare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 } else {
547 local_irq_save(flags);
548 m = read_counter(&hpet->hpet_mc);
549 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
550 }
551
Clemens Ladisch0d290862005-10-30 15:03:34 -0800552 if (devp->hd_flags & HPET_SHARED_IRQ) {
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800553 isr = 1 << (devp - devp->hd_hpets->hp_dev);
Clemens Ladisch0d290862005-10-30 15:03:34 -0800554 writel(isr, &hpet->hpet_isr);
555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 writeq(g, &timer->hpet_config);
557 local_irq_restore(flags);
558
559 return 0;
560}
561
Clemens Ladischba3f2132005-10-30 15:03:31 -0800562/* converts Hz to number of timer ticks */
563static inline unsigned long hpet_time_div(struct hpets *hpets,
564 unsigned long dis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Clemens Ladischba3f2132005-10-30 15:03:31 -0800566 unsigned long long m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Clemens Ladischba3f2132005-10-30 15:03:31 -0800568 m = hpets->hp_tick_freq + (dis >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 do_div(m, dis);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return (unsigned long)m;
571}
572
573static int
Arnd Bergmann54066a52010-03-22 20:55:11 +0100574hpet_ioctl_common(struct hpet_dev *devp, int cmd, unsigned long arg,
575 struct hpet_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct hpet_timer __iomem *timer;
578 struct hpet __iomem *hpet;
579 struct hpets *hpetp;
580 int err;
581 unsigned long v;
582
583 switch (cmd) {
584 case HPET_IE_OFF:
585 case HPET_INFO:
586 case HPET_EPI:
587 case HPET_DPI:
588 case HPET_IRQFREQ:
589 timer = devp->hd_timer;
590 hpet = devp->hd_hpet;
591 hpetp = devp->hd_hpets;
592 break;
593 case HPET_IE_ON:
594 return hpet_ioctl_ieon(devp);
595 default:
596 return -EINVAL;
597 }
598
599 err = 0;
600
601 switch (cmd) {
602 case HPET_IE_OFF:
603 if ((devp->hd_flags & HPET_IE) == 0)
604 break;
605 v = readq(&timer->hpet_config);
606 v &= ~Tn_INT_ENB_CNF_MASK;
607 writeq(v, &timer->hpet_config);
608 if (devp->hd_irq) {
609 free_irq(devp->hd_irq, devp);
610 devp->hd_irq = 0;
611 }
612 devp->hd_flags ^= HPET_IE;
613 break;
614 case HPET_INFO:
615 {
Vasiliy Kulikovdae512e2010-10-26 14:22:15 -0700616 memset(info, 0, sizeof(*info));
Clemens Ladischaf95ead2005-10-30 15:03:38 -0800617 if (devp->hd_ireqfreq)
Arnd Bergmann54066a52010-03-22 20:55:11 +0100618 info->hi_ireqfreq =
Clemens Ladischaf95ead2005-10-30 15:03:38 -0800619 hpet_time_div(hpetp, devp->hd_ireqfreq);
Arnd Bergmann54066a52010-03-22 20:55:11 +0100620 info->hi_flags =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 readq(&timer->hpet_config) & Tn_PER_INT_CAP_MASK;
Arnd Bergmann54066a52010-03-22 20:55:11 +0100622 info->hi_hpet = hpetp->hp_which;
623 info->hi_timer = devp - hpetp->hp_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625 }
626 case HPET_EPI:
627 v = readq(&timer->hpet_config);
628 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
629 err = -ENXIO;
630 break;
631 }
632 devp->hd_flags |= HPET_PERIODIC;
633 break;
634 case HPET_DPI:
635 v = readq(&timer->hpet_config);
636 if ((v & Tn_PER_INT_CAP_MASK) == 0) {
637 err = -ENXIO;
638 break;
639 }
640 if (devp->hd_flags & HPET_PERIODIC &&
641 readq(&timer->hpet_config) & Tn_TYPE_CNF_MASK) {
642 v = readq(&timer->hpet_config);
643 v ^= Tn_TYPE_CNF_MASK;
644 writeq(v, &timer->hpet_config);
645 }
646 devp->hd_flags &= ~HPET_PERIODIC;
647 break;
648 case HPET_IRQFREQ:
Arnd Bergmann54066a52010-03-22 20:55:11 +0100649 if ((arg > hpet_max_freq) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 !capable(CAP_SYS_RESOURCE)) {
651 err = -EACCES;
652 break;
653 }
654
Clemens Ladisch189e2dd2005-10-30 15:03:33 -0800655 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 err = -EINVAL;
657 break;
658 }
659
Clemens Ladischba3f2132005-10-30 15:03:31 -0800660 devp->hd_ireqfreq = hpet_time_div(hpetp, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
663 return err;
664}
665
Arnd Bergmann54066a52010-03-22 20:55:11 +0100666static long
667hpet_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
668{
669 struct hpet_info info;
670 int err;
671
672 mutex_lock(&hpet_mutex);
673 err = hpet_ioctl_common(file->private_data, cmd, arg, &info);
674 mutex_unlock(&hpet_mutex);
675
676 if ((cmd == HPET_INFO) && !err &&
677 (copy_to_user((void __user *)arg, &info, sizeof(info))))
678 err = -EFAULT;
679
680 return err;
681}
682
683#ifdef CONFIG_COMPAT
684struct compat_hpet_info {
685 compat_ulong_t hi_ireqfreq; /* Hz */
686 compat_ulong_t hi_flags; /* information */
687 unsigned short hi_hpet;
688 unsigned short hi_timer;
689};
690
691static long
692hpet_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
693{
694 struct hpet_info info;
695 int err;
696
697 mutex_lock(&hpet_mutex);
698 err = hpet_ioctl_common(file->private_data, cmd, arg, &info);
699 mutex_unlock(&hpet_mutex);
700
701 if ((cmd == HPET_INFO) && !err) {
702 struct compat_hpet_info __user *u = compat_ptr(arg);
703 if (put_user(info.hi_ireqfreq, &u->hi_ireqfreq) ||
704 put_user(info.hi_flags, &u->hi_flags) ||
705 put_user(info.hi_hpet, &u->hi_hpet) ||
706 put_user(info.hi_timer, &u->hi_timer))
707 err = -EFAULT;
708 }
709
710 return err;
711}
712#endif
713
Arjan van de Ven62322d22006-07-03 00:24:21 -0700714static const struct file_operations hpet_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 .owner = THIS_MODULE,
716 .llseek = no_llseek,
717 .read = hpet_read,
718 .poll = hpet_poll,
Arnd Bergmann55929332010-04-27 00:24:05 +0200719 .unlocked_ioctl = hpet_ioctl,
Arnd Bergmann54066a52010-03-22 20:55:11 +0100720#ifdef CONFIG_COMPAT
721 .compat_ioctl = hpet_compat_ioctl,
722#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .open = hpet_open,
724 .release = hpet_release,
725 .fasync = hpet_fasync,
726 .mmap = hpet_mmap,
727};
728
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800729static int hpet_is_known(struct hpet_data *hdp)
730{
731 struct hpets *hpetp;
732
733 for (hpetp = hpets; hpetp; hpetp = hpetp->hp_next)
734 if (hpetp->hp_hpet_phys == hdp->hd_phys_address)
735 return 1;
736
737 return 0;
738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static ctl_table hpet_table[] = {
741 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 .procname = "max-user-freq",
743 .data = &hpet_max_freq,
744 .maxlen = sizeof(int),
745 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800746 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800748 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749};
750
751static ctl_table hpet_root[] = {
752 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 .procname = "hpet",
754 .maxlen = 0,
755 .mode = 0555,
756 .child = hpet_table,
757 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800758 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759};
760
761static ctl_table dev_root[] = {
762 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 .procname = "dev",
764 .maxlen = 0,
765 .mode = 0555,
766 .child = hpet_root,
767 },
Eric W. Biederman894d2492009-11-05 14:34:02 -0800768 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
771static struct ctl_table_header *sysctl_header;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/*
774 * Adjustment for when arming the timer with
775 * initial conditions. That is, main counter
776 * ticks expired before interrupts are enabled.
777 */
778#define TICK_CALIBRATE (1000UL)
779
Yasunori Goto303d3792009-04-02 16:58:31 -0700780static unsigned long __hpet_calibrate(struct hpets *hpetp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct hpet_timer __iomem *timer = NULL;
783 unsigned long t, m, count, i, flags, start;
784 struct hpet_dev *devp;
785 int j;
786 struct hpet __iomem *hpet;
787
788 for (j = 0, devp = hpetp->hp_dev; j < hpetp->hp_ntimer; j++, devp++)
789 if ((devp->hd_flags & HPET_OPEN) == 0) {
790 timer = devp->hd_timer;
791 break;
792 }
793
794 if (!timer)
795 return 0;
796
Clemens Ladisch3d5640d2005-10-30 15:03:39 -0800797 hpet = hpetp->hp_hpet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 t = read_counter(&timer->hpet_compare);
799
800 i = 0;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800801 count = hpet_time_div(hpetp, TICK_CALIBRATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 local_irq_save(flags);
804
805 start = read_counter(&hpet->hpet_mc);
806
807 do {
808 m = read_counter(&hpet->hpet_mc);
809 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare);
810 } while (i++, (m - start) < count);
811
812 local_irq_restore(flags);
813
814 return (m - start) / i;
815}
816
Yasunori Goto303d3792009-04-02 16:58:31 -0700817static unsigned long hpet_calibrate(struct hpets *hpetp)
818{
Chen Gang2cf4e522012-11-23 17:46:43 +0800819 unsigned long ret = ~0UL;
Yasunori Goto303d3792009-04-02 16:58:31 -0700820 unsigned long tmp;
821
822 /*
823 * Try to calibrate until return value becomes stable small value.
824 * If SMI interruption occurs in calibration loop, the return value
825 * will be big. This avoids its impact.
826 */
827 for ( ; ; ) {
828 tmp = __hpet_calibrate(hpetp);
829 if (ret <= tmp)
830 break;
831 ret = tmp;
832 }
833
834 return ret;
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837int hpet_alloc(struct hpet_data *hdp)
838{
Thomas Gleixner5761d642008-04-04 16:26:10 +0200839 u64 cap, mcfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 struct hpet_dev *devp;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200841 u32 i, ntimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct hpets *hpetp;
843 size_t siz;
844 struct hpet __iomem *hpet;
Jaswinder Singh Rajput0ca01762010-10-26 14:22:13 -0700845 static struct hpets *last;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200846 unsigned long period;
Clemens Ladischba3f2132005-10-30 15:03:31 -0800847 unsigned long long temp;
David Brownellf92a7892008-07-31 12:59:56 -0700848 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /*
851 * hpet_alloc can be called by platform dependent code.
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800852 * If platform dependent code has allocated the hpet that
853 * ACPI has also reported, then we catch it here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 */
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800855 if (hpet_is_known(hdp)) {
856 printk(KERN_DEBUG "%s: duplicate HPET ignored\n",
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700857 __func__);
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800858 return 0;
859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
862 sizeof(struct hpet_dev));
863
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800864 hpetp = kzalloc(siz, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!hpetp)
867 return -ENOMEM;
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 hpetp->hp_which = hpet_nhpet++;
870 hpetp->hp_hpet = hdp->hd_address;
871 hpetp->hp_hpet_phys = hdp->hd_phys_address;
872
873 hpetp->hp_ntimer = hdp->hd_nirqs;
Thomas Gleixner5761d642008-04-04 16:26:10 +0200874
875 for (i = 0; i < hdp->hd_nirqs; i++)
876 hpetp->hp_dev[i].hd_hdwirq = hdp->hd_irq[i];
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 hpet = hpetp->hp_hpet;
879
880 cap = readq(&hpet->hpet_cap);
881
882 ntimer = ((cap & HPET_NUM_TIM_CAP_MASK) >> HPET_NUM_TIM_CAP_SHIFT) + 1;
883
884 if (hpetp->hp_ntimer != ntimer) {
885 printk(KERN_WARNING "hpet: number irqs doesn't agree"
886 " with number of timers\n");
887 kfree(hpetp);
888 return -ENODEV;
889 }
890
891 if (last)
892 last->hp_next = hpetp;
893 else
894 hpets = hpetp;
895
896 last = hpetp;
897
Clemens Ladischba3f2132005-10-30 15:03:31 -0800898 period = (cap & HPET_COUNTER_CLK_PERIOD_MASK) >>
899 HPET_COUNTER_CLK_PERIOD_SHIFT; /* fs, 10^-15 */
900 temp = 1000000000000000uLL; /* 10^15 femtoseconds per second */
901 temp += period >> 1; /* round */
902 do_div(temp, period);
903 hpetp->hp_tick_freq = temp; /* ticks per second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Andi Kleen3034d112006-09-26 10:52:28 +0200905 printk(KERN_INFO "hpet%d: at MMIO 0x%lx, IRQ%s",
906 hpetp->hp_which, hdp->hd_phys_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 hpetp->hp_ntimer > 1 ? "s" : "");
908 for (i = 0; i < hpetp->hp_ntimer; i++)
Kay Sievers5da527a2012-04-03 03:18:23 +0200909 printk(KERN_CONT "%s %d", i > 0 ? "," : "", hdp->hd_irq[i]);
910 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
David Brownellf92a7892008-07-31 12:59:56 -0700912 temp = hpetp->hp_tick_freq;
913 remainder = do_div(temp, 1000000);
David Brownell64a76f62008-07-29 12:47:38 -0700914 printk(KERN_INFO
915 "hpet%u: %u comparators, %d-bit %u.%06u MHz counter\n",
916 hpetp->hp_which, hpetp->hp_ntimer,
917 cap & HPET_COUNTER_SIZE_MASK ? 64 : 32,
David Brownellf92a7892008-07-31 12:59:56 -0700918 (unsigned) temp, remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 mcfg = readq(&hpet->hpet_config);
921 if ((mcfg & HPET_ENABLE_CNF_MASK) == 0) {
922 write_counter(0L, &hpet->hpet_mc);
923 mcfg |= HPET_ENABLE_CNF_MASK;
924 writeq(mcfg, &hpet->hpet_config);
925 }
926
Clemens Ladisch642d30b2005-10-30 15:03:31 -0800927 for (i = 0, devp = hpetp->hp_dev; i < hpetp->hp_ntimer; i++, devp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct hpet_timer __iomem *timer;
929
930 timer = &hpet->hpet_timers[devp - hpetp->hp_dev];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 devp->hd_hpets = hpetp;
933 devp->hd_hpet = hpet;
934 devp->hd_timer = timer;
935
936 /*
937 * If the timer was reserved by platform code,
938 * then make timer unavailable for opens.
939 */
940 if (hdp->hd_state & (1 << i)) {
941 devp->hd_flags = HPET_OPEN;
942 continue;
943 }
944
945 init_waitqueue_head(&devp->hd_waitqueue);
946 }
947
948 hpetp->hp_delta = hpet_calibrate(hpetp);
Tony Luck0aa366f2007-07-20 11:22:30 -0700949
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700950/* This clocksource driver currently only works on ia64 */
951#ifdef CONFIG_IA64
Tony Luck0aa366f2007-07-20 11:22:30 -0700952 if (!hpet_clocksource) {
953 hpet_mctr = (void __iomem *)&hpetp->hp_hpet->hpet_mc;
Andy Lutomirski574c44f2011-07-13 09:24:15 -0400954 clocksource_hpet.archdata.fsys_mmio = hpet_mctr;
John Stultzd60c3042010-04-26 20:20:47 -0700955 clocksource_register_hz(&clocksource_hpet, hpetp->hp_tick_freq);
Tony Luck0aa366f2007-07-20 11:22:30 -0700956 hpetp->hp_clocksource = &clocksource_hpet;
957 hpet_clocksource = &clocksource_hpet;
958 }
Linus Torvalds3b2b64f2007-08-31 20:13:57 -0700959#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 return 0;
962}
963
964static acpi_status hpet_resources(struct acpi_resource *res, void *data)
965{
966 struct hpet_data *hdp;
967 acpi_status status;
968 struct acpi_resource_address64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 hdp = data;
971
972 status = acpi_resource_to_address64(res, &addr);
973
974 if (ACPI_SUCCESS(status)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400975 hdp->hd_phys_address = addr.minimum;
Bjorn Helgaas9224a862006-03-28 17:04:00 -0500976 hdp->hd_address = ioremap(addr.minimum, addr.address_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800978 if (hpet_is_known(hdp)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800979 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400980 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800981 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400982 } else if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
983 struct acpi_resource_fixed_memory32 *fixmem32;
Randy Dunlap757c4722005-10-30 15:03:42 -0800984
985 fixmem32 = &res->data.fixed_memory32;
986 if (!fixmem32)
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400987 return AE_NO_MEMORY;
Randy Dunlap757c4722005-10-30 15:03:42 -0800988
Bob Moore50eca3e2005-09-30 19:03:00 -0400989 hdp->hd_phys_address = fixmem32->address;
990 hdp->hd_address = ioremap(fixmem32->address,
Randy Dunlap757c4722005-10-30 15:03:42 -0800991 HPET_RANGE_SIZE);
992
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800993 if (hpet_is_known(hdp)) {
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800994 iounmap(hdp->hd_address);
Zhao Yakui78e1ca42007-09-20 21:23:13 -0400995 return AE_ALREADY_EXISTS;
Randy Dunlap3e6716e2005-10-30 15:03:44 -0800996 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400997 } else if (res->type == ACPI_RESOURCE_TYPE_EXTENDED_IRQ) {
998 struct acpi_resource_extended_irq *irqp;
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -0800999 int i, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 irqp = &res->data.extended_irq;
1002
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -08001003 for (i = 0; i < irqp->interrupt_count; i++) {
Chen Gang2cf4e522012-11-23 17:46:43 +08001004 if (hdp->hd_nirqs >= HPET_MAX_TIMERS)
1005 break;
1006
Yinghai Lua2f809b2009-04-27 18:01:20 -07001007 irq = acpi_register_gsi(NULL, irqp->interrupts[i],
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -08001008 irqp->triggering, irqp->polarity);
1009 if (irq < 0)
1010 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Bjorn Helgaasbe5efff2006-02-14 13:53:02 -08001012 hdp->hd_irq[hdp->hd_nirqs] = irq;
1013 hdp->hd_nirqs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
1016
1017 return AE_OK;
1018}
1019
1020static int hpet_acpi_add(struct acpi_device *device)
1021{
1022 acpi_status result;
1023 struct hpet_data data;
1024
1025 memset(&data, 0, sizeof(data));
1026
1027 result =
1028 acpi_walk_resources(device->handle, METHOD_NAME__CRS,
1029 hpet_resources, &data);
1030
1031 if (ACPI_FAILURE(result))
1032 return -ENODEV;
1033
1034 if (!data.hd_address || !data.hd_nirqs) {
Jiri Slabya56d5312010-10-26 14:22:11 -07001035 if (data.hd_address)
1036 iounmap(data.hd_address);
Harvey Harrisonbf9d8922008-04-30 00:55:10 -07001037 printk("%s: no address or irqs in _CRS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -ENODEV;
1039 }
1040
1041 return hpet_alloc(&data);
1042}
1043
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001044static int hpet_acpi_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Tony Luck0aa366f2007-07-20 11:22:30 -07001046 /* XXX need to unregister clocksource, dealloc mem, etc */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return -EINVAL;
1048}
1049
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001050static const struct acpi_device_id hpet_device_ids[] = {
1051 {"PNP0103", 0},
1052 {"", 0},
1053};
1054MODULE_DEVICE_TABLE(acpi, hpet_device_ids);
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056static struct acpi_driver hpet_acpi_driver = {
1057 .name = "hpet",
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001058 .ids = hpet_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 .ops = {
1060 .add = hpet_acpi_add,
1061 .remove = hpet_acpi_remove,
1062 },
1063};
1064
1065static struct miscdevice hpet_misc = { HPET_MINOR, "hpet", &hpet_fops };
1066
1067static int __init hpet_init(void)
1068{
1069 int result;
1070
1071 result = misc_register(&hpet_misc);
1072 if (result < 0)
1073 return -ENODEV;
1074
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08001075 sysctl_header = register_sysctl_table(dev_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 result = acpi_bus_register_driver(&hpet_acpi_driver);
1078 if (result < 0) {
1079 if (sysctl_header)
1080 unregister_sysctl_table(sysctl_header);
1081 misc_deregister(&hpet_misc);
1082 return result;
1083 }
1084
1085 return 0;
1086}
1087
1088static void __exit hpet_exit(void)
1089{
1090 acpi_bus_unregister_driver(&hpet_acpi_driver);
1091
1092 if (sysctl_header)
1093 unregister_sysctl_table(sysctl_header);
1094 misc_deregister(&hpet_misc);
1095
1096 return;
1097}
1098
1099module_init(hpet_init);
1100module_exit(hpet_exit);
1101MODULE_AUTHOR("Bob Picco <Robert.Picco@hp.com>");
1102MODULE_LICENSE("GPL");