IA32 emulation: Fix build problem for modular ia32 a.out support
[linux-2.6-block.git] / arch / x86 / kernel / hpet.c
CommitLineData
5d0cf410 1#include <linux/clocksource.h>
e9e2cdb4 2#include <linux/clockchips.h>
4588c1f0 3#include <linux/interrupt.h>
69c60c88 4#include <linux/export.h>
28769149 5#include <linux/delay.h>
5d0cf410 6#include <linux/errno.h>
334955ef 7#include <linux/i8253.h>
5a0e3ad6 8#include <linux/slab.h>
5d0cf410 9#include <linux/hpet.h>
10#include <linux/init.h>
58ac1e76 11#include <linux/cpu.h>
4588c1f0
IM
12#include <linux/pm.h>
13#include <linux/io.h>
5d0cf410 14
28769149 15#include <asm/fixmap.h>
4588c1f0 16#include <asm/hpet.h>
16f871bc 17#include <asm/time.h>
5d0cf410 18
4588c1f0 19#define HPET_MASK CLOCKSOURCE_MASK(32)
5d0cf410 20
b10db7f0
PM
21/* FSEC = 10^-15
22 NSEC = 10^-9 */
4588c1f0 23#define FSEC_PER_NSEC 1000000L
5d0cf410 24
26afe5f2 25#define HPET_DEV_USED_BIT 2
26#define HPET_DEV_USED (1 << HPET_DEV_USED_BIT)
27#define HPET_DEV_VALID 0x8
28#define HPET_DEV_FSB_CAP 0x1000
29#define HPET_DEV_PERI_CAP 0x2000
30
f1c18071
TG
31#define HPET_MIN_CYCLES 128
32#define HPET_MIN_PROG_DELTA (HPET_MIN_CYCLES + (HPET_MIN_CYCLES >> 1))
33
e9e2cdb4
TG
34/*
35 * HPET address is set in acpi/boot.c, when an ACPI entry exists
36 */
4588c1f0 37unsigned long hpet_address;
c8bc6f3c 38u8 hpet_blockid; /* OS timer block num */
73472a46
PV
39u8 hpet_msi_disable;
40
e951e4af 41#ifdef CONFIG_PCI_MSI
3b71e9e3 42static unsigned long hpet_num_timers;
e951e4af 43#endif
4588c1f0 44static void __iomem *hpet_virt_address;
e9e2cdb4 45
58ac1e76 46struct hpet_dev {
4588c1f0
IM
47 struct clock_event_device evt;
48 unsigned int num;
49 int cpu;
50 unsigned int irq;
51 unsigned int flags;
52 char name[10];
58ac1e76 53};
54
3f7787b3
FW
55inline struct hpet_dev *EVT_TO_HPET_DEV(struct clock_event_device *evtdev)
56{
57 return container_of(evtdev, struct hpet_dev, evt);
58}
59
5946fa3d 60inline unsigned int hpet_readl(unsigned int a)
e9e2cdb4
TG
61{
62 return readl(hpet_virt_address + a);
63}
64
5946fa3d 65static inline void hpet_writel(unsigned int d, unsigned int a)
e9e2cdb4
TG
66{
67 writel(d, hpet_virt_address + a);
68}
69
28769149 70#ifdef CONFIG_X86_64
28769149 71#include <asm/pgtable.h>
2387ce57 72#endif
28769149 73
06a24dec
TG
74static inline void hpet_set_mapping(void)
75{
76 hpet_virt_address = ioremap_nocache(hpet_address, HPET_MMAP_SIZE);
2387ce57 77#ifdef CONFIG_X86_64
d319bb79 78 __set_fixmap(VSYSCALL_HPET, hpet_address, PAGE_KERNEL_VVAR_NOCACHE);
2387ce57 79#endif
06a24dec
TG
80}
81
82static inline void hpet_clear_mapping(void)
83{
84 iounmap(hpet_virt_address);
85 hpet_virt_address = NULL;
86}
87
e9e2cdb4
TG
88/*
89 * HPET command line enable / disable
90 */
91static int boot_hpet_disable;
b17530bd 92int hpet_force_user;
b98103a5 93static int hpet_verbose;
e9e2cdb4 94
4588c1f0 95static int __init hpet_setup(char *str)
e9e2cdb4
TG
96{
97 if (str) {
98 if (!strncmp("disable", str, 7))
99 boot_hpet_disable = 1;
b17530bd
TG
100 if (!strncmp("force", str, 5))
101 hpet_force_user = 1;
b98103a5
AH
102 if (!strncmp("verbose", str, 7))
103 hpet_verbose = 1;
e9e2cdb4
TG
104 }
105 return 1;
106}
107__setup("hpet=", hpet_setup);
108
28769149
TG
109static int __init disable_hpet(char *str)
110{
111 boot_hpet_disable = 1;
112 return 1;
113}
114__setup("nohpet", disable_hpet);
115
e9e2cdb4
TG
116static inline int is_hpet_capable(void)
117{
4588c1f0 118 return !boot_hpet_disable && hpet_address;
e9e2cdb4
TG
119}
120
121/*
122 * HPET timer interrupt enable / disable
123 */
124static int hpet_legacy_int_enabled;
125
126/**
127 * is_hpet_enabled - check whether the hpet timer interrupt is enabled
128 */
129int is_hpet_enabled(void)
130{
131 return is_hpet_capable() && hpet_legacy_int_enabled;
132}
1bdbdaac 133EXPORT_SYMBOL_GPL(is_hpet_enabled);
e9e2cdb4 134
b98103a5
AH
135static void _hpet_print_config(const char *function, int line)
136{
137 u32 i, timers, l, h;
138 printk(KERN_INFO "hpet: %s(%d):\n", function, line);
139 l = hpet_readl(HPET_ID);
140 h = hpet_readl(HPET_PERIOD);
141 timers = ((l & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
142 printk(KERN_INFO "hpet: ID: 0x%x, PERIOD: 0x%x\n", l, h);
143 l = hpet_readl(HPET_CFG);
144 h = hpet_readl(HPET_STATUS);
145 printk(KERN_INFO "hpet: CFG: 0x%x, STATUS: 0x%x\n", l, h);
146 l = hpet_readl(HPET_COUNTER);
147 h = hpet_readl(HPET_COUNTER+4);
148 printk(KERN_INFO "hpet: COUNTER_l: 0x%x, COUNTER_h: 0x%x\n", l, h);
149
150 for (i = 0; i < timers; i++) {
151 l = hpet_readl(HPET_Tn_CFG(i));
152 h = hpet_readl(HPET_Tn_CFG(i)+4);
153 printk(KERN_INFO "hpet: T%d: CFG_l: 0x%x, CFG_h: 0x%x\n",
154 i, l, h);
155 l = hpet_readl(HPET_Tn_CMP(i));
156 h = hpet_readl(HPET_Tn_CMP(i)+4);
157 printk(KERN_INFO "hpet: T%d: CMP_l: 0x%x, CMP_h: 0x%x\n",
158 i, l, h);
159 l = hpet_readl(HPET_Tn_ROUTE(i));
160 h = hpet_readl(HPET_Tn_ROUTE(i)+4);
161 printk(KERN_INFO "hpet: T%d ROUTE_l: 0x%x, ROUTE_h: 0x%x\n",
162 i, l, h);
163 }
164}
165
166#define hpet_print_config() \
167do { \
168 if (hpet_verbose) \
169 _hpet_print_config(__FUNCTION__, __LINE__); \
170} while (0)
171
e9e2cdb4
TG
172/*
173 * When the hpet driver (/dev/hpet) is enabled, we need to reserve
174 * timer 0 and timer 1 in case of RTC emulation.
175 */
176#ifdef CONFIG_HPET
f0ed4e69 177
5f79f2f2 178static void hpet_reserve_msi_timers(struct hpet_data *hd);
f0ed4e69 179
5946fa3d 180static void hpet_reserve_platform_timers(unsigned int id)
e9e2cdb4
TG
181{
182 struct hpet __iomem *hpet = hpet_virt_address;
37a47db8
BR
183 struct hpet_timer __iomem *timer = &hpet->hpet_timers[2];
184 unsigned int nrtimers, i;
e9e2cdb4
TG
185 struct hpet_data hd;
186
187 nrtimers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
188
4588c1f0
IM
189 memset(&hd, 0, sizeof(hd));
190 hd.hd_phys_address = hpet_address;
191 hd.hd_address = hpet;
192 hd.hd_nirqs = nrtimers;
e9e2cdb4
TG
193 hpet_reserve_timer(&hd, 0);
194
195#ifdef CONFIG_HPET_EMULATE_RTC
196 hpet_reserve_timer(&hd, 1);
197#endif
5761d64b 198
64a76f66
DB
199 /*
200 * NOTE that hd_irq[] reflects IOAPIC input pins (LEGACY_8254
201 * is wrong for i8259!) not the output IRQ. Many BIOS writers
202 * don't bother configuring *any* comparator interrupts.
203 */
e9e2cdb4
TG
204 hd.hd_irq[0] = HPET_LEGACY_8254;
205 hd.hd_irq[1] = HPET_LEGACY_RTC;
206
fc3fbc45 207 for (i = 2; i < nrtimers; timer++, i++) {
4588c1f0
IM
208 hd.hd_irq[i] = (readl(&timer->hpet_config) &
209 Tn_INT_ROUTE_CNF_MASK) >> Tn_INT_ROUTE_CNF_SHIFT;
fc3fbc45 210 }
5761d64b 211
f0ed4e69 212 hpet_reserve_msi_timers(&hd);
26afe5f2 213
e9e2cdb4 214 hpet_alloc(&hd);
5761d64b 215
e9e2cdb4
TG
216}
217#else
5946fa3d 218static void hpet_reserve_platform_timers(unsigned int id) { }
e9e2cdb4
TG
219#endif
220
221/*
222 * Common hpet info
223 */
ab0e08f1 224static unsigned long hpet_freq;
e9e2cdb4 225
610bf2f1 226static void hpet_legacy_set_mode(enum clock_event_mode mode,
e9e2cdb4 227 struct clock_event_device *evt);
610bf2f1 228static int hpet_legacy_next_event(unsigned long delta,
e9e2cdb4
TG
229 struct clock_event_device *evt);
230
231/*
232 * The hpet clock event device
233 */
234static struct clock_event_device hpet_clockevent = {
235 .name = "hpet",
236 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
610bf2f1
VP
237 .set_mode = hpet_legacy_set_mode,
238 .set_next_event = hpet_legacy_next_event,
e9e2cdb4 239 .irq = 0,
59c69f2a 240 .rating = 50,
e9e2cdb4
TG
241};
242
8d6f0c82 243static void hpet_stop_counter(void)
e9e2cdb4
TG
244{
245 unsigned long cfg = hpet_readl(HPET_CFG);
e9e2cdb4
TG
246 cfg &= ~HPET_CFG_ENABLE;
247 hpet_writel(cfg, HPET_CFG);
7a6f9cbb
AH
248}
249
250static void hpet_reset_counter(void)
251{
e9e2cdb4
TG
252 hpet_writel(0, HPET_COUNTER);
253 hpet_writel(0, HPET_COUNTER + 4);
8d6f0c82
AH
254}
255
256static void hpet_start_counter(void)
257{
5946fa3d 258 unsigned int cfg = hpet_readl(HPET_CFG);
e9e2cdb4
TG
259 cfg |= HPET_CFG_ENABLE;
260 hpet_writel(cfg, HPET_CFG);
261}
262
8d6f0c82
AH
263static void hpet_restart_counter(void)
264{
265 hpet_stop_counter();
7a6f9cbb 266 hpet_reset_counter();
8d6f0c82
AH
267 hpet_start_counter();
268}
269
59c69f2a
VP
270static void hpet_resume_device(void)
271{
bfe0c1cc 272 force_hpet_resume();
59c69f2a
VP
273}
274
17622339 275static void hpet_resume_counter(struct clocksource *cs)
59c69f2a
VP
276{
277 hpet_resume_device();
8d6f0c82 278 hpet_restart_counter();
59c69f2a
VP
279}
280
610bf2f1 281static void hpet_enable_legacy_int(void)
e9e2cdb4 282{
5946fa3d 283 unsigned int cfg = hpet_readl(HPET_CFG);
e9e2cdb4
TG
284
285 cfg |= HPET_CFG_LEGACY;
286 hpet_writel(cfg, HPET_CFG);
287 hpet_legacy_int_enabled = 1;
288}
289
610bf2f1
VP
290static void hpet_legacy_clockevent_register(void)
291{
610bf2f1
VP
292 /* Start HPET legacy interrupts */
293 hpet_enable_legacy_int();
294
610bf2f1
VP
295 /*
296 * Start hpet with the boot cpu mask and make it
297 * global after the IO_APIC has been initialized.
298 */
320ab2b0 299 hpet_clockevent.cpumask = cpumask_of(smp_processor_id());
ab0e08f1
TG
300 clockevents_config_and_register(&hpet_clockevent, hpet_freq,
301 HPET_MIN_PROG_DELTA, 0x7FFFFFFF);
610bf2f1
VP
302 global_clock_event = &hpet_clockevent;
303 printk(KERN_DEBUG "hpet clockevent registered\n");
304}
305
26afe5f2 306static int hpet_setup_msi_irq(unsigned int irq);
307
b40d575b 308static void hpet_set_mode(enum clock_event_mode mode,
309 struct clock_event_device *evt, int timer)
e9e2cdb4 310{
5946fa3d 311 unsigned int cfg, cmp, now;
e9e2cdb4
TG
312 uint64_t delta;
313
4588c1f0 314 switch (mode) {
e9e2cdb4 315 case CLOCK_EVT_MODE_PERIODIC:
c23e253e 316 hpet_stop_counter();
b40d575b 317 delta = ((uint64_t)(NSEC_PER_SEC/HZ)) * evt->mult;
318 delta >>= evt->shift;
7a6f9cbb 319 now = hpet_readl(HPET_COUNTER);
5946fa3d 320 cmp = now + (unsigned int) delta;
b40d575b 321 cfg = hpet_readl(HPET_Tn_CFG(timer));
b13e2464 322 /* Make sure we use edge triggered interrupts */
323 cfg &= ~HPET_TN_LEVEL;
e9e2cdb4
TG
324 cfg |= HPET_TN_ENABLE | HPET_TN_PERIODIC |
325 HPET_TN_SETVAL | HPET_TN_32BIT;
b40d575b 326 hpet_writel(cfg, HPET_Tn_CFG(timer));
7a6f9cbb
AH
327 hpet_writel(cmp, HPET_Tn_CMP(timer));
328 udelay(1);
329 /*
330 * HPET on AMD 81xx needs a second write (with HPET_TN_SETVAL
331 * cleared) to T0_CMP to set the period. The HPET_TN_SETVAL
332 * bit is automatically cleared after the first write.
333 * (See AMD-8111 HyperTransport I/O Hub Data Sheet,
334 * Publication # 24674)
335 */
5946fa3d 336 hpet_writel((unsigned int) delta, HPET_Tn_CMP(timer));
c23e253e 337 hpet_start_counter();
b98103a5 338 hpet_print_config();
e9e2cdb4
TG
339 break;
340
341 case CLOCK_EVT_MODE_ONESHOT:
b40d575b 342 cfg = hpet_readl(HPET_Tn_CFG(timer));
e9e2cdb4
TG
343 cfg &= ~HPET_TN_PERIODIC;
344 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
b40d575b 345 hpet_writel(cfg, HPET_Tn_CFG(timer));
e9e2cdb4
TG
346 break;
347
348 case CLOCK_EVT_MODE_UNUSED:
349 case CLOCK_EVT_MODE_SHUTDOWN:
b40d575b 350 cfg = hpet_readl(HPET_Tn_CFG(timer));
e9e2cdb4 351 cfg &= ~HPET_TN_ENABLE;
b40d575b 352 hpet_writel(cfg, HPET_Tn_CFG(timer));
e9e2cdb4 353 break;
18de5bc4
TG
354
355 case CLOCK_EVT_MODE_RESUME:
26afe5f2 356 if (timer == 0) {
357 hpet_enable_legacy_int();
358 } else {
359 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
360 hpet_setup_msi_irq(hdev->irq);
361 disable_irq(hdev->irq);
0de26520 362 irq_set_affinity(hdev->irq, cpumask_of(hdev->cpu));
26afe5f2 363 enable_irq(hdev->irq);
364 }
b98103a5 365 hpet_print_config();
18de5bc4 366 break;
e9e2cdb4
TG
367 }
368}
369
b40d575b 370static int hpet_next_event(unsigned long delta,
371 struct clock_event_device *evt, int timer)
e9e2cdb4 372{
f7676254 373 u32 cnt;
995bd3bb 374 s32 res;
e9e2cdb4
TG
375
376 cnt = hpet_readl(HPET_COUNTER);
f7676254 377 cnt += (u32) delta;
b40d575b 378 hpet_writel(cnt, HPET_Tn_CMP(timer));
e9e2cdb4 379
72d43d9b 380 /*
995bd3bb
TG
381 * HPETs are a complete disaster. The compare register is
382 * based on a equal comparison and neither provides a less
383 * than or equal functionality (which would require to take
384 * the wraparound into account) nor a simple count down event
385 * mode. Further the write to the comparator register is
386 * delayed internally up to two HPET clock cycles in certain
f1c18071
TG
387 * chipsets (ATI, ICH9,10). Some newer AMD chipsets have even
388 * longer delays. We worked around that by reading back the
389 * compare register, but that required another workaround for
390 * ICH9,10 chips where the first readout after write can
391 * return the old stale value. We already had a minimum
392 * programming delta of 5us enforced, but a NMI or SMI hitting
995bd3bb
TG
393 * between the counter readout and the comparator write can
394 * move us behind that point easily. Now instead of reading
395 * the compare register back several times, we make the ETIME
396 * decision based on the following: Return ETIME if the
f1c18071 397 * counter value after the write is less than HPET_MIN_CYCLES
995bd3bb 398 * away from the event or if the counter is already ahead of
f1c18071
TG
399 * the event. The minimum programming delta for the generic
400 * clockevents code is set to 1.5 * HPET_MIN_CYCLES.
72d43d9b 401 */
995bd3bb 402 res = (s32)(cnt - hpet_readl(HPET_COUNTER));
72d43d9b 403
f1c18071 404 return res < HPET_MIN_CYCLES ? -ETIME : 0;
e9e2cdb4
TG
405}
406
b40d575b 407static void hpet_legacy_set_mode(enum clock_event_mode mode,
408 struct clock_event_device *evt)
409{
410 hpet_set_mode(mode, evt, 0);
411}
412
413static int hpet_legacy_next_event(unsigned long delta,
414 struct clock_event_device *evt)
415{
416 return hpet_next_event(delta, evt, 0);
417}
418
58ac1e76 419/*
420 * HPET MSI Support
421 */
26afe5f2 422#ifdef CONFIG_PCI_MSI
5f79f2f2
VP
423
424static DEFINE_PER_CPU(struct hpet_dev *, cpu_hpet_dev);
425static struct hpet_dev *hpet_devs;
426
d0fbca8f 427void hpet_msi_unmask(struct irq_data *data)
58ac1e76 428{
d0fbca8f 429 struct hpet_dev *hdev = data->handler_data;
5946fa3d 430 unsigned int cfg;
58ac1e76 431
432 /* unmask it */
433 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
434 cfg |= HPET_TN_FSB;
435 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
436}
437
d0fbca8f 438void hpet_msi_mask(struct irq_data *data)
58ac1e76 439{
d0fbca8f 440 struct hpet_dev *hdev = data->handler_data;
5946fa3d 441 unsigned int cfg;
58ac1e76 442
443 /* mask it */
444 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
445 cfg &= ~HPET_TN_FSB;
446 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
447}
448
d0fbca8f 449void hpet_msi_write(struct hpet_dev *hdev, struct msi_msg *msg)
58ac1e76 450{
58ac1e76 451 hpet_writel(msg->data, HPET_Tn_ROUTE(hdev->num));
452 hpet_writel(msg->address_lo, HPET_Tn_ROUTE(hdev->num) + 4);
453}
454
d0fbca8f 455void hpet_msi_read(struct hpet_dev *hdev, struct msi_msg *msg)
58ac1e76 456{
58ac1e76 457 msg->data = hpet_readl(HPET_Tn_ROUTE(hdev->num));
458 msg->address_lo = hpet_readl(HPET_Tn_ROUTE(hdev->num) + 4);
459 msg->address_hi = 0;
460}
461
26afe5f2 462static void hpet_msi_set_mode(enum clock_event_mode mode,
463 struct clock_event_device *evt)
464{
465 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
466 hpet_set_mode(mode, evt, hdev->num);
467}
468
469static int hpet_msi_next_event(unsigned long delta,
470 struct clock_event_device *evt)
471{
472 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
473 return hpet_next_event(delta, evt, hdev->num);
474}
475
476static int hpet_setup_msi_irq(unsigned int irq)
477{
c8bc6f3c 478 if (arch_setup_hpet_msi(irq, hpet_blockid)) {
26afe5f2 479 destroy_irq(irq);
480 return -EINVAL;
481 }
482 return 0;
483}
484
485static int hpet_assign_irq(struct hpet_dev *dev)
486{
487 unsigned int irq;
488
02198962 489 irq = create_irq_nr(0, -1);
26afe5f2 490 if (!irq)
491 return -EINVAL;
492
2c778651 493 irq_set_handler_data(irq, dev);
26afe5f2 494
495 if (hpet_setup_msi_irq(irq))
496 return -EINVAL;
497
498 dev->irq = irq;
499 return 0;
500}
501
502static irqreturn_t hpet_interrupt_handler(int irq, void *data)
503{
504 struct hpet_dev *dev = (struct hpet_dev *)data;
505 struct clock_event_device *hevt = &dev->evt;
506
507 if (!hevt->event_handler) {
508 printk(KERN_INFO "Spurious HPET timer interrupt on HPET timer %d\n",
509 dev->num);
510 return IRQ_HANDLED;
511 }
512
513 hevt->event_handler(hevt);
514 return IRQ_HANDLED;
515}
516
517static int hpet_setup_irq(struct hpet_dev *dev)
518{
519
520 if (request_irq(dev->irq, hpet_interrupt_handler,
507fa3a3
TG
521 IRQF_TIMER | IRQF_DISABLED | IRQF_NOBALANCING,
522 dev->name, dev))
26afe5f2 523 return -1;
524
525 disable_irq(dev->irq);
0de26520 526 irq_set_affinity(dev->irq, cpumask_of(dev->cpu));
26afe5f2 527 enable_irq(dev->irq);
528
c81bba49
YL
529 printk(KERN_DEBUG "hpet: %s irq %d for MSI\n",
530 dev->name, dev->irq);
531
26afe5f2 532 return 0;
533}
534
535/* This should be called in specific @cpu */
536static void init_one_hpet_msi_clockevent(struct hpet_dev *hdev, int cpu)
537{
538 struct clock_event_device *evt = &hdev->evt;
26afe5f2 539
540 WARN_ON(cpu != smp_processor_id());
541 if (!(hdev->flags & HPET_DEV_VALID))
542 return;
543
544 if (hpet_setup_msi_irq(hdev->irq))
545 return;
546
547 hdev->cpu = cpu;
548 per_cpu(cpu_hpet_dev, cpu) = hdev;
549 evt->name = hdev->name;
550 hpet_setup_irq(hdev);
551 evt->irq = hdev->irq;
552
553 evt->rating = 110;
554 evt->features = CLOCK_EVT_FEAT_ONESHOT;
555 if (hdev->flags & HPET_DEV_PERI_CAP)
556 evt->features |= CLOCK_EVT_FEAT_PERIODIC;
557
558 evt->set_mode = hpet_msi_set_mode;
559 evt->set_next_event = hpet_msi_next_event;
320ab2b0 560 evt->cpumask = cpumask_of(hdev->cpu);
ab0e08f1
TG
561
562 clockevents_config_and_register(evt, hpet_freq, HPET_MIN_PROG_DELTA,
563 0x7FFFFFFF);
26afe5f2 564}
565
566#ifdef CONFIG_HPET
567/* Reserve at least one timer for userspace (/dev/hpet) */
568#define RESERVE_TIMERS 1
569#else
570#define RESERVE_TIMERS 0
571#endif
5f79f2f2
VP
572
573static void hpet_msi_capability_lookup(unsigned int start_timer)
26afe5f2 574{
575 unsigned int id;
576 unsigned int num_timers;
577 unsigned int num_timers_used = 0;
578 int i;
579
73472a46
PV
580 if (hpet_msi_disable)
581 return;
582
39fe05e5
SL
583 if (boot_cpu_has(X86_FEATURE_ARAT))
584 return;
26afe5f2 585 id = hpet_readl(HPET_ID);
586
587 num_timers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
588 num_timers++; /* Value read out starts from 0 */
b98103a5 589 hpet_print_config();
26afe5f2 590
591 hpet_devs = kzalloc(sizeof(struct hpet_dev) * num_timers, GFP_KERNEL);
592 if (!hpet_devs)
593 return;
594
595 hpet_num_timers = num_timers;
596
597 for (i = start_timer; i < num_timers - RESERVE_TIMERS; i++) {
598 struct hpet_dev *hdev = &hpet_devs[num_timers_used];
5946fa3d 599 unsigned int cfg = hpet_readl(HPET_Tn_CFG(i));
26afe5f2 600
601 /* Only consider HPET timer with MSI support */
602 if (!(cfg & HPET_TN_FSB_CAP))
603 continue;
604
605 hdev->flags = 0;
606 if (cfg & HPET_TN_PERIODIC_CAP)
607 hdev->flags |= HPET_DEV_PERI_CAP;
608 hdev->num = i;
609
610 sprintf(hdev->name, "hpet%d", i);
611 if (hpet_assign_irq(hdev))
612 continue;
613
614 hdev->flags |= HPET_DEV_FSB_CAP;
615 hdev->flags |= HPET_DEV_VALID;
616 num_timers_used++;
617 if (num_timers_used == num_possible_cpus())
618 break;
619 }
620
621 printk(KERN_INFO "HPET: %d timers in total, %d timers will be used for per-cpu timer\n",
622 num_timers, num_timers_used);
623}
624
5f79f2f2
VP
625#ifdef CONFIG_HPET
626static void hpet_reserve_msi_timers(struct hpet_data *hd)
627{
628 int i;
629
630 if (!hpet_devs)
631 return;
632
633 for (i = 0; i < hpet_num_timers; i++) {
634 struct hpet_dev *hdev = &hpet_devs[i];
635
636 if (!(hdev->flags & HPET_DEV_VALID))
637 continue;
638
639 hd->hd_irq[hdev->num] = hdev->irq;
640 hpet_reserve_timer(hd, hdev->num);
641 }
642}
643#endif
644
26afe5f2 645static struct hpet_dev *hpet_get_unused_timer(void)
646{
647 int i;
648
649 if (!hpet_devs)
650 return NULL;
651
652 for (i = 0; i < hpet_num_timers; i++) {
653 struct hpet_dev *hdev = &hpet_devs[i];
654
655 if (!(hdev->flags & HPET_DEV_VALID))
656 continue;
657 if (test_and_set_bit(HPET_DEV_USED_BIT,
658 (unsigned long *)&hdev->flags))
659 continue;
660 return hdev;
661 }
662 return NULL;
663}
664
665struct hpet_work_struct {
666 struct delayed_work work;
667 struct completion complete;
668};
669
670static void hpet_work(struct work_struct *w)
671{
672 struct hpet_dev *hdev;
673 int cpu = smp_processor_id();
674 struct hpet_work_struct *hpet_work;
675
676 hpet_work = container_of(w, struct hpet_work_struct, work.work);
677
678 hdev = hpet_get_unused_timer();
679 if (hdev)
680 init_one_hpet_msi_clockevent(hdev, cpu);
681
682 complete(&hpet_work->complete);
683}
684
685static int hpet_cpuhp_notify(struct notifier_block *n,
686 unsigned long action, void *hcpu)
687{
688 unsigned long cpu = (unsigned long)hcpu;
689 struct hpet_work_struct work;
690 struct hpet_dev *hdev = per_cpu(cpu_hpet_dev, cpu);
691
692 switch (action & 0xf) {
693 case CPU_ONLINE:
ca1cab37 694 INIT_DELAYED_WORK_ONSTACK(&work.work, hpet_work);
26afe5f2 695 init_completion(&work.complete);
696 /* FIXME: add schedule_work_on() */
697 schedule_delayed_work_on(cpu, &work.work, 0);
698 wait_for_completion(&work.complete);
336f6c32 699 destroy_timer_on_stack(&work.work.timer);
26afe5f2 700 break;
701 case CPU_DEAD:
702 if (hdev) {
703 free_irq(hdev->irq, hdev);
704 hdev->flags &= ~HPET_DEV_USED;
705 per_cpu(cpu_hpet_dev, cpu) = NULL;
706 }
707 break;
708 }
709 return NOTIFY_OK;
710}
711#else
712
ba374c9b
SN
713static int hpet_setup_msi_irq(unsigned int irq)
714{
715 return 0;
716}
5f79f2f2
VP
717static void hpet_msi_capability_lookup(unsigned int start_timer)
718{
719 return;
720}
721
722#ifdef CONFIG_HPET
723static void hpet_reserve_msi_timers(struct hpet_data *hd)
26afe5f2 724{
725 return;
726}
5f79f2f2 727#endif
26afe5f2 728
729static int hpet_cpuhp_notify(struct notifier_block *n,
730 unsigned long action, void *hcpu)
731{
732 return NOTIFY_OK;
733}
734
735#endif
736
6bb74df4 737/*
738 * Clock source related code
739 */
8e19608e 740static cycle_t read_hpet(struct clocksource *cs)
6bb74df4 741{
742 return (cycle_t)hpet_readl(HPET_COUNTER);
743}
744
745static struct clocksource clocksource_hpet = {
746 .name = "hpet",
747 .rating = 250,
748 .read = read_hpet,
749 .mask = HPET_MASK,
6bb74df4 750 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
8d6f0c82 751 .resume = hpet_resume_counter,
28769149 752#ifdef CONFIG_X86_64
98d0ac38 753 .archdata = { .vclock_mode = VCLOCK_HPET },
28769149 754#endif
6bb74df4 755};
756
610bf2f1 757static int hpet_clocksource_register(void)
e9e2cdb4 758{
6fd592da 759 u64 start, now;
075bcd1f 760 cycle_t t1;
e9e2cdb4 761
e9e2cdb4 762 /* Start the counter */
8d6f0c82 763 hpet_restart_counter();
e9e2cdb4 764
075bcd1f 765 /* Verify whether hpet counter works */
8e19608e 766 t1 = hpet_readl(HPET_COUNTER);
075bcd1f
TG
767 rdtscll(start);
768
769 /*
770 * We don't know the TSC frequency yet, but waiting for
771 * 200000 TSC cycles is safe:
772 * 4 GHz == 50us
773 * 1 GHz == 200us
774 */
775 do {
776 rep_nop();
777 rdtscll(now);
778 } while ((now - start) < 200000UL);
779
8e19608e 780 if (t1 == hpet_readl(HPET_COUNTER)) {
075bcd1f
TG
781 printk(KERN_WARNING
782 "HPET counter not counting. HPET disabled\n");
610bf2f1 783 return -ENODEV;
075bcd1f
TG
784 }
785
f12a15be 786 clocksource_register_hz(&clocksource_hpet, (u32)hpet_freq);
610bf2f1
VP
787 return 0;
788}
789
b02a7f22
PM
790/**
791 * hpet_enable - Try to setup the HPET timer. Returns 1 on success.
610bf2f1
VP
792 */
793int __init hpet_enable(void)
794{
ab0e08f1 795 unsigned long hpet_period;
5946fa3d 796 unsigned int id;
ab0e08f1 797 u64 freq;
a6825f1c 798 int i;
610bf2f1
VP
799
800 if (!is_hpet_capable())
801 return 0;
802
803 hpet_set_mapping();
804
805 /*
806 * Read the period and check for a sane value:
807 */
808 hpet_period = hpet_readl(HPET_PERIOD);
a6825f1c
TG
809
810 /*
811 * AMD SB700 based systems with spread spectrum enabled use a
812 * SMM based HPET emulation to provide proper frequency
813 * setting. The SMM code is initialized with the first HPET
814 * register access and takes some time to complete. During
815 * this time the config register reads 0xffffffff. We check
816 * for max. 1000 loops whether the config register reads a non
817 * 0xffffffff value to make sure that HPET is up and running
818 * before we go further. A counting loop is safe, as the HPET
819 * access takes thousands of CPU cycles. On non SB700 based
820 * machines this check is only done once and has no side
821 * effects.
822 */
823 for (i = 0; hpet_readl(HPET_CFG) == 0xFFFFFFFF; i++) {
824 if (i == 1000) {
825 printk(KERN_WARNING
826 "HPET config register value = 0xFFFFFFFF. "
827 "Disabling HPET\n");
828 goto out_nohpet;
829 }
830 }
831
610bf2f1
VP
832 if (hpet_period < HPET_MIN_PERIOD || hpet_period > HPET_MAX_PERIOD)
833 goto out_nohpet;
834
ab0e08f1
TG
835 /*
836 * The period is a femto seconds value. Convert it to a
837 * frequency.
838 */
839 freq = FSEC_PER_SEC;
840 do_div(freq, hpet_period);
841 hpet_freq = freq;
842
610bf2f1
VP
843 /*
844 * Read the HPET ID register to retrieve the IRQ routing
845 * information and the number of channels
846 */
847 id = hpet_readl(HPET_ID);
b98103a5 848 hpet_print_config();
610bf2f1
VP
849
850#ifdef CONFIG_HPET_EMULATE_RTC
851 /*
852 * The legacy routing mode needs at least two channels, tick timer
853 * and the rtc emulation channel.
854 */
855 if (!(id & HPET_ID_NUMBER))
856 goto out_nohpet;
857#endif
858
859 if (hpet_clocksource_register())
860 goto out_nohpet;
861
e9e2cdb4 862 if (id & HPET_ID_LEGSUP) {
610bf2f1 863 hpet_legacy_clockevent_register();
e9e2cdb4
TG
864 return 1;
865 }
866 return 0;
5d0cf410 867
e9e2cdb4 868out_nohpet:
06a24dec 869 hpet_clear_mapping();
bacbe999 870 hpet_address = 0;
e9e2cdb4
TG
871 return 0;
872}
873
28769149
TG
874/*
875 * Needs to be late, as the reserve_timer code calls kalloc !
876 *
877 * Not a problem on i386 as hpet_enable is called from late_time_init,
878 * but on x86_64 it is necessary !
879 */
880static __init int hpet_late_init(void)
881{
26afe5f2 882 int cpu;
883
59c69f2a 884 if (boot_hpet_disable)
28769149
TG
885 return -ENODEV;
886
59c69f2a
VP
887 if (!hpet_address) {
888 if (!force_hpet_address)
889 return -ENODEV;
890
891 hpet_address = force_hpet_address;
892 hpet_enable();
59c69f2a
VP
893 }
894
39c04b55
JF
895 if (!hpet_virt_address)
896 return -ENODEV;
897
39fe05e5
SL
898 if (hpet_readl(HPET_ID) & HPET_ID_LEGSUP)
899 hpet_msi_capability_lookup(2);
900 else
901 hpet_msi_capability_lookup(0);
902
28769149 903 hpet_reserve_platform_timers(hpet_readl(HPET_ID));
b98103a5 904 hpet_print_config();
59c69f2a 905
73472a46
PV
906 if (hpet_msi_disable)
907 return 0;
908
39fe05e5
SL
909 if (boot_cpu_has(X86_FEATURE_ARAT))
910 return 0;
911
26afe5f2 912 for_each_online_cpu(cpu) {
913 hpet_cpuhp_notify(NULL, CPU_ONLINE, (void *)(long)cpu);
914 }
915
916 /* This notifier should be called after workqueue is ready */
917 hotcpu_notifier(hpet_cpuhp_notify, -20);
918
28769149
TG
919 return 0;
920}
921fs_initcall(hpet_late_init);
922
c86c7fbc
OH
923void hpet_disable(void)
924{
ff487808 925 if (is_hpet_capable() && hpet_virt_address) {
5946fa3d 926 unsigned int cfg = hpet_readl(HPET_CFG);
c86c7fbc
OH
927
928 if (hpet_legacy_int_enabled) {
929 cfg &= ~HPET_CFG_LEGACY;
930 hpet_legacy_int_enabled = 0;
931 }
932 cfg &= ~HPET_CFG_ENABLE;
933 hpet_writel(cfg, HPET_CFG);
934 }
935}
936
e9e2cdb4
TG
937#ifdef CONFIG_HPET_EMULATE_RTC
938
939/* HPET in LegacyReplacement Mode eats up RTC interrupt line. When, HPET
940 * is enabled, we support RTC interrupt functionality in software.
941 * RTC has 3 kinds of interrupts:
942 * 1) Update Interrupt - generate an interrupt, every sec, when RTC clock
943 * is updated
944 * 2) Alarm Interrupt - generate an interrupt at a specific time of day
945 * 3) Periodic Interrupt - generate periodic interrupt, with frequencies
946 * 2Hz-8192Hz (2Hz-64Hz for non-root user) (all freqs in powers of 2)
947 * (1) and (2) above are implemented using polling at a frequency of
948 * 64 Hz. The exact frequency is a tradeoff between accuracy and interrupt
949 * overhead. (DEFAULT_RTC_INT_FREQ)
950 * For (3), we use interrupts at 64Hz or user specified periodic
951 * frequency, whichever is higher.
952 */
953#include <linux/mc146818rtc.h>
954#include <linux/rtc.h>
1bdbdaac 955#include <asm/rtc.h>
e9e2cdb4
TG
956
957#define DEFAULT_RTC_INT_FREQ 64
958#define DEFAULT_RTC_SHIFT 6
959#define RTC_NUM_INTS 1
960
961static unsigned long hpet_rtc_flags;
7e2a31da 962static int hpet_prev_update_sec;
e9e2cdb4
TG
963static struct rtc_time hpet_alarm_time;
964static unsigned long hpet_pie_count;
ff08f76d 965static u32 hpet_t1_cmp;
5946fa3d
JB
966static u32 hpet_default_delta;
967static u32 hpet_pie_delta;
e9e2cdb4
TG
968static unsigned long hpet_pie_limit;
969
1bdbdaac
BW
970static rtc_irq_handler irq_handler;
971
ff08f76d
PE
972/*
973 * Check that the hpet counter c1 is ahead of the c2
974 */
975static inline int hpet_cnt_ahead(u32 c1, u32 c2)
976{
977 return (s32)(c2 - c1) < 0;
978}
979
1bdbdaac
BW
980/*
981 * Registers a IRQ handler.
982 */
983int hpet_register_irq_handler(rtc_irq_handler handler)
984{
985 if (!is_hpet_enabled())
986 return -ENODEV;
987 if (irq_handler)
988 return -EBUSY;
989
990 irq_handler = handler;
991
992 return 0;
993}
994EXPORT_SYMBOL_GPL(hpet_register_irq_handler);
995
996/*
997 * Deregisters the IRQ handler registered with hpet_register_irq_handler()
998 * and does cleanup.
999 */
1000void hpet_unregister_irq_handler(rtc_irq_handler handler)
1001{
1002 if (!is_hpet_enabled())
1003 return;
1004
1005 irq_handler = NULL;
1006 hpet_rtc_flags = 0;
1007}
1008EXPORT_SYMBOL_GPL(hpet_unregister_irq_handler);
1009
e9e2cdb4
TG
1010/*
1011 * Timer 1 for RTC emulation. We use one shot mode, as periodic mode
1012 * is not supported by all HPET implementations for timer 1.
1013 *
1014 * hpet_rtc_timer_init() is called when the rtc is initialized.
1015 */
1016int hpet_rtc_timer_init(void)
1017{
5946fa3d
JB
1018 unsigned int cfg, cnt, delta;
1019 unsigned long flags;
e9e2cdb4
TG
1020
1021 if (!is_hpet_enabled())
1022 return 0;
1023
1024 if (!hpet_default_delta) {
1025 uint64_t clc;
1026
1027 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1028 clc >>= hpet_clockevent.shift + DEFAULT_RTC_SHIFT;
5946fa3d 1029 hpet_default_delta = clc;
e9e2cdb4
TG
1030 }
1031
1032 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1033 delta = hpet_default_delta;
1034 else
1035 delta = hpet_pie_delta;
1036
1037 local_irq_save(flags);
1038
1039 cnt = delta + hpet_readl(HPET_COUNTER);
1040 hpet_writel(cnt, HPET_T1_CMP);
1041 hpet_t1_cmp = cnt;
1042
1043 cfg = hpet_readl(HPET_T1_CFG);
1044 cfg &= ~HPET_TN_PERIODIC;
1045 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
1046 hpet_writel(cfg, HPET_T1_CFG);
1047
1048 local_irq_restore(flags);
1049
1050 return 1;
1051}
1bdbdaac 1052EXPORT_SYMBOL_GPL(hpet_rtc_timer_init);
e9e2cdb4 1053
2ded6e6a
ML
1054static void hpet_disable_rtc_channel(void)
1055{
1056 unsigned long cfg;
1057 cfg = hpet_readl(HPET_T1_CFG);
1058 cfg &= ~HPET_TN_ENABLE;
1059 hpet_writel(cfg, HPET_T1_CFG);
1060}
1061
e9e2cdb4
TG
1062/*
1063 * The functions below are called from rtc driver.
1064 * Return 0 if HPET is not being used.
1065 * Otherwise do the necessary changes and return 1.
1066 */
1067int hpet_mask_rtc_irq_bit(unsigned long bit_mask)
1068{
1069 if (!is_hpet_enabled())
1070 return 0;
1071
1072 hpet_rtc_flags &= ~bit_mask;
2ded6e6a
ML
1073 if (unlikely(!hpet_rtc_flags))
1074 hpet_disable_rtc_channel();
1075
e9e2cdb4
TG
1076 return 1;
1077}
1bdbdaac 1078EXPORT_SYMBOL_GPL(hpet_mask_rtc_irq_bit);
e9e2cdb4
TG
1079
1080int hpet_set_rtc_irq_bit(unsigned long bit_mask)
1081{
1082 unsigned long oldbits = hpet_rtc_flags;
1083
1084 if (!is_hpet_enabled())
1085 return 0;
1086
1087 hpet_rtc_flags |= bit_mask;
1088
7e2a31da
DB
1089 if ((bit_mask & RTC_UIE) && !(oldbits & RTC_UIE))
1090 hpet_prev_update_sec = -1;
1091
e9e2cdb4
TG
1092 if (!oldbits)
1093 hpet_rtc_timer_init();
1094
1095 return 1;
1096}
1bdbdaac 1097EXPORT_SYMBOL_GPL(hpet_set_rtc_irq_bit);
e9e2cdb4
TG
1098
1099int hpet_set_alarm_time(unsigned char hrs, unsigned char min,
1100 unsigned char sec)
1101{
1102 if (!is_hpet_enabled())
1103 return 0;
1104
1105 hpet_alarm_time.tm_hour = hrs;
1106 hpet_alarm_time.tm_min = min;
1107 hpet_alarm_time.tm_sec = sec;
1108
1109 return 1;
1110}
1bdbdaac 1111EXPORT_SYMBOL_GPL(hpet_set_alarm_time);
e9e2cdb4
TG
1112
1113int hpet_set_periodic_freq(unsigned long freq)
1114{
1115 uint64_t clc;
1116
1117 if (!is_hpet_enabled())
1118 return 0;
1119
1120 if (freq <= DEFAULT_RTC_INT_FREQ)
1121 hpet_pie_limit = DEFAULT_RTC_INT_FREQ / freq;
1122 else {
1123 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1124 do_div(clc, freq);
1125 clc >>= hpet_clockevent.shift;
5946fa3d 1126 hpet_pie_delta = clc;
b4a5e8a1 1127 hpet_pie_limit = 0;
e9e2cdb4
TG
1128 }
1129 return 1;
1130}
1bdbdaac 1131EXPORT_SYMBOL_GPL(hpet_set_periodic_freq);
e9e2cdb4
TG
1132
1133int hpet_rtc_dropped_irq(void)
1134{
1135 return is_hpet_enabled();
1136}
1bdbdaac 1137EXPORT_SYMBOL_GPL(hpet_rtc_dropped_irq);
e9e2cdb4
TG
1138
1139static void hpet_rtc_timer_reinit(void)
1140{
2ded6e6a 1141 unsigned int delta;
e9e2cdb4
TG
1142 int lost_ints = -1;
1143
2ded6e6a
ML
1144 if (unlikely(!hpet_rtc_flags))
1145 hpet_disable_rtc_channel();
e9e2cdb4
TG
1146
1147 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1148 delta = hpet_default_delta;
1149 else
1150 delta = hpet_pie_delta;
1151
1152 /*
1153 * Increment the comparator value until we are ahead of the
1154 * current count.
1155 */
1156 do {
1157 hpet_t1_cmp += delta;
1158 hpet_writel(hpet_t1_cmp, HPET_T1_CMP);
1159 lost_ints++;
ff08f76d 1160 } while (!hpet_cnt_ahead(hpet_t1_cmp, hpet_readl(HPET_COUNTER)));
e9e2cdb4
TG
1161
1162 if (lost_ints) {
1163 if (hpet_rtc_flags & RTC_PIE)
1164 hpet_pie_count += lost_ints;
1165 if (printk_ratelimit())
7e2a31da 1166 printk(KERN_WARNING "hpet1: lost %d rtc interrupts\n",
e9e2cdb4
TG
1167 lost_ints);
1168 }
1169}
1170
1171irqreturn_t hpet_rtc_interrupt(int irq, void *dev_id)
1172{
1173 struct rtc_time curr_time;
1174 unsigned long rtc_int_flag = 0;
1175
1176 hpet_rtc_timer_reinit();
1bdbdaac 1177 memset(&curr_time, 0, sizeof(struct rtc_time));
e9e2cdb4
TG
1178
1179 if (hpet_rtc_flags & (RTC_UIE | RTC_AIE))
1bdbdaac 1180 get_rtc_time(&curr_time);
e9e2cdb4
TG
1181
1182 if (hpet_rtc_flags & RTC_UIE &&
1183 curr_time.tm_sec != hpet_prev_update_sec) {
7e2a31da
DB
1184 if (hpet_prev_update_sec >= 0)
1185 rtc_int_flag = RTC_UF;
e9e2cdb4
TG
1186 hpet_prev_update_sec = curr_time.tm_sec;
1187 }
1188
1189 if (hpet_rtc_flags & RTC_PIE &&
1190 ++hpet_pie_count >= hpet_pie_limit) {
1191 rtc_int_flag |= RTC_PF;
1192 hpet_pie_count = 0;
1193 }
1194
8ee291f8 1195 if (hpet_rtc_flags & RTC_AIE &&
e9e2cdb4
TG
1196 (curr_time.tm_sec == hpet_alarm_time.tm_sec) &&
1197 (curr_time.tm_min == hpet_alarm_time.tm_min) &&
1198 (curr_time.tm_hour == hpet_alarm_time.tm_hour))
1199 rtc_int_flag |= RTC_AF;
1200
1201 if (rtc_int_flag) {
1202 rtc_int_flag |= (RTC_IRQF | (RTC_NUM_INTS << 8));
1bdbdaac
BW
1203 if (irq_handler)
1204 irq_handler(rtc_int_flag, dev_id);
e9e2cdb4
TG
1205 }
1206 return IRQ_HANDLED;
1207}
1bdbdaac 1208EXPORT_SYMBOL_GPL(hpet_rtc_interrupt);
e9e2cdb4 1209#endif