blob: 52aae9a5fac95742add91bac0a5c3b73e2d09342 [file] [log] [blame]
john stultz5d0cf412006-06-26 00:25:12 -07001#include <linux/clocksource.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08002#include <linux/clockchips.h>
Ingo Molnar4588c1f2008-09-06 14:19:17 +02003#include <linux/interrupt.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -04004#include <linux/export.h>
Ingo Molnar4588c1f2008-09-06 14:19:17 +02005#include <linux/sysdev.h>
Thomas Gleixner28769142007-10-12 23:04:06 +02006#include <linux/delay.h>
john stultz5d0cf412006-06-26 00:25:12 -07007#include <linux/errno.h>
Ralf Baechle334955e2011-06-01 19:04:57 +01008#include <linux/i8253.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
john stultz5d0cf412006-06-26 00:25:12 -070010#include <linux/hpet.h>
11#include <linux/init.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070012#include <linux/cpu.h>
Ingo Molnar4588c1f2008-09-06 14:19:17 +020013#include <linux/pm.h>
14#include <linux/io.h>
john stultz5d0cf412006-06-26 00:25:12 -070015
Thomas Gleixner28769142007-10-12 23:04:06 +020016#include <asm/fixmap.h>
Ingo Molnar4588c1f2008-09-06 14:19:17 +020017#include <asm/hpet.h>
Ralf Baechle16f871b2011-06-01 19:05:06 +010018#include <asm/time.h>
john stultz5d0cf412006-06-26 00:25:12 -070019
Ingo Molnar4588c1f2008-09-06 14:19:17 +020020#define HPET_MASK CLOCKSOURCE_MASK(32)
john stultz5d0cf412006-06-26 00:25:12 -070021
Pavel Machekb10db7f2008-01-30 13:30:00 +010022/* FSEC = 10^-15
23 NSEC = 10^-9 */
Ingo Molnar4588c1f2008-09-06 14:19:17 +020024#define FSEC_PER_NSEC 1000000L
john stultz5d0cf412006-06-26 00:25:12 -070025
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -070026#define HPET_DEV_USED_BIT 2
27#define HPET_DEV_USED (1 << HPET_DEV_USED_BIT)
28#define HPET_DEV_VALID 0x8
29#define HPET_DEV_FSB_CAP 0x1000
30#define HPET_DEV_PERI_CAP 0x2000
31
Thomas Gleixnerf1c18072010-12-13 12:43:23 +010032#define HPET_MIN_CYCLES 128
33#define HPET_MIN_PROG_DELTA (HPET_MIN_CYCLES + (HPET_MIN_CYCLES >> 1))
34
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080035/*
36 * HPET address is set in acpi/boot.c, when an ACPI entry exists
37 */
Ingo Molnar4588c1f2008-09-06 14:19:17 +020038unsigned long hpet_address;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -070039u8 hpet_blockid; /* OS timer block num */
Pallipadi, Venkatesh73472a42010-01-21 11:09:52 -080040u8 hpet_msi_disable;
41
Ingo Molnare951e4a2008-11-25 08:42:01 +010042#ifdef CONFIG_PCI_MSI
Hannes Eder3b71e9e2008-11-23 20:19:33 +010043static unsigned long hpet_num_timers;
Ingo Molnare951e4a2008-11-25 08:42:01 +010044#endif
Ingo Molnar4588c1f2008-09-06 14:19:17 +020045static void __iomem *hpet_virt_address;
john stultz5d0cf412006-06-26 00:25:12 -070046
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070047struct hpet_dev {
Ingo Molnar4588c1f2008-09-06 14:19:17 +020048 struct clock_event_device evt;
49 unsigned int num;
50 int cpu;
51 unsigned int irq;
52 unsigned int flags;
53 char name[10];
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070054};
55
Ferenc Wagner3f7787b2011-11-18 15:28:22 +010056inline struct hpet_dev *EVT_TO_HPET_DEV(struct clock_event_device *evtdev)
57{
58 return container_of(evtdev, struct hpet_dev, evt);
59}
60
Jan Beulich5946fa32009-08-19 08:44:24 +010061inline unsigned int hpet_readl(unsigned int a)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080062{
63 return readl(hpet_virt_address + a);
64}
65
Jan Beulich5946fa32009-08-19 08:44:24 +010066static inline void hpet_writel(unsigned int d, unsigned int a)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080067{
68 writel(d, hpet_virt_address + a);
69}
70
Thomas Gleixner28769142007-10-12 23:04:06 +020071#ifdef CONFIG_X86_64
Thomas Gleixner28769142007-10-12 23:04:06 +020072#include <asm/pgtable.h>
Yinghai Lu2387ce52008-07-13 14:50:56 -070073#endif
Thomas Gleixner28769142007-10-12 23:04:06 +020074
Thomas Gleixner06a24de2007-10-12 23:04:06 +020075static inline void hpet_set_mapping(void)
76{
77 hpet_virt_address = ioremap_nocache(hpet_address, HPET_MMAP_SIZE);
Yinghai Lu2387ce52008-07-13 14:50:56 -070078#ifdef CONFIG_X86_64
Andy Lutomirskid319bb72011-06-05 13:50:21 -040079 __set_fixmap(VSYSCALL_HPET, hpet_address, PAGE_KERNEL_VVAR_NOCACHE);
Yinghai Lu2387ce52008-07-13 14:50:56 -070080#endif
Thomas Gleixner06a24de2007-10-12 23:04:06 +020081}
82
83static inline void hpet_clear_mapping(void)
84{
85 iounmap(hpet_virt_address);
86 hpet_virt_address = NULL;
87}
88
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080089/*
90 * HPET command line enable / disable
91 */
92static int boot_hpet_disable;
Thomas Gleixnerb17530b2007-10-19 20:35:02 +020093int hpet_force_user;
Andreas Herrmannb98103a2009-02-21 00:09:47 +010094static int hpet_verbose;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080095
Ingo Molnar4588c1f2008-09-06 14:19:17 +020096static int __init hpet_setup(char *str)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080097{
98 if (str) {
99 if (!strncmp("disable", str, 7))
100 boot_hpet_disable = 1;
Thomas Gleixnerb17530b2007-10-19 20:35:02 +0200101 if (!strncmp("force", str, 5))
102 hpet_force_user = 1;
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100103 if (!strncmp("verbose", str, 7))
104 hpet_verbose = 1;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800105 }
106 return 1;
107}
108__setup("hpet=", hpet_setup);
109
Thomas Gleixner28769142007-10-12 23:04:06 +0200110static int __init disable_hpet(char *str)
111{
112 boot_hpet_disable = 1;
113 return 1;
114}
115__setup("nohpet", disable_hpet);
116
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800117static inline int is_hpet_capable(void)
118{
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200119 return !boot_hpet_disable && hpet_address;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800120}
121
122/*
123 * HPET timer interrupt enable / disable
124 */
125static int hpet_legacy_int_enabled;
126
127/**
128 * is_hpet_enabled - check whether the hpet timer interrupt is enabled
129 */
130int is_hpet_enabled(void)
131{
132 return is_hpet_capable() && hpet_legacy_int_enabled;
133}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100134EXPORT_SYMBOL_GPL(is_hpet_enabled);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800135
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100136static void _hpet_print_config(const char *function, int line)
137{
138 u32 i, timers, l, h;
139 printk(KERN_INFO "hpet: %s(%d):\n", function, line);
140 l = hpet_readl(HPET_ID);
141 h = hpet_readl(HPET_PERIOD);
142 timers = ((l & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
143 printk(KERN_INFO "hpet: ID: 0x%x, PERIOD: 0x%x\n", l, h);
144 l = hpet_readl(HPET_CFG);
145 h = hpet_readl(HPET_STATUS);
146 printk(KERN_INFO "hpet: CFG: 0x%x, STATUS: 0x%x\n", l, h);
147 l = hpet_readl(HPET_COUNTER);
148 h = hpet_readl(HPET_COUNTER+4);
149 printk(KERN_INFO "hpet: COUNTER_l: 0x%x, COUNTER_h: 0x%x\n", l, h);
150
151 for (i = 0; i < timers; i++) {
152 l = hpet_readl(HPET_Tn_CFG(i));
153 h = hpet_readl(HPET_Tn_CFG(i)+4);
154 printk(KERN_INFO "hpet: T%d: CFG_l: 0x%x, CFG_h: 0x%x\n",
155 i, l, h);
156 l = hpet_readl(HPET_Tn_CMP(i));
157 h = hpet_readl(HPET_Tn_CMP(i)+4);
158 printk(KERN_INFO "hpet: T%d: CMP_l: 0x%x, CMP_h: 0x%x\n",
159 i, l, h);
160 l = hpet_readl(HPET_Tn_ROUTE(i));
161 h = hpet_readl(HPET_Tn_ROUTE(i)+4);
162 printk(KERN_INFO "hpet: T%d ROUTE_l: 0x%x, ROUTE_h: 0x%x\n",
163 i, l, h);
164 }
165}
166
167#define hpet_print_config() \
168do { \
169 if (hpet_verbose) \
170 _hpet_print_config(__FUNCTION__, __LINE__); \
171} while (0)
172
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800173/*
174 * When the hpet driver (/dev/hpet) is enabled, we need to reserve
175 * timer 0 and timer 1 in case of RTC emulation.
176 */
177#ifdef CONFIG_HPET
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700178
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700179static void hpet_reserve_msi_timers(struct hpet_data *hd);
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700180
Jan Beulich5946fa32009-08-19 08:44:24 +0100181static void hpet_reserve_platform_timers(unsigned int id)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800182{
183 struct hpet __iomem *hpet = hpet_virt_address;
Balaji Rao37a47db82008-01-30 13:30:03 +0100184 struct hpet_timer __iomem *timer = &hpet->hpet_timers[2];
185 unsigned int nrtimers, i;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800186 struct hpet_data hd;
187
188 nrtimers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
189
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200190 memset(&hd, 0, sizeof(hd));
191 hd.hd_phys_address = hpet_address;
192 hd.hd_address = hpet;
193 hd.hd_nirqs = nrtimers;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800194 hpet_reserve_timer(&hd, 0);
195
196#ifdef CONFIG_HPET_EMULATE_RTC
197 hpet_reserve_timer(&hd, 1);
198#endif
Thomas Gleixner5761d642008-04-04 16:26:10 +0200199
David Brownell64a76f62008-07-29 12:47:38 -0700200 /*
201 * NOTE that hd_irq[] reflects IOAPIC input pins (LEGACY_8254
202 * is wrong for i8259!) not the output IRQ. Many BIOS writers
203 * don't bother configuring *any* comparator interrupts.
204 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800205 hd.hd_irq[0] = HPET_LEGACY_8254;
206 hd.hd_irq[1] = HPET_LEGACY_RTC;
207
Ingo Molnarfc3fbc42008-04-27 14:04:14 +0200208 for (i = 2; i < nrtimers; timer++, i++) {
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200209 hd.hd_irq[i] = (readl(&timer->hpet_config) &
210 Tn_INT_ROUTE_CNF_MASK) >> Tn_INT_ROUTE_CNF_SHIFT;
Ingo Molnarfc3fbc42008-04-27 14:04:14 +0200211 }
Thomas Gleixner5761d642008-04-04 16:26:10 +0200212
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700213 hpet_reserve_msi_timers(&hd);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700214
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800215 hpet_alloc(&hd);
Thomas Gleixner5761d642008-04-04 16:26:10 +0200216
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800217}
218#else
Jan Beulich5946fa32009-08-19 08:44:24 +0100219static void hpet_reserve_platform_timers(unsigned int id) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800220#endif
221
222/*
223 * Common hpet info
224 */
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000225static unsigned long hpet_freq;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800226
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200227static void hpet_legacy_set_mode(enum clock_event_mode mode,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800228 struct clock_event_device *evt);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200229static int hpet_legacy_next_event(unsigned long delta,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800230 struct clock_event_device *evt);
231
232/*
233 * The hpet clock event device
234 */
235static struct clock_event_device hpet_clockevent = {
236 .name = "hpet",
237 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200238 .set_mode = hpet_legacy_set_mode,
239 .set_next_event = hpet_legacy_next_event,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800240 .irq = 0,
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200241 .rating = 50,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800242};
243
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100244static void hpet_stop_counter(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800245{
246 unsigned long cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800247 cfg &= ~HPET_CFG_ENABLE;
248 hpet_writel(cfg, HPET_CFG);
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200249}
250
251static void hpet_reset_counter(void)
252{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800253 hpet_writel(0, HPET_COUNTER);
254 hpet_writel(0, HPET_COUNTER + 4);
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100255}
256
257static void hpet_start_counter(void)
258{
Jan Beulich5946fa32009-08-19 08:44:24 +0100259 unsigned int cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800260 cfg |= HPET_CFG_ENABLE;
261 hpet_writel(cfg, HPET_CFG);
262}
263
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100264static void hpet_restart_counter(void)
265{
266 hpet_stop_counter();
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200267 hpet_reset_counter();
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100268 hpet_start_counter();
269}
270
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200271static void hpet_resume_device(void)
272{
Venki Pallipadibfe0c1c2007-10-12 23:04:24 +0200273 force_hpet_resume();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200274}
275
Magnus Damm17622332010-02-02 14:41:39 -0800276static void hpet_resume_counter(struct clocksource *cs)
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200277{
278 hpet_resume_device();
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100279 hpet_restart_counter();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200280}
281
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200282static void hpet_enable_legacy_int(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800283{
Jan Beulich5946fa32009-08-19 08:44:24 +0100284 unsigned int cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800285
286 cfg |= HPET_CFG_LEGACY;
287 hpet_writel(cfg, HPET_CFG);
288 hpet_legacy_int_enabled = 1;
289}
290
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200291static void hpet_legacy_clockevent_register(void)
292{
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200293 /* Start HPET legacy interrupts */
294 hpet_enable_legacy_int();
295
296 /*
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200297 * Start hpet with the boot cpu mask and make it
298 * global after the IO_APIC has been initialized.
299 */
Rusty Russell320ab2b2008-12-13 21:20:26 +1030300 hpet_clockevent.cpumask = cpumask_of(smp_processor_id());
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000301 clockevents_config_and_register(&hpet_clockevent, hpet_freq,
302 HPET_MIN_PROG_DELTA, 0x7FFFFFFF);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200303 global_clock_event = &hpet_clockevent;
304 printk(KERN_DEBUG "hpet clockevent registered\n");
305}
306
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700307static int hpet_setup_msi_irq(unsigned int irq);
308
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700309static void hpet_set_mode(enum clock_event_mode mode,
310 struct clock_event_device *evt, int timer)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800311{
Jan Beulich5946fa32009-08-19 08:44:24 +0100312 unsigned int cfg, cmp, now;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800313 uint64_t delta;
314
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200315 switch (mode) {
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800316 case CLOCK_EVT_MODE_PERIODIC:
Andreas Herrmannc23e2532009-02-21 00:16:35 +0100317 hpet_stop_counter();
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700318 delta = ((uint64_t)(NSEC_PER_SEC/HZ)) * evt->mult;
319 delta >>= evt->shift;
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200320 now = hpet_readl(HPET_COUNTER);
Jan Beulich5946fa32009-08-19 08:44:24 +0100321 cmp = now + (unsigned int) delta;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700322 cfg = hpet_readl(HPET_Tn_CFG(timer));
john stultzb13e2462009-02-12 18:48:53 -0800323 /* Make sure we use edge triggered interrupts */
324 cfg &= ~HPET_TN_LEVEL;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800325 cfg |= HPET_TN_ENABLE | HPET_TN_PERIODIC |
326 HPET_TN_SETVAL | HPET_TN_32BIT;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700327 hpet_writel(cfg, HPET_Tn_CFG(timer));
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200328 hpet_writel(cmp, HPET_Tn_CMP(timer));
329 udelay(1);
330 /*
331 * HPET on AMD 81xx needs a second write (with HPET_TN_SETVAL
332 * cleared) to T0_CMP to set the period. The HPET_TN_SETVAL
333 * bit is automatically cleared after the first write.
334 * (See AMD-8111 HyperTransport I/O Hub Data Sheet,
335 * Publication # 24674)
336 */
Jan Beulich5946fa32009-08-19 08:44:24 +0100337 hpet_writel((unsigned int) delta, HPET_Tn_CMP(timer));
Andreas Herrmannc23e2532009-02-21 00:16:35 +0100338 hpet_start_counter();
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100339 hpet_print_config();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800340 break;
341
342 case CLOCK_EVT_MODE_ONESHOT:
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700343 cfg = hpet_readl(HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800344 cfg &= ~HPET_TN_PERIODIC;
345 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700346 hpet_writel(cfg, HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800347 break;
348
349 case CLOCK_EVT_MODE_UNUSED:
350 case CLOCK_EVT_MODE_SHUTDOWN:
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700351 cfg = hpet_readl(HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800352 cfg &= ~HPET_TN_ENABLE;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700353 hpet_writel(cfg, HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800354 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700355
356 case CLOCK_EVT_MODE_RESUME:
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700357 if (timer == 0) {
358 hpet_enable_legacy_int();
359 } else {
360 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
361 hpet_setup_msi_irq(hdev->irq);
362 disable_irq(hdev->irq);
Rusty Russell0de26522008-12-13 21:20:26 +1030363 irq_set_affinity(hdev->irq, cpumask_of(hdev->cpu));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700364 enable_irq(hdev->irq);
365 }
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100366 hpet_print_config();
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700367 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800368 }
369}
370
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700371static int hpet_next_event(unsigned long delta,
372 struct clock_event_device *evt, int timer)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800373{
Thomas Gleixnerf7676252008-09-06 03:03:32 +0200374 u32 cnt;
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200375 s32 res;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800376
377 cnt = hpet_readl(HPET_COUNTER);
Thomas Gleixnerf7676252008-09-06 03:03:32 +0200378 cnt += (u32) delta;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700379 hpet_writel(cnt, HPET_Tn_CMP(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800380
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200381 /*
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200382 * HPETs are a complete disaster. The compare register is
383 * based on a equal comparison and neither provides a less
384 * than or equal functionality (which would require to take
385 * the wraparound into account) nor a simple count down event
386 * mode. Further the write to the comparator register is
387 * delayed internally up to two HPET clock cycles in certain
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100388 * chipsets (ATI, ICH9,10). Some newer AMD chipsets have even
389 * longer delays. We worked around that by reading back the
390 * compare register, but that required another workaround for
391 * ICH9,10 chips where the first readout after write can
392 * return the old stale value. We already had a minimum
393 * programming delta of 5us enforced, but a NMI or SMI hitting
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200394 * between the counter readout and the comparator write can
395 * move us behind that point easily. Now instead of reading
396 * the compare register back several times, we make the ETIME
397 * decision based on the following: Return ETIME if the
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100398 * counter value after the write is less than HPET_MIN_CYCLES
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200399 * away from the event or if the counter is already ahead of
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100400 * the event. The minimum programming delta for the generic
401 * clockevents code is set to 1.5 * HPET_MIN_CYCLES.
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200402 */
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200403 res = (s32)(cnt - hpet_readl(HPET_COUNTER));
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200404
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100405 return res < HPET_MIN_CYCLES ? -ETIME : 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800406}
407
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700408static void hpet_legacy_set_mode(enum clock_event_mode mode,
409 struct clock_event_device *evt)
410{
411 hpet_set_mode(mode, evt, 0);
412}
413
414static int hpet_legacy_next_event(unsigned long delta,
415 struct clock_event_device *evt)
416{
417 return hpet_next_event(delta, evt, 0);
418}
419
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800420/*
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700421 * HPET MSI Support
422 */
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700423#ifdef CONFIG_PCI_MSI
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700424
425static DEFINE_PER_CPU(struct hpet_dev *, cpu_hpet_dev);
426static struct hpet_dev *hpet_devs;
427
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200428void hpet_msi_unmask(struct irq_data *data)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700429{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200430 struct hpet_dev *hdev = data->handler_data;
Jan Beulich5946fa32009-08-19 08:44:24 +0100431 unsigned int cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700432
433 /* unmask it */
434 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
435 cfg |= HPET_TN_FSB;
436 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
437}
438
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200439void hpet_msi_mask(struct irq_data *data)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700440{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200441 struct hpet_dev *hdev = data->handler_data;
Jan Beulich5946fa32009-08-19 08:44:24 +0100442 unsigned int cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700443
444 /* mask it */
445 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
446 cfg &= ~HPET_TN_FSB;
447 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
448}
449
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200450void hpet_msi_write(struct hpet_dev *hdev, struct msi_msg *msg)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700451{
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700452 hpet_writel(msg->data, HPET_Tn_ROUTE(hdev->num));
453 hpet_writel(msg->address_lo, HPET_Tn_ROUTE(hdev->num) + 4);
454}
455
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200456void hpet_msi_read(struct hpet_dev *hdev, struct msi_msg *msg)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700457{
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700458 msg->data = hpet_readl(HPET_Tn_ROUTE(hdev->num));
459 msg->address_lo = hpet_readl(HPET_Tn_ROUTE(hdev->num) + 4);
460 msg->address_hi = 0;
461}
462
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700463static void hpet_msi_set_mode(enum clock_event_mode mode,
464 struct clock_event_device *evt)
465{
466 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
467 hpet_set_mode(mode, evt, hdev->num);
468}
469
470static int hpet_msi_next_event(unsigned long delta,
471 struct clock_event_device *evt)
472{
473 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
474 return hpet_next_event(delta, evt, hdev->num);
475}
476
477static int hpet_setup_msi_irq(unsigned int irq)
478{
Suresh Siddhac8bc6f32009-08-04 12:07:09 -0700479 if (arch_setup_hpet_msi(irq, hpet_blockid)) {
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700480 destroy_irq(irq);
481 return -EINVAL;
482 }
483 return 0;
484}
485
486static int hpet_assign_irq(struct hpet_dev *dev)
487{
488 unsigned int irq;
489
Thomas Gleixner02198962010-09-28 23:20:23 +0200490 irq = create_irq_nr(0, -1);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700491 if (!irq)
492 return -EINVAL;
493
Thomas Gleixner2c778652011-03-12 12:20:43 +0100494 irq_set_handler_data(irq, dev);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700495
496 if (hpet_setup_msi_irq(irq))
497 return -EINVAL;
498
499 dev->irq = irq;
500 return 0;
501}
502
503static irqreturn_t hpet_interrupt_handler(int irq, void *data)
504{
505 struct hpet_dev *dev = (struct hpet_dev *)data;
506 struct clock_event_device *hevt = &dev->evt;
507
508 if (!hevt->event_handler) {
509 printk(KERN_INFO "Spurious HPET timer interrupt on HPET timer %d\n",
510 dev->num);
511 return IRQ_HANDLED;
512 }
513
514 hevt->event_handler(hevt);
515 return IRQ_HANDLED;
516}
517
518static int hpet_setup_irq(struct hpet_dev *dev)
519{
520
521 if (request_irq(dev->irq, hpet_interrupt_handler,
Thomas Gleixner507fa3a2009-06-14 17:46:01 +0200522 IRQF_TIMER | IRQF_DISABLED | IRQF_NOBALANCING,
523 dev->name, dev))
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700524 return -1;
525
526 disable_irq(dev->irq);
Rusty Russell0de26522008-12-13 21:20:26 +1030527 irq_set_affinity(dev->irq, cpumask_of(dev->cpu));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700528 enable_irq(dev->irq);
529
Yinghai Luc81bba42008-09-25 11:53:11 -0700530 printk(KERN_DEBUG "hpet: %s irq %d for MSI\n",
531 dev->name, dev->irq);
532
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700533 return 0;
534}
535
536/* This should be called in specific @cpu */
537static void init_one_hpet_msi_clockevent(struct hpet_dev *hdev, int cpu)
538{
539 struct clock_event_device *evt = &hdev->evt;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700540
541 WARN_ON(cpu != smp_processor_id());
542 if (!(hdev->flags & HPET_DEV_VALID))
543 return;
544
545 if (hpet_setup_msi_irq(hdev->irq))
546 return;
547
548 hdev->cpu = cpu;
549 per_cpu(cpu_hpet_dev, cpu) = hdev;
550 evt->name = hdev->name;
551 hpet_setup_irq(hdev);
552 evt->irq = hdev->irq;
553
554 evt->rating = 110;
555 evt->features = CLOCK_EVT_FEAT_ONESHOT;
556 if (hdev->flags & HPET_DEV_PERI_CAP)
557 evt->features |= CLOCK_EVT_FEAT_PERIODIC;
558
559 evt->set_mode = hpet_msi_set_mode;
560 evt->set_next_event = hpet_msi_next_event;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030561 evt->cpumask = cpumask_of(hdev->cpu);
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000562
563 clockevents_config_and_register(evt, hpet_freq, HPET_MIN_PROG_DELTA,
564 0x7FFFFFFF);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700565}
566
567#ifdef CONFIG_HPET
568/* Reserve at least one timer for userspace (/dev/hpet) */
569#define RESERVE_TIMERS 1
570#else
571#define RESERVE_TIMERS 0
572#endif
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700573
574static void hpet_msi_capability_lookup(unsigned int start_timer)
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700575{
576 unsigned int id;
577 unsigned int num_timers;
578 unsigned int num_timers_used = 0;
579 int i;
580
Pallipadi, Venkatesh73472a42010-01-21 11:09:52 -0800581 if (hpet_msi_disable)
582 return;
583
Shaohua Li39fe05e2009-08-12 11:16:12 +0800584 if (boot_cpu_has(X86_FEATURE_ARAT))
585 return;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700586 id = hpet_readl(HPET_ID);
587
588 num_timers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
589 num_timers++; /* Value read out starts from 0 */
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100590 hpet_print_config();
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700591
592 hpet_devs = kzalloc(sizeof(struct hpet_dev) * num_timers, GFP_KERNEL);
593 if (!hpet_devs)
594 return;
595
596 hpet_num_timers = num_timers;
597
598 for (i = start_timer; i < num_timers - RESERVE_TIMERS; i++) {
599 struct hpet_dev *hdev = &hpet_devs[num_timers_used];
Jan Beulich5946fa32009-08-19 08:44:24 +0100600 unsigned int cfg = hpet_readl(HPET_Tn_CFG(i));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700601
602 /* Only consider HPET timer with MSI support */
603 if (!(cfg & HPET_TN_FSB_CAP))
604 continue;
605
606 hdev->flags = 0;
607 if (cfg & HPET_TN_PERIODIC_CAP)
608 hdev->flags |= HPET_DEV_PERI_CAP;
609 hdev->num = i;
610
611 sprintf(hdev->name, "hpet%d", i);
612 if (hpet_assign_irq(hdev))
613 continue;
614
615 hdev->flags |= HPET_DEV_FSB_CAP;
616 hdev->flags |= HPET_DEV_VALID;
617 num_timers_used++;
618 if (num_timers_used == num_possible_cpus())
619 break;
620 }
621
622 printk(KERN_INFO "HPET: %d timers in total, %d timers will be used for per-cpu timer\n",
623 num_timers, num_timers_used);
624}
625
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700626#ifdef CONFIG_HPET
627static void hpet_reserve_msi_timers(struct hpet_data *hd)
628{
629 int i;
630
631 if (!hpet_devs)
632 return;
633
634 for (i = 0; i < hpet_num_timers; i++) {
635 struct hpet_dev *hdev = &hpet_devs[i];
636
637 if (!(hdev->flags & HPET_DEV_VALID))
638 continue;
639
640 hd->hd_irq[hdev->num] = hdev->irq;
641 hpet_reserve_timer(hd, hdev->num);
642 }
643}
644#endif
645
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700646static struct hpet_dev *hpet_get_unused_timer(void)
647{
648 int i;
649
650 if (!hpet_devs)
651 return NULL;
652
653 for (i = 0; i < hpet_num_timers; i++) {
654 struct hpet_dev *hdev = &hpet_devs[i];
655
656 if (!(hdev->flags & HPET_DEV_VALID))
657 continue;
658 if (test_and_set_bit(HPET_DEV_USED_BIT,
659 (unsigned long *)&hdev->flags))
660 continue;
661 return hdev;
662 }
663 return NULL;
664}
665
666struct hpet_work_struct {
667 struct delayed_work work;
668 struct completion complete;
669};
670
671static void hpet_work(struct work_struct *w)
672{
673 struct hpet_dev *hdev;
674 int cpu = smp_processor_id();
675 struct hpet_work_struct *hpet_work;
676
677 hpet_work = container_of(w, struct hpet_work_struct, work.work);
678
679 hdev = hpet_get_unused_timer();
680 if (hdev)
681 init_one_hpet_msi_clockevent(hdev, cpu);
682
683 complete(&hpet_work->complete);
684}
685
686static int hpet_cpuhp_notify(struct notifier_block *n,
687 unsigned long action, void *hcpu)
688{
689 unsigned long cpu = (unsigned long)hcpu;
690 struct hpet_work_struct work;
691 struct hpet_dev *hdev = per_cpu(cpu_hpet_dev, cpu);
692
693 switch (action & 0xf) {
694 case CPU_ONLINE:
Andrew Mortonca1cab32010-10-26 14:22:34 -0700695 INIT_DELAYED_WORK_ONSTACK(&work.work, hpet_work);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700696 init_completion(&work.complete);
697 /* FIXME: add schedule_work_on() */
698 schedule_delayed_work_on(cpu, &work.work, 0);
699 wait_for_completion(&work.complete);
Thomas Gleixner336f6c32009-01-22 09:50:44 +0100700 destroy_timer_on_stack(&work.work.timer);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700701 break;
702 case CPU_DEAD:
703 if (hdev) {
704 free_irq(hdev->irq, hdev);
705 hdev->flags &= ~HPET_DEV_USED;
706 per_cpu(cpu_hpet_dev, cpu) = NULL;
707 }
708 break;
709 }
710 return NOTIFY_OK;
711}
712#else
713
Steven Noonanba374c92008-09-08 16:19:09 -0700714static int hpet_setup_msi_irq(unsigned int irq)
715{
716 return 0;
717}
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700718static void hpet_msi_capability_lookup(unsigned int start_timer)
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700719{
720 return;
721}
722
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700723#ifdef CONFIG_HPET
724static void hpet_reserve_msi_timers(struct hpet_data *hd)
725{
726 return;
727}
728#endif
729
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700730static int hpet_cpuhp_notify(struct notifier_block *n,
731 unsigned long action, void *hcpu)
732{
733 return NOTIFY_OK;
734}
735
736#endif
737
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700738/*
john stultz6bb74df2007-03-05 00:30:50 -0800739 * Clock source related code
740 */
Magnus Damm8e196082009-04-21 12:24:00 -0700741static cycle_t read_hpet(struct clocksource *cs)
john stultz6bb74df2007-03-05 00:30:50 -0800742{
743 return (cycle_t)hpet_readl(HPET_COUNTER);
744}
745
746static struct clocksource clocksource_hpet = {
747 .name = "hpet",
748 .rating = 250,
749 .read = read_hpet,
750 .mask = HPET_MASK,
john stultz6bb74df2007-03-05 00:30:50 -0800751 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100752 .resume = hpet_resume_counter,
Thomas Gleixner28769142007-10-12 23:04:06 +0200753#ifdef CONFIG_X86_64
Andy Lutomirski98d0ac32011-07-14 06:47:22 -0400754 .archdata = { .vclock_mode = VCLOCK_HPET },
Thomas Gleixner28769142007-10-12 23:04:06 +0200755#endif
john stultz6bb74df2007-03-05 00:30:50 -0800756};
757
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200758static int hpet_clocksource_register(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800759{
Carlos R. Mafra6fd592d2008-05-05 20:11:22 -0300760 u64 start, now;
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200761 cycle_t t1;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800762
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800763 /* Start the counter */
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100764 hpet_restart_counter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800765
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200766 /* Verify whether hpet counter works */
Magnus Damm8e196082009-04-21 12:24:00 -0700767 t1 = hpet_readl(HPET_COUNTER);
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200768 rdtscll(start);
769
770 /*
771 * We don't know the TSC frequency yet, but waiting for
772 * 200000 TSC cycles is safe:
773 * 4 GHz == 50us
774 * 1 GHz == 200us
775 */
776 do {
777 rep_nop();
778 rdtscll(now);
779 } while ((now - start) < 200000UL);
780
Magnus Damm8e196082009-04-21 12:24:00 -0700781 if (t1 == hpet_readl(HPET_COUNTER)) {
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200782 printk(KERN_WARNING
783 "HPET counter not counting. HPET disabled\n");
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200784 return -ENODEV;
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200785 }
786
John Stultzf12a15b2010-07-13 17:56:27 -0700787 clocksource_register_hz(&clocksource_hpet, (u32)hpet_freq);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200788 return 0;
789}
790
Pavel Machekb02a7f22008-02-05 00:48:13 +0100791/**
792 * hpet_enable - Try to setup the HPET timer. Returns 1 on success.
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200793 */
794int __init hpet_enable(void)
795{
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000796 unsigned long hpet_period;
Jan Beulich5946fa32009-08-19 08:44:24 +0100797 unsigned int id;
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000798 u64 freq;
Thomas Gleixnera6825f12008-08-14 12:17:06 +0200799 int i;
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200800
801 if (!is_hpet_capable())
802 return 0;
803
804 hpet_set_mapping();
805
806 /*
807 * Read the period and check for a sane value:
808 */
809 hpet_period = hpet_readl(HPET_PERIOD);
Thomas Gleixnera6825f12008-08-14 12:17:06 +0200810
811 /*
812 * AMD SB700 based systems with spread spectrum enabled use a
813 * SMM based HPET emulation to provide proper frequency
814 * setting. The SMM code is initialized with the first HPET
815 * register access and takes some time to complete. During
816 * this time the config register reads 0xffffffff. We check
817 * for max. 1000 loops whether the config register reads a non
818 * 0xffffffff value to make sure that HPET is up and running
819 * before we go further. A counting loop is safe, as the HPET
820 * access takes thousands of CPU cycles. On non SB700 based
821 * machines this check is only done once and has no side
822 * effects.
823 */
824 for (i = 0; hpet_readl(HPET_CFG) == 0xFFFFFFFF; i++) {
825 if (i == 1000) {
826 printk(KERN_WARNING
827 "HPET config register value = 0xFFFFFFFF. "
828 "Disabling HPET\n");
829 goto out_nohpet;
830 }
831 }
832
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200833 if (hpet_period < HPET_MIN_PERIOD || hpet_period > HPET_MAX_PERIOD)
834 goto out_nohpet;
835
836 /*
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000837 * The period is a femto seconds value. Convert it to a
838 * frequency.
839 */
840 freq = FSEC_PER_SEC;
841 do_div(freq, hpet_period);
842 hpet_freq = freq;
843
844 /*
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200845 * Read the HPET ID register to retrieve the IRQ routing
846 * information and the number of channels
847 */
848 id = hpet_readl(HPET_ID);
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100849 hpet_print_config();
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200850
851#ifdef CONFIG_HPET_EMULATE_RTC
852 /*
853 * The legacy routing mode needs at least two channels, tick timer
854 * and the rtc emulation channel.
855 */
856 if (!(id & HPET_ID_NUMBER))
857 goto out_nohpet;
858#endif
859
860 if (hpet_clocksource_register())
861 goto out_nohpet;
862
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800863 if (id & HPET_ID_LEGSUP) {
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200864 hpet_legacy_clockevent_register();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800865 return 1;
866 }
867 return 0;
868
869out_nohpet:
Thomas Gleixner06a24de2007-10-12 23:04:06 +0200870 hpet_clear_mapping();
Janne Kulmalabacbe992008-12-16 13:39:57 +0200871 hpet_address = 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800872 return 0;
873}
874
Thomas Gleixner28769142007-10-12 23:04:06 +0200875/*
876 * Needs to be late, as the reserve_timer code calls kalloc !
877 *
878 * Not a problem on i386 as hpet_enable is called from late_time_init,
879 * but on x86_64 it is necessary !
880 */
881static __init int hpet_late_init(void)
882{
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700883 int cpu;
884
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200885 if (boot_hpet_disable)
Thomas Gleixner28769142007-10-12 23:04:06 +0200886 return -ENODEV;
887
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200888 if (!hpet_address) {
889 if (!force_hpet_address)
890 return -ENODEV;
891
892 hpet_address = force_hpet_address;
893 hpet_enable();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200894 }
895
Jeremy Fitzhardinge39c04b52008-12-16 12:32:23 -0800896 if (!hpet_virt_address)
897 return -ENODEV;
898
Shaohua Li39fe05e2009-08-12 11:16:12 +0800899 if (hpet_readl(HPET_ID) & HPET_ID_LEGSUP)
900 hpet_msi_capability_lookup(2);
901 else
902 hpet_msi_capability_lookup(0);
903
Thomas Gleixner28769142007-10-12 23:04:06 +0200904 hpet_reserve_platform_timers(hpet_readl(HPET_ID));
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100905 hpet_print_config();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200906
Pallipadi, Venkatesh73472a42010-01-21 11:09:52 -0800907 if (hpet_msi_disable)
908 return 0;
909
Shaohua Li39fe05e2009-08-12 11:16:12 +0800910 if (boot_cpu_has(X86_FEATURE_ARAT))
911 return 0;
912
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700913 for_each_online_cpu(cpu) {
914 hpet_cpuhp_notify(NULL, CPU_ONLINE, (void *)(long)cpu);
915 }
916
917 /* This notifier should be called after workqueue is ready */
918 hotcpu_notifier(hpet_cpuhp_notify, -20);
919
Thomas Gleixner28769142007-10-12 23:04:06 +0200920 return 0;
921}
922fs_initcall(hpet_late_init);
923
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100924void hpet_disable(void)
925{
Stefano Stabelliniff487802010-07-21 18:32:37 +0100926 if (is_hpet_capable() && hpet_virt_address) {
Jan Beulich5946fa32009-08-19 08:44:24 +0100927 unsigned int cfg = hpet_readl(HPET_CFG);
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100928
929 if (hpet_legacy_int_enabled) {
930 cfg &= ~HPET_CFG_LEGACY;
931 hpet_legacy_int_enabled = 0;
932 }
933 cfg &= ~HPET_CFG_ENABLE;
934 hpet_writel(cfg, HPET_CFG);
935 }
936}
937
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800938#ifdef CONFIG_HPET_EMULATE_RTC
939
940/* HPET in LegacyReplacement Mode eats up RTC interrupt line. When, HPET
941 * is enabled, we support RTC interrupt functionality in software.
942 * RTC has 3 kinds of interrupts:
943 * 1) Update Interrupt - generate an interrupt, every sec, when RTC clock
944 * is updated
945 * 2) Alarm Interrupt - generate an interrupt at a specific time of day
946 * 3) Periodic Interrupt - generate periodic interrupt, with frequencies
947 * 2Hz-8192Hz (2Hz-64Hz for non-root user) (all freqs in powers of 2)
948 * (1) and (2) above are implemented using polling at a frequency of
949 * 64 Hz. The exact frequency is a tradeoff between accuracy and interrupt
950 * overhead. (DEFAULT_RTC_INT_FREQ)
951 * For (3), we use interrupts at 64Hz or user specified periodic
952 * frequency, whichever is higher.
953 */
954#include <linux/mc146818rtc.h>
955#include <linux/rtc.h>
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100956#include <asm/rtc.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800957
958#define DEFAULT_RTC_INT_FREQ 64
959#define DEFAULT_RTC_SHIFT 6
960#define RTC_NUM_INTS 1
961
962static unsigned long hpet_rtc_flags;
David Brownell7e2a31d2008-07-23 21:30:47 -0700963static int hpet_prev_update_sec;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800964static struct rtc_time hpet_alarm_time;
965static unsigned long hpet_pie_count;
Pavel Emelyanovff08f762009-02-04 13:40:31 +0300966static u32 hpet_t1_cmp;
Jan Beulich5946fa32009-08-19 08:44:24 +0100967static u32 hpet_default_delta;
968static u32 hpet_pie_delta;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800969static unsigned long hpet_pie_limit;
970
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100971static rtc_irq_handler irq_handler;
972
973/*
Pavel Emelyanovff08f762009-02-04 13:40:31 +0300974 * Check that the hpet counter c1 is ahead of the c2
975 */
976static inline int hpet_cnt_ahead(u32 c1, u32 c2)
977{
978 return (s32)(c2 - c1) < 0;
979}
980
981/*
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100982 * Registers a IRQ handler.
983 */
984int hpet_register_irq_handler(rtc_irq_handler handler)
985{
986 if (!is_hpet_enabled())
987 return -ENODEV;
988 if (irq_handler)
989 return -EBUSY;
990
991 irq_handler = handler;
992
993 return 0;
994}
995EXPORT_SYMBOL_GPL(hpet_register_irq_handler);
996
997/*
998 * Deregisters the IRQ handler registered with hpet_register_irq_handler()
999 * and does cleanup.
1000 */
1001void hpet_unregister_irq_handler(rtc_irq_handler handler)
1002{
1003 if (!is_hpet_enabled())
1004 return;
1005
1006 irq_handler = NULL;
1007 hpet_rtc_flags = 0;
1008}
1009EXPORT_SYMBOL_GPL(hpet_unregister_irq_handler);
1010
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001011/*
1012 * Timer 1 for RTC emulation. We use one shot mode, as periodic mode
1013 * is not supported by all HPET implementations for timer 1.
1014 *
1015 * hpet_rtc_timer_init() is called when the rtc is initialized.
1016 */
1017int hpet_rtc_timer_init(void)
1018{
Jan Beulich5946fa32009-08-19 08:44:24 +01001019 unsigned int cfg, cnt, delta;
1020 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001021
1022 if (!is_hpet_enabled())
1023 return 0;
1024
1025 if (!hpet_default_delta) {
1026 uint64_t clc;
1027
1028 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1029 clc >>= hpet_clockevent.shift + DEFAULT_RTC_SHIFT;
Jan Beulich5946fa32009-08-19 08:44:24 +01001030 hpet_default_delta = clc;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001031 }
1032
1033 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1034 delta = hpet_default_delta;
1035 else
1036 delta = hpet_pie_delta;
1037
1038 local_irq_save(flags);
1039
1040 cnt = delta + hpet_readl(HPET_COUNTER);
1041 hpet_writel(cnt, HPET_T1_CMP);
1042 hpet_t1_cmp = cnt;
1043
1044 cfg = hpet_readl(HPET_T1_CFG);
1045 cfg &= ~HPET_TN_PERIODIC;
1046 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
1047 hpet_writel(cfg, HPET_T1_CFG);
1048
1049 local_irq_restore(flags);
1050
1051 return 1;
1052}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001053EXPORT_SYMBOL_GPL(hpet_rtc_timer_init);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001054
1055/*
1056 * The functions below are called from rtc driver.
1057 * Return 0 if HPET is not being used.
1058 * Otherwise do the necessary changes and return 1.
1059 */
1060int hpet_mask_rtc_irq_bit(unsigned long bit_mask)
1061{
1062 if (!is_hpet_enabled())
1063 return 0;
1064
1065 hpet_rtc_flags &= ~bit_mask;
1066 return 1;
1067}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001068EXPORT_SYMBOL_GPL(hpet_mask_rtc_irq_bit);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001069
1070int hpet_set_rtc_irq_bit(unsigned long bit_mask)
1071{
1072 unsigned long oldbits = hpet_rtc_flags;
1073
1074 if (!is_hpet_enabled())
1075 return 0;
1076
1077 hpet_rtc_flags |= bit_mask;
1078
David Brownell7e2a31d2008-07-23 21:30:47 -07001079 if ((bit_mask & RTC_UIE) && !(oldbits & RTC_UIE))
1080 hpet_prev_update_sec = -1;
1081
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001082 if (!oldbits)
1083 hpet_rtc_timer_init();
1084
1085 return 1;
1086}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001087EXPORT_SYMBOL_GPL(hpet_set_rtc_irq_bit);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001088
1089int hpet_set_alarm_time(unsigned char hrs, unsigned char min,
1090 unsigned char sec)
1091{
1092 if (!is_hpet_enabled())
1093 return 0;
1094
1095 hpet_alarm_time.tm_hour = hrs;
1096 hpet_alarm_time.tm_min = min;
1097 hpet_alarm_time.tm_sec = sec;
1098
1099 return 1;
1100}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001101EXPORT_SYMBOL_GPL(hpet_set_alarm_time);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001102
1103int hpet_set_periodic_freq(unsigned long freq)
1104{
1105 uint64_t clc;
1106
1107 if (!is_hpet_enabled())
1108 return 0;
1109
1110 if (freq <= DEFAULT_RTC_INT_FREQ)
1111 hpet_pie_limit = DEFAULT_RTC_INT_FREQ / freq;
1112 else {
1113 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1114 do_div(clc, freq);
1115 clc >>= hpet_clockevent.shift;
Jan Beulich5946fa32009-08-19 08:44:24 +01001116 hpet_pie_delta = clc;
Alok Katariab4a5e8a2010-03-11 14:00:16 -08001117 hpet_pie_limit = 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001118 }
1119 return 1;
1120}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001121EXPORT_SYMBOL_GPL(hpet_set_periodic_freq);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001122
1123int hpet_rtc_dropped_irq(void)
1124{
1125 return is_hpet_enabled();
1126}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001127EXPORT_SYMBOL_GPL(hpet_rtc_dropped_irq);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001128
1129static void hpet_rtc_timer_reinit(void)
1130{
Jan Beulich5946fa32009-08-19 08:44:24 +01001131 unsigned int cfg, delta;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001132 int lost_ints = -1;
1133
1134 if (unlikely(!hpet_rtc_flags)) {
1135 cfg = hpet_readl(HPET_T1_CFG);
1136 cfg &= ~HPET_TN_ENABLE;
1137 hpet_writel(cfg, HPET_T1_CFG);
1138 return;
1139 }
1140
1141 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1142 delta = hpet_default_delta;
1143 else
1144 delta = hpet_pie_delta;
1145
1146 /*
1147 * Increment the comparator value until we are ahead of the
1148 * current count.
1149 */
1150 do {
1151 hpet_t1_cmp += delta;
1152 hpet_writel(hpet_t1_cmp, HPET_T1_CMP);
1153 lost_ints++;
Pavel Emelyanovff08f762009-02-04 13:40:31 +03001154 } while (!hpet_cnt_ahead(hpet_t1_cmp, hpet_readl(HPET_COUNTER)));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001155
1156 if (lost_ints) {
1157 if (hpet_rtc_flags & RTC_PIE)
1158 hpet_pie_count += lost_ints;
1159 if (printk_ratelimit())
David Brownell7e2a31d2008-07-23 21:30:47 -07001160 printk(KERN_WARNING "hpet1: lost %d rtc interrupts\n",
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001161 lost_ints);
1162 }
1163}
1164
1165irqreturn_t hpet_rtc_interrupt(int irq, void *dev_id)
1166{
1167 struct rtc_time curr_time;
1168 unsigned long rtc_int_flag = 0;
1169
1170 hpet_rtc_timer_reinit();
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001171 memset(&curr_time, 0, sizeof(struct rtc_time));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001172
1173 if (hpet_rtc_flags & (RTC_UIE | RTC_AIE))
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001174 get_rtc_time(&curr_time);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001175
1176 if (hpet_rtc_flags & RTC_UIE &&
1177 curr_time.tm_sec != hpet_prev_update_sec) {
David Brownell7e2a31d2008-07-23 21:30:47 -07001178 if (hpet_prev_update_sec >= 0)
1179 rtc_int_flag = RTC_UF;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001180 hpet_prev_update_sec = curr_time.tm_sec;
1181 }
1182
1183 if (hpet_rtc_flags & RTC_PIE &&
1184 ++hpet_pie_count >= hpet_pie_limit) {
1185 rtc_int_flag |= RTC_PF;
1186 hpet_pie_count = 0;
1187 }
1188
Bernhard Walle8ee291f2008-01-15 16:44:38 +01001189 if (hpet_rtc_flags & RTC_AIE &&
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001190 (curr_time.tm_sec == hpet_alarm_time.tm_sec) &&
1191 (curr_time.tm_min == hpet_alarm_time.tm_min) &&
1192 (curr_time.tm_hour == hpet_alarm_time.tm_hour))
1193 rtc_int_flag |= RTC_AF;
1194
1195 if (rtc_int_flag) {
1196 rtc_int_flag |= (RTC_IRQF | (RTC_NUM_INTS << 8));
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001197 if (irq_handler)
1198 irq_handler(rtc_int_flag, dev_id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001199 }
1200 return IRQ_HANDLED;
1201}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001202EXPORT_SYMBOL_GPL(hpet_rtc_interrupt);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001203#endif