blob: 10757d0a3fcf438e43ffbfc634e7daa8dc110a2e [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>
Thomas Gleixner28769142007-10-12 23:04:06 +02005#include <linux/delay.h>
john stultz5d0cf412006-06-26 00:25:12 -07006#include <linux/errno.h>
Ralf Baechle334955e2011-06-01 19:04:57 +01007#include <linux/i8253.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
john stultz5d0cf412006-06-26 00:25:12 -07009#include <linux/hpet.h>
10#include <linux/init.h>
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -070011#include <linux/cpu.h>
Ingo Molnar4588c1f2008-09-06 14:19:17 +020012#include <linux/pm.h>
13#include <linux/io.h>
john stultz5d0cf412006-06-26 00:25:12 -070014
Jiang Liud746d1e2015-04-14 10:30:09 +080015#include <asm/irqdomain.h>
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);
78}
79
80static inline void hpet_clear_mapping(void)
81{
82 iounmap(hpet_virt_address);
83 hpet_virt_address = NULL;
84}
85
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080086/*
87 * HPET command line enable / disable
88 */
Feng Tangf10f3832014-04-24 16:18:17 +080089int boot_hpet_disable;
Thomas Gleixnerb17530b2007-10-19 20:35:02 +020090int hpet_force_user;
Andreas Herrmannb98103a2009-02-21 00:09:47 +010091static int hpet_verbose;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080092
Ingo Molnar4588c1f2008-09-06 14:19:17 +020093static int __init hpet_setup(char *str)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080094{
Jan Beulichb2d6aba2012-04-02 15:17:36 +010095 while (str) {
96 char *next = strchr(str, ',');
97
98 if (next)
99 *next++ = 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800100 if (!strncmp("disable", str, 7))
101 boot_hpet_disable = 1;
Thomas Gleixnerb17530b2007-10-19 20:35:02 +0200102 if (!strncmp("force", str, 5))
103 hpet_force_user = 1;
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100104 if (!strncmp("verbose", str, 7))
105 hpet_verbose = 1;
Jan Beulichb2d6aba2012-04-02 15:17:36 +0100106 str = next;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800107 }
108 return 1;
109}
110__setup("hpet=", hpet_setup);
111
Thomas Gleixner28769142007-10-12 23:04:06 +0200112static int __init disable_hpet(char *str)
113{
114 boot_hpet_disable = 1;
115 return 1;
116}
117__setup("nohpet", disable_hpet);
118
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800119static inline int is_hpet_capable(void)
120{
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200121 return !boot_hpet_disable && hpet_address;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800122}
123
124/*
125 * HPET timer interrupt enable / disable
126 */
127static int hpet_legacy_int_enabled;
128
129/**
130 * is_hpet_enabled - check whether the hpet timer interrupt is enabled
131 */
132int is_hpet_enabled(void)
133{
134 return is_hpet_capable() && hpet_legacy_int_enabled;
135}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100136EXPORT_SYMBOL_GPL(is_hpet_enabled);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800137
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100138static void _hpet_print_config(const char *function, int line)
139{
140 u32 i, timers, l, h;
141 printk(KERN_INFO "hpet: %s(%d):\n", function, line);
142 l = hpet_readl(HPET_ID);
143 h = hpet_readl(HPET_PERIOD);
144 timers = ((l & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
145 printk(KERN_INFO "hpet: ID: 0x%x, PERIOD: 0x%x\n", l, h);
146 l = hpet_readl(HPET_CFG);
147 h = hpet_readl(HPET_STATUS);
148 printk(KERN_INFO "hpet: CFG: 0x%x, STATUS: 0x%x\n", l, h);
149 l = hpet_readl(HPET_COUNTER);
150 h = hpet_readl(HPET_COUNTER+4);
151 printk(KERN_INFO "hpet: COUNTER_l: 0x%x, COUNTER_h: 0x%x\n", l, h);
152
153 for (i = 0; i < timers; i++) {
154 l = hpet_readl(HPET_Tn_CFG(i));
155 h = hpet_readl(HPET_Tn_CFG(i)+4);
156 printk(KERN_INFO "hpet: T%d: CFG_l: 0x%x, CFG_h: 0x%x\n",
157 i, l, h);
158 l = hpet_readl(HPET_Tn_CMP(i));
159 h = hpet_readl(HPET_Tn_CMP(i)+4);
160 printk(KERN_INFO "hpet: T%d: CMP_l: 0x%x, CMP_h: 0x%x\n",
161 i, l, h);
162 l = hpet_readl(HPET_Tn_ROUTE(i));
163 h = hpet_readl(HPET_Tn_ROUTE(i)+4);
164 printk(KERN_INFO "hpet: T%d ROUTE_l: 0x%x, ROUTE_h: 0x%x\n",
165 i, l, h);
166 }
167}
168
169#define hpet_print_config() \
170do { \
171 if (hpet_verbose) \
Rasmus Villemoes02f1f212015-02-12 15:01:31 -0800172 _hpet_print_config(__func__, __LINE__); \
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100173} while (0)
174
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800175/*
176 * When the hpet driver (/dev/hpet) is enabled, we need to reserve
177 * timer 0 and timer 1 in case of RTC emulation.
178 */
179#ifdef CONFIG_HPET
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700180
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700181static void hpet_reserve_msi_timers(struct hpet_data *hd);
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700182
Jan Beulich5946fa32009-08-19 08:44:24 +0100183static void hpet_reserve_platform_timers(unsigned int id)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800184{
185 struct hpet __iomem *hpet = hpet_virt_address;
Balaji Rao37a47db82008-01-30 13:30:03 +0100186 struct hpet_timer __iomem *timer = &hpet->hpet_timers[2];
187 unsigned int nrtimers, i;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800188 struct hpet_data hd;
189
190 nrtimers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT) + 1;
191
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200192 memset(&hd, 0, sizeof(hd));
193 hd.hd_phys_address = hpet_address;
194 hd.hd_address = hpet;
195 hd.hd_nirqs = nrtimers;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800196 hpet_reserve_timer(&hd, 0);
197
198#ifdef CONFIG_HPET_EMULATE_RTC
199 hpet_reserve_timer(&hd, 1);
200#endif
Thomas Gleixner5761d642008-04-04 16:26:10 +0200201
David Brownell64a76f62008-07-29 12:47:38 -0700202 /*
203 * NOTE that hd_irq[] reflects IOAPIC input pins (LEGACY_8254
204 * is wrong for i8259!) not the output IRQ. Many BIOS writers
205 * don't bother configuring *any* comparator interrupts.
206 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800207 hd.hd_irq[0] = HPET_LEGACY_8254;
208 hd.hd_irq[1] = HPET_LEGACY_RTC;
209
Ingo Molnarfc3fbc42008-04-27 14:04:14 +0200210 for (i = 2; i < nrtimers; timer++, i++) {
Ingo Molnar4588c1f2008-09-06 14:19:17 +0200211 hd.hd_irq[i] = (readl(&timer->hpet_config) &
212 Tn_INT_ROUTE_CNF_MASK) >> Tn_INT_ROUTE_CNF_SHIFT;
Ingo Molnarfc3fbc42008-04-27 14:04:14 +0200213 }
Thomas Gleixner5761d642008-04-04 16:26:10 +0200214
Venki Pallipadif0ed4e62008-09-08 10:18:40 -0700215 hpet_reserve_msi_timers(&hd);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700216
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800217 hpet_alloc(&hd);
Thomas Gleixner5761d642008-04-04 16:26:10 +0200218
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800219}
220#else
Jan Beulich5946fa32009-08-19 08:44:24 +0100221static void hpet_reserve_platform_timers(unsigned int id) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800222#endif
223
224/*
225 * Common hpet info
226 */
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000227static unsigned long hpet_freq;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800228
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200229static void hpet_legacy_set_mode(enum clock_event_mode mode,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800230 struct clock_event_device *evt);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200231static int hpet_legacy_next_event(unsigned long delta,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800232 struct clock_event_device *evt);
233
234/*
235 * The hpet clock event device
236 */
237static struct clock_event_device hpet_clockevent = {
238 .name = "hpet",
239 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200240 .set_mode = hpet_legacy_set_mode,
241 .set_next_event = hpet_legacy_next_event,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800242 .irq = 0,
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200243 .rating = 50,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800244};
245
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100246static void hpet_stop_counter(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800247{
248 unsigned long cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800249 cfg &= ~HPET_CFG_ENABLE;
250 hpet_writel(cfg, HPET_CFG);
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200251}
252
253static void hpet_reset_counter(void)
254{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800255 hpet_writel(0, HPET_COUNTER);
256 hpet_writel(0, HPET_COUNTER + 4);
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100257}
258
259static void hpet_start_counter(void)
260{
Jan Beulich5946fa32009-08-19 08:44:24 +0100261 unsigned int cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800262 cfg |= HPET_CFG_ENABLE;
263 hpet_writel(cfg, HPET_CFG);
264}
265
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100266static void hpet_restart_counter(void)
267{
268 hpet_stop_counter();
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200269 hpet_reset_counter();
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100270 hpet_start_counter();
271}
272
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200273static void hpet_resume_device(void)
274{
Venki Pallipadibfe0c1c2007-10-12 23:04:24 +0200275 force_hpet_resume();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200276}
277
Magnus Damm17622332010-02-02 14:41:39 -0800278static void hpet_resume_counter(struct clocksource *cs)
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200279{
280 hpet_resume_device();
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100281 hpet_restart_counter();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200282}
283
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200284static void hpet_enable_legacy_int(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800285{
Jan Beulich5946fa32009-08-19 08:44:24 +0100286 unsigned int cfg = hpet_readl(HPET_CFG);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800287
288 cfg |= HPET_CFG_LEGACY;
289 hpet_writel(cfg, HPET_CFG);
290 hpet_legacy_int_enabled = 1;
291}
292
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200293static void hpet_legacy_clockevent_register(void)
294{
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200295 /* Start HPET legacy interrupts */
296 hpet_enable_legacy_int();
297
298 /*
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200299 * Start hpet with the boot cpu mask and make it
300 * global after the IO_APIC has been initialized.
301 */
Rusty Russell320ab2b2008-12-13 21:20:26 +1030302 hpet_clockevent.cpumask = cpumask_of(smp_processor_id());
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000303 clockevents_config_and_register(&hpet_clockevent, hpet_freq,
304 HPET_MIN_PROG_DELTA, 0x7FFFFFFF);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200305 global_clock_event = &hpet_clockevent;
306 printk(KERN_DEBUG "hpet clockevent registered\n");
307}
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));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800323 cfg |= HPET_TN_ENABLE | HPET_TN_PERIODIC |
324 HPET_TN_SETVAL | HPET_TN_32BIT;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700325 hpet_writel(cfg, HPET_Tn_CFG(timer));
Andreas Herrmann7a6f9cb2009-04-21 20:00:37 +0200326 hpet_writel(cmp, HPET_Tn_CMP(timer));
327 udelay(1);
328 /*
329 * HPET on AMD 81xx needs a second write (with HPET_TN_SETVAL
330 * cleared) to T0_CMP to set the period. The HPET_TN_SETVAL
331 * bit is automatically cleared after the first write.
332 * (See AMD-8111 HyperTransport I/O Hub Data Sheet,
333 * Publication # 24674)
334 */
Jan Beulich5946fa32009-08-19 08:44:24 +0100335 hpet_writel((unsigned int) delta, HPET_Tn_CMP(timer));
Andreas Herrmannc23e2532009-02-21 00:16:35 +0100336 hpet_start_counter();
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100337 hpet_print_config();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800338 break;
339
340 case CLOCK_EVT_MODE_ONESHOT:
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700341 cfg = hpet_readl(HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800342 cfg &= ~HPET_TN_PERIODIC;
343 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700344 hpet_writel(cfg, HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800345 break;
346
347 case CLOCK_EVT_MODE_UNUSED:
348 case CLOCK_EVT_MODE_SHUTDOWN:
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700349 cfg = hpet_readl(HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800350 cfg &= ~HPET_TN_ENABLE;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700351 hpet_writel(cfg, HPET_Tn_CFG(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800352 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700353
354 case CLOCK_EVT_MODE_RESUME:
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700355 if (timer == 0) {
356 hpet_enable_legacy_int();
357 } else {
358 struct hpet_dev *hdev = EVT_TO_HPET_DEV(evt);
Jiang Liu3cb96f02015-04-13 14:11:34 +0800359 irq_domain_activate_irq(irq_get_irq_data(hdev->irq));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700360 disable_irq(hdev->irq);
Rusty Russell0de26522008-12-13 21:20:26 +1030361 irq_set_affinity(hdev->irq, cpumask_of(hdev->cpu));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700362 enable_irq(hdev->irq);
363 }
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100364 hpet_print_config();
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700365 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800366 }
367}
368
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700369static int hpet_next_event(unsigned long delta,
370 struct clock_event_device *evt, int timer)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800371{
Thomas Gleixnerf7676252008-09-06 03:03:32 +0200372 u32 cnt;
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200373 s32 res;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800374
375 cnt = hpet_readl(HPET_COUNTER);
Thomas Gleixnerf7676252008-09-06 03:03:32 +0200376 cnt += (u32) delta;
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700377 hpet_writel(cnt, HPET_Tn_CMP(timer));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800378
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200379 /*
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200380 * HPETs are a complete disaster. The compare register is
381 * based on a equal comparison and neither provides a less
382 * than or equal functionality (which would require to take
383 * the wraparound into account) nor a simple count down event
384 * mode. Further the write to the comparator register is
385 * delayed internally up to two HPET clock cycles in certain
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100386 * chipsets (ATI, ICH9,10). Some newer AMD chipsets have even
387 * longer delays. We worked around that by reading back the
388 * compare register, but that required another workaround for
389 * ICH9,10 chips where the first readout after write can
390 * return the old stale value. We already had a minimum
391 * programming delta of 5us enforced, but a NMI or SMI hitting
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200392 * between the counter readout and the comparator write can
393 * move us behind that point easily. Now instead of reading
394 * the compare register back several times, we make the ETIME
395 * decision based on the following: Return ETIME if the
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100396 * counter value after the write is less than HPET_MIN_CYCLES
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200397 * away from the event or if the counter is already ahead of
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100398 * the event. The minimum programming delta for the generic
399 * clockevents code is set to 1.5 * HPET_MIN_CYCLES.
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200400 */
Thomas Gleixner995bd3b2010-09-15 15:11:57 +0200401 res = (s32)(cnt - hpet_readl(HPET_COUNTER));
Thomas Gleixner72d43d92008-09-06 03:06:08 +0200402
Thomas Gleixnerf1c18072010-12-13 12:43:23 +0100403 return res < HPET_MIN_CYCLES ? -ETIME : 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800404}
405
venkatesh.pallipadi@intel.comb40d5752008-09-05 18:02:16 -0700406static void hpet_legacy_set_mode(enum clock_event_mode mode,
407 struct clock_event_device *evt)
408{
409 hpet_set_mode(mode, evt, 0);
410}
411
412static int hpet_legacy_next_event(unsigned long delta,
413 struct clock_event_device *evt)
414{
415 return hpet_next_event(delta, evt, 0);
416}
417
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800418/*
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700419 * HPET MSI Support
420 */
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700421#ifdef CONFIG_PCI_MSI
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700422
423static DEFINE_PER_CPU(struct hpet_dev *, cpu_hpet_dev);
424static struct hpet_dev *hpet_devs;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800425static struct irq_domain *hpet_domain;
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700426
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200427void hpet_msi_unmask(struct irq_data *data)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700428{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200429 struct hpet_dev *hdev = data->handler_data;
Jan Beulich5946fa32009-08-19 08:44:24 +0100430 unsigned int cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700431
432 /* unmask it */
433 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
Jan Beulich6acf5a82012-11-02 14:02:40 +0000434 cfg |= HPET_TN_ENABLE | HPET_TN_FSB;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700435 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
436}
437
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200438void hpet_msi_mask(struct irq_data *data)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700439{
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200440 struct hpet_dev *hdev = data->handler_data;
Jan Beulich5946fa32009-08-19 08:44:24 +0100441 unsigned int cfg;
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700442
443 /* mask it */
444 cfg = hpet_readl(HPET_Tn_CFG(hdev->num));
Jan Beulich6acf5a82012-11-02 14:02:40 +0000445 cfg &= ~(HPET_TN_ENABLE | HPET_TN_FSB);
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700446 hpet_writel(cfg, HPET_Tn_CFG(hdev->num));
447}
448
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200449void hpet_msi_write(struct hpet_dev *hdev, struct msi_msg *msg)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700450{
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700451 hpet_writel(msg->data, HPET_Tn_ROUTE(hdev->num));
452 hpet_writel(msg->address_lo, HPET_Tn_ROUTE(hdev->num) + 4);
453}
454
Thomas Gleixnerd0fbca82010-09-28 16:18:39 +0200455void hpet_msi_read(struct hpet_dev *hdev, struct msi_msg *msg)
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700456{
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700457 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
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700462static 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
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700476static irqreturn_t hpet_interrupt_handler(int irq, void *data)
477{
478 struct hpet_dev *dev = (struct hpet_dev *)data;
479 struct clock_event_device *hevt = &dev->evt;
480
481 if (!hevt->event_handler) {
482 printk(KERN_INFO "Spurious HPET timer interrupt on HPET timer %d\n",
483 dev->num);
484 return IRQ_HANDLED;
485 }
486
487 hevt->event_handler(hevt);
488 return IRQ_HANDLED;
489}
490
491static int hpet_setup_irq(struct hpet_dev *dev)
492{
493
494 if (request_irq(dev->irq, hpet_interrupt_handler,
Michael Opdenackerd20d2ef2014-03-04 21:35:05 +0100495 IRQF_TIMER | IRQF_NOBALANCING,
Thomas Gleixner507fa3a2009-06-14 17:46:01 +0200496 dev->name, dev))
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700497 return -1;
498
499 disable_irq(dev->irq);
Rusty Russell0de26522008-12-13 21:20:26 +1030500 irq_set_affinity(dev->irq, cpumask_of(dev->cpu));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700501 enable_irq(dev->irq);
502
Yinghai Luc81bba42008-09-25 11:53:11 -0700503 printk(KERN_DEBUG "hpet: %s irq %d for MSI\n",
504 dev->name, dev->irq);
505
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700506 return 0;
507}
508
509/* This should be called in specific @cpu */
510static void init_one_hpet_msi_clockevent(struct hpet_dev *hdev, int cpu)
511{
512 struct clock_event_device *evt = &hdev->evt;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700513
514 WARN_ON(cpu != smp_processor_id());
515 if (!(hdev->flags & HPET_DEV_VALID))
516 return;
517
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700518 hdev->cpu = cpu;
519 per_cpu(cpu_hpet_dev, cpu) = hdev;
520 evt->name = hdev->name;
521 hpet_setup_irq(hdev);
522 evt->irq = hdev->irq;
523
524 evt->rating = 110;
525 evt->features = CLOCK_EVT_FEAT_ONESHOT;
526 if (hdev->flags & HPET_DEV_PERI_CAP)
527 evt->features |= CLOCK_EVT_FEAT_PERIODIC;
528
529 evt->set_mode = hpet_msi_set_mode;
530 evt->set_next_event = hpet_msi_next_event;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030531 evt->cpumask = cpumask_of(hdev->cpu);
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000532
533 clockevents_config_and_register(evt, hpet_freq, HPET_MIN_PROG_DELTA,
534 0x7FFFFFFF);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700535}
536
537#ifdef CONFIG_HPET
538/* Reserve at least one timer for userspace (/dev/hpet) */
539#define RESERVE_TIMERS 1
540#else
541#define RESERVE_TIMERS 0
542#endif
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700543
544static void hpet_msi_capability_lookup(unsigned int start_timer)
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700545{
546 unsigned int id;
547 unsigned int num_timers;
548 unsigned int num_timers_used = 0;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800549 int i, irq;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700550
Pallipadi, Venkatesh73472a42010-01-21 11:09:52 -0800551 if (hpet_msi_disable)
552 return;
553
Shaohua Li39fe05e2009-08-12 11:16:12 +0800554 if (boot_cpu_has(X86_FEATURE_ARAT))
555 return;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700556 id = hpet_readl(HPET_ID);
557
558 num_timers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
559 num_timers++; /* Value read out starts from 0 */
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100560 hpet_print_config();
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700561
Jiang Liu3cb96f02015-04-13 14:11:34 +0800562 hpet_domain = hpet_create_irq_domain(hpet_blockid);
563 if (!hpet_domain)
564 return;
565
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700566 hpet_devs = kzalloc(sizeof(struct hpet_dev) * num_timers, GFP_KERNEL);
567 if (!hpet_devs)
568 return;
569
570 hpet_num_timers = num_timers;
571
572 for (i = start_timer; i < num_timers - RESERVE_TIMERS; i++) {
573 struct hpet_dev *hdev = &hpet_devs[num_timers_used];
Jan Beulich5946fa32009-08-19 08:44:24 +0100574 unsigned int cfg = hpet_readl(HPET_Tn_CFG(i));
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700575
576 /* Only consider HPET timer with MSI support */
577 if (!(cfg & HPET_TN_FSB_CAP))
578 continue;
579
Thomas Gleixnercb17b2a2015-06-21 16:21:50 +0200580 hdev->flags = 0;
581 if (cfg & HPET_TN_PERIODIC_CAP)
582 hdev->flags |= HPET_DEV_PERI_CAP;
583 sprintf(hdev->name, "hpet%d", i);
584 hdev->num = i;
585
Jiang Liu3cb96f02015-04-13 14:11:34 +0800586 irq = hpet_assign_irq(hpet_domain, hdev, hdev->num);
Jiang Liubafac292015-06-20 11:50:50 +0200587 if (irq <= 0)
Jiang Liu3cb96f02015-04-13 14:11:34 +0800588 continue;
589
Jiang Liu3cb96f02015-04-13 14:11:34 +0800590 hdev->irq = irq;
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700591 hdev->flags |= HPET_DEV_FSB_CAP;
592 hdev->flags |= HPET_DEV_VALID;
593 num_timers_used++;
594 if (num_timers_used == num_possible_cpus())
595 break;
596 }
597
598 printk(KERN_INFO "HPET: %d timers in total, %d timers will be used for per-cpu timer\n",
599 num_timers, num_timers_used);
600}
601
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700602#ifdef CONFIG_HPET
603static void hpet_reserve_msi_timers(struct hpet_data *hd)
604{
605 int i;
606
607 if (!hpet_devs)
608 return;
609
610 for (i = 0; i < hpet_num_timers; i++) {
611 struct hpet_dev *hdev = &hpet_devs[i];
612
613 if (!(hdev->flags & HPET_DEV_VALID))
614 continue;
615
616 hd->hd_irq[hdev->num] = hdev->irq;
617 hpet_reserve_timer(hd, hdev->num);
618 }
619}
620#endif
621
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700622static struct hpet_dev *hpet_get_unused_timer(void)
623{
624 int i;
625
626 if (!hpet_devs)
627 return NULL;
628
629 for (i = 0; i < hpet_num_timers; i++) {
630 struct hpet_dev *hdev = &hpet_devs[i];
631
632 if (!(hdev->flags & HPET_DEV_VALID))
633 continue;
634 if (test_and_set_bit(HPET_DEV_USED_BIT,
635 (unsigned long *)&hdev->flags))
636 continue;
637 return hdev;
638 }
639 return NULL;
640}
641
642struct hpet_work_struct {
643 struct delayed_work work;
644 struct completion complete;
645};
646
647static void hpet_work(struct work_struct *w)
648{
649 struct hpet_dev *hdev;
650 int cpu = smp_processor_id();
651 struct hpet_work_struct *hpet_work;
652
653 hpet_work = container_of(w, struct hpet_work_struct, work.work);
654
655 hdev = hpet_get_unused_timer();
656 if (hdev)
657 init_one_hpet_msi_clockevent(hdev, cpu);
658
659 complete(&hpet_work->complete);
660}
661
662static int hpet_cpuhp_notify(struct notifier_block *n,
663 unsigned long action, void *hcpu)
664{
665 unsigned long cpu = (unsigned long)hcpu;
666 struct hpet_work_struct work;
667 struct hpet_dev *hdev = per_cpu(cpu_hpet_dev, cpu);
668
669 switch (action & 0xf) {
670 case CPU_ONLINE:
Andrew Mortonca1cab32010-10-26 14:22:34 -0700671 INIT_DELAYED_WORK_ONSTACK(&work.work, hpet_work);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700672 init_completion(&work.complete);
673 /* FIXME: add schedule_work_on() */
674 schedule_delayed_work_on(cpu, &work.work, 0);
675 wait_for_completion(&work.complete);
Thomas Gleixnerb712c8d2014-03-23 14:20:45 +0000676 destroy_delayed_work_on_stack(&work.work);
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700677 break;
678 case CPU_DEAD:
679 if (hdev) {
680 free_irq(hdev->irq, hdev);
681 hdev->flags &= ~HPET_DEV_USED;
682 per_cpu(cpu_hpet_dev, cpu) = NULL;
683 }
684 break;
685 }
686 return NOTIFY_OK;
687}
688#else
689
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700690static void hpet_msi_capability_lookup(unsigned int start_timer)
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700691{
692 return;
693}
694
Venki Pallipadi5f79f2f2008-09-24 10:03:17 -0700695#ifdef CONFIG_HPET
696static void hpet_reserve_msi_timers(struct hpet_data *hd)
697{
698 return;
699}
700#endif
701
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700702static int hpet_cpuhp_notify(struct notifier_block *n,
703 unsigned long action, void *hcpu)
704{
705 return NOTIFY_OK;
706}
707
708#endif
709
venkatesh.pallipadi@intel.com58ac1e72008-09-05 18:02:17 -0700710/*
john stultz6bb74df2007-03-05 00:30:50 -0800711 * Clock source related code
712 */
Magnus Damm8e196082009-04-21 12:24:00 -0700713static cycle_t read_hpet(struct clocksource *cs)
john stultz6bb74df2007-03-05 00:30:50 -0800714{
715 return (cycle_t)hpet_readl(HPET_COUNTER);
716}
717
718static struct clocksource clocksource_hpet = {
719 .name = "hpet",
720 .rating = 250,
721 .read = read_hpet,
722 .mask = HPET_MASK,
john stultz6bb74df2007-03-05 00:30:50 -0800723 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100724 .resume = hpet_resume_counter,
Andy Lutomirski98d0ac32011-07-14 06:47:22 -0400725 .archdata = { .vclock_mode = VCLOCK_HPET },
john stultz6bb74df2007-03-05 00:30:50 -0800726};
727
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200728static int hpet_clocksource_register(void)
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800729{
Carlos R. Mafra6fd592d2008-05-05 20:11:22 -0300730 u64 start, now;
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200731 cycle_t t1;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800732
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800733 /* Start the counter */
Andreas Herrmann8d6f0c82009-02-21 00:10:44 +0100734 hpet_restart_counter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800735
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200736 /* Verify whether hpet counter works */
Magnus Damm8e196082009-04-21 12:24:00 -0700737 t1 = hpet_readl(HPET_COUNTER);
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200738 rdtscll(start);
739
740 /*
741 * We don't know the TSC frequency yet, but waiting for
742 * 200000 TSC cycles is safe:
743 * 4 GHz == 50us
744 * 1 GHz == 200us
745 */
746 do {
747 rep_nop();
748 rdtscll(now);
749 } while ((now - start) < 200000UL);
750
Magnus Damm8e196082009-04-21 12:24:00 -0700751 if (t1 == hpet_readl(HPET_COUNTER)) {
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200752 printk(KERN_WARNING
753 "HPET counter not counting. HPET disabled\n");
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200754 return -ENODEV;
Thomas Gleixner075bcd12007-07-21 17:11:12 +0200755 }
756
John Stultzf12a15b2010-07-13 17:56:27 -0700757 clocksource_register_hz(&clocksource_hpet, (u32)hpet_freq);
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200758 return 0;
759}
760
Jan Beulich396e2c62012-04-02 15:15:55 +0100761static u32 *hpet_boot_cfg;
762
Pavel Machekb02a7f22008-02-05 00:48:13 +0100763/**
764 * hpet_enable - Try to setup the HPET timer. Returns 1 on success.
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200765 */
766int __init hpet_enable(void)
767{
Jan Beulich396e2c62012-04-02 15:15:55 +0100768 u32 hpet_period, cfg, id;
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000769 u64 freq;
Jan Beulich396e2c62012-04-02 15:15:55 +0100770 unsigned int i, last;
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200771
772 if (!is_hpet_capable())
773 return 0;
774
775 hpet_set_mapping();
776
777 /*
778 * Read the period and check for a sane value:
779 */
780 hpet_period = hpet_readl(HPET_PERIOD);
Thomas Gleixnera6825f12008-08-14 12:17:06 +0200781
782 /*
783 * AMD SB700 based systems with spread spectrum enabled use a
784 * SMM based HPET emulation to provide proper frequency
785 * setting. The SMM code is initialized with the first HPET
786 * register access and takes some time to complete. During
787 * this time the config register reads 0xffffffff. We check
788 * for max. 1000 loops whether the config register reads a non
789 * 0xffffffff value to make sure that HPET is up and running
790 * before we go further. A counting loop is safe, as the HPET
791 * access takes thousands of CPU cycles. On non SB700 based
792 * machines this check is only done once and has no side
793 * effects.
794 */
795 for (i = 0; hpet_readl(HPET_CFG) == 0xFFFFFFFF; i++) {
796 if (i == 1000) {
797 printk(KERN_WARNING
798 "HPET config register value = 0xFFFFFFFF. "
799 "Disabling HPET\n");
800 goto out_nohpet;
801 }
802 }
803
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200804 if (hpet_period < HPET_MIN_PERIOD || hpet_period > HPET_MAX_PERIOD)
805 goto out_nohpet;
806
807 /*
Thomas Gleixnerab0e08f2011-05-18 21:33:43 +0000808 * The period is a femto seconds value. Convert it to a
809 * frequency.
810 */
811 freq = FSEC_PER_SEC;
812 do_div(freq, hpet_period);
813 hpet_freq = freq;
814
815 /*
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200816 * Read the HPET ID register to retrieve the IRQ routing
817 * information and the number of channels
818 */
819 id = hpet_readl(HPET_ID);
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100820 hpet_print_config();
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200821
Jan Beulich396e2c62012-04-02 15:15:55 +0100822 last = (id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT;
823
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200824#ifdef CONFIG_HPET_EMULATE_RTC
825 /*
826 * The legacy routing mode needs at least two channels, tick timer
827 * and the rtc emulation channel.
828 */
Jan Beulich396e2c62012-04-02 15:15:55 +0100829 if (!last)
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200830 goto out_nohpet;
831#endif
832
Jan Beulich396e2c62012-04-02 15:15:55 +0100833 cfg = hpet_readl(HPET_CFG);
834 hpet_boot_cfg = kmalloc((last + 2) * sizeof(*hpet_boot_cfg),
835 GFP_KERNEL);
836 if (hpet_boot_cfg)
837 *hpet_boot_cfg = cfg;
838 else
839 pr_warn("HPET initial state will not be saved\n");
840 cfg &= ~(HPET_CFG_ENABLE | HPET_CFG_LEGACY);
Jan Beulich1b38a3a2012-05-25 11:40:09 +0100841 hpet_writel(cfg, HPET_CFG);
Jan Beulich396e2c62012-04-02 15:15:55 +0100842 if (cfg)
843 pr_warn("HPET: Unrecognized bits %#x set in global cfg\n",
844 cfg);
845
846 for (i = 0; i <= last; ++i) {
847 cfg = hpet_readl(HPET_Tn_CFG(i));
848 if (hpet_boot_cfg)
849 hpet_boot_cfg[i + 1] = cfg;
850 cfg &= ~(HPET_TN_ENABLE | HPET_TN_LEVEL | HPET_TN_FSB);
851 hpet_writel(cfg, HPET_Tn_CFG(i));
852 cfg &= ~(HPET_TN_PERIODIC | HPET_TN_PERIODIC_CAP
853 | HPET_TN_64BIT_CAP | HPET_TN_32BIT | HPET_TN_ROUTE
854 | HPET_TN_FSB | HPET_TN_FSB_CAP);
855 if (cfg)
856 pr_warn("HPET: Unrecognized bits %#x set in cfg#%u\n",
857 cfg, i);
858 }
859 hpet_print_config();
860
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200861 if (hpet_clocksource_register())
862 goto out_nohpet;
863
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800864 if (id & HPET_ID_LEGSUP) {
Venki Pallipadi610bf2f2007-10-12 23:04:23 +0200865 hpet_legacy_clockevent_register();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800866 return 1;
867 }
868 return 0;
869
870out_nohpet:
Thomas Gleixner06a24de2007-10-12 23:04:06 +0200871 hpet_clear_mapping();
Janne Kulmalabacbe992008-12-16 13:39:57 +0200872 hpet_address = 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800873 return 0;
874}
875
Thomas Gleixner28769142007-10-12 23:04:06 +0200876/*
877 * Needs to be late, as the reserve_timer code calls kalloc !
878 *
879 * Not a problem on i386 as hpet_enable is called from late_time_init,
880 * but on x86_64 it is necessary !
881 */
882static __init int hpet_late_init(void)
883{
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700884 int cpu;
885
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200886 if (boot_hpet_disable)
Thomas Gleixner28769142007-10-12 23:04:06 +0200887 return -ENODEV;
888
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200889 if (!hpet_address) {
890 if (!force_hpet_address)
891 return -ENODEV;
892
893 hpet_address = force_hpet_address;
894 hpet_enable();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200895 }
896
Jeremy Fitzhardinge39c04b52008-12-16 12:32:23 -0800897 if (!hpet_virt_address)
898 return -ENODEV;
899
Shaohua Li39fe05e2009-08-12 11:16:12 +0800900 if (hpet_readl(HPET_ID) & HPET_ID_LEGSUP)
901 hpet_msi_capability_lookup(2);
902 else
903 hpet_msi_capability_lookup(0);
904
Thomas Gleixner28769142007-10-12 23:04:06 +0200905 hpet_reserve_platform_timers(hpet_readl(HPET_ID));
Andreas Herrmannb98103a2009-02-21 00:09:47 +0100906 hpet_print_config();
Venki Pallipadi59c69f22007-10-12 23:04:23 +0200907
Pallipadi, Venkatesh73472a42010-01-21 11:09:52 -0800908 if (hpet_msi_disable)
909 return 0;
910
Shaohua Li39fe05e2009-08-12 11:16:12 +0800911 if (boot_cpu_has(X86_FEATURE_ARAT))
912 return 0;
913
Srivatsa S. Bhat9014ad22014-03-11 02:08:36 +0530914 cpu_notifier_register_begin();
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700915 for_each_online_cpu(cpu) {
916 hpet_cpuhp_notify(NULL, CPU_ONLINE, (void *)(long)cpu);
917 }
918
919 /* This notifier should be called after workqueue is ready */
Srivatsa S. Bhat9014ad22014-03-11 02:08:36 +0530920 __hotcpu_notifier(hpet_cpuhp_notify, -20);
921 cpu_notifier_register_done();
venkatesh.pallipadi@intel.com26afe5f2008-09-05 18:02:18 -0700922
Thomas Gleixner28769142007-10-12 23:04:06 +0200923 return 0;
924}
925fs_initcall(hpet_late_init);
926
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100927void hpet_disable(void)
928{
Stefano Stabelliniff487802010-07-21 18:32:37 +0100929 if (is_hpet_capable() && hpet_virt_address) {
Jan Beulich396e2c62012-04-02 15:15:55 +0100930 unsigned int cfg = hpet_readl(HPET_CFG), id, last;
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100931
Jan Beulich396e2c62012-04-02 15:15:55 +0100932 if (hpet_boot_cfg)
933 cfg = *hpet_boot_cfg;
934 else if (hpet_legacy_int_enabled) {
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100935 cfg &= ~HPET_CFG_LEGACY;
936 hpet_legacy_int_enabled = 0;
937 }
938 cfg &= ~HPET_CFG_ENABLE;
939 hpet_writel(cfg, HPET_CFG);
Jan Beulich396e2c62012-04-02 15:15:55 +0100940
941 if (!hpet_boot_cfg)
942 return;
943
944 id = hpet_readl(HPET_ID);
945 last = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
946
947 for (id = 0; id <= last; ++id)
948 hpet_writel(hpet_boot_cfg[id + 1], HPET_Tn_CFG(id));
949
950 if (*hpet_boot_cfg & HPET_CFG_ENABLE)
951 hpet_writel(*hpet_boot_cfg, HPET_CFG);
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100952 }
953}
954
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800955#ifdef CONFIG_HPET_EMULATE_RTC
956
957/* HPET in LegacyReplacement Mode eats up RTC interrupt line. When, HPET
958 * is enabled, we support RTC interrupt functionality in software.
959 * RTC has 3 kinds of interrupts:
960 * 1) Update Interrupt - generate an interrupt, every sec, when RTC clock
961 * is updated
962 * 2) Alarm Interrupt - generate an interrupt at a specific time of day
963 * 3) Periodic Interrupt - generate periodic interrupt, with frequencies
964 * 2Hz-8192Hz (2Hz-64Hz for non-root user) (all freqs in powers of 2)
965 * (1) and (2) above are implemented using polling at a frequency of
966 * 64 Hz. The exact frequency is a tradeoff between accuracy and interrupt
967 * overhead. (DEFAULT_RTC_INT_FREQ)
968 * For (3), we use interrupts at 64Hz or user specified periodic
969 * frequency, whichever is higher.
970 */
971#include <linux/mc146818rtc.h>
972#include <linux/rtc.h>
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100973#include <asm/rtc.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800974
975#define DEFAULT_RTC_INT_FREQ 64
976#define DEFAULT_RTC_SHIFT 6
977#define RTC_NUM_INTS 1
978
979static unsigned long hpet_rtc_flags;
David Brownell7e2a31d2008-07-23 21:30:47 -0700980static int hpet_prev_update_sec;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800981static struct rtc_time hpet_alarm_time;
982static unsigned long hpet_pie_count;
Pavel Emelyanovff08f762009-02-04 13:40:31 +0300983static u32 hpet_t1_cmp;
Jan Beulich5946fa32009-08-19 08:44:24 +0100984static u32 hpet_default_delta;
985static u32 hpet_pie_delta;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800986static unsigned long hpet_pie_limit;
987
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100988static rtc_irq_handler irq_handler;
989
990/*
Pavel Emelyanovff08f762009-02-04 13:40:31 +0300991 * Check that the hpet counter c1 is ahead of the c2
992 */
993static inline int hpet_cnt_ahead(u32 c1, u32 c2)
994{
995 return (s32)(c2 - c1) < 0;
996}
997
998/*
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +0100999 * Registers a IRQ handler.
1000 */
1001int hpet_register_irq_handler(rtc_irq_handler handler)
1002{
1003 if (!is_hpet_enabled())
1004 return -ENODEV;
1005 if (irq_handler)
1006 return -EBUSY;
1007
1008 irq_handler = handler;
1009
1010 return 0;
1011}
1012EXPORT_SYMBOL_GPL(hpet_register_irq_handler);
1013
1014/*
1015 * Deregisters the IRQ handler registered with hpet_register_irq_handler()
1016 * and does cleanup.
1017 */
1018void hpet_unregister_irq_handler(rtc_irq_handler handler)
1019{
1020 if (!is_hpet_enabled())
1021 return;
1022
1023 irq_handler = NULL;
1024 hpet_rtc_flags = 0;
1025}
1026EXPORT_SYMBOL_GPL(hpet_unregister_irq_handler);
1027
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001028/*
1029 * Timer 1 for RTC emulation. We use one shot mode, as periodic mode
1030 * is not supported by all HPET implementations for timer 1.
1031 *
1032 * hpet_rtc_timer_init() is called when the rtc is initialized.
1033 */
1034int hpet_rtc_timer_init(void)
1035{
Jan Beulich5946fa32009-08-19 08:44:24 +01001036 unsigned int cfg, cnt, delta;
1037 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001038
1039 if (!is_hpet_enabled())
1040 return 0;
1041
1042 if (!hpet_default_delta) {
1043 uint64_t clc;
1044
1045 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1046 clc >>= hpet_clockevent.shift + DEFAULT_RTC_SHIFT;
Jan Beulich5946fa32009-08-19 08:44:24 +01001047 hpet_default_delta = clc;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001048 }
1049
1050 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1051 delta = hpet_default_delta;
1052 else
1053 delta = hpet_pie_delta;
1054
1055 local_irq_save(flags);
1056
1057 cnt = delta + hpet_readl(HPET_COUNTER);
1058 hpet_writel(cnt, HPET_T1_CMP);
1059 hpet_t1_cmp = cnt;
1060
1061 cfg = hpet_readl(HPET_T1_CFG);
1062 cfg &= ~HPET_TN_PERIODIC;
1063 cfg |= HPET_TN_ENABLE | HPET_TN_32BIT;
1064 hpet_writel(cfg, HPET_T1_CFG);
1065
1066 local_irq_restore(flags);
1067
1068 return 1;
1069}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001070EXPORT_SYMBOL_GPL(hpet_rtc_timer_init);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001071
Mark Langsdorf2ded6e62011-11-18 16:33:06 +01001072static void hpet_disable_rtc_channel(void)
1073{
1074 unsigned long cfg;
1075 cfg = hpet_readl(HPET_T1_CFG);
1076 cfg &= ~HPET_TN_ENABLE;
1077 hpet_writel(cfg, HPET_T1_CFG);
1078}
1079
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001080/*
1081 * The functions below are called from rtc driver.
1082 * Return 0 if HPET is not being used.
1083 * Otherwise do the necessary changes and return 1.
1084 */
1085int hpet_mask_rtc_irq_bit(unsigned long bit_mask)
1086{
1087 if (!is_hpet_enabled())
1088 return 0;
1089
1090 hpet_rtc_flags &= ~bit_mask;
Mark Langsdorf2ded6e62011-11-18 16:33:06 +01001091 if (unlikely(!hpet_rtc_flags))
1092 hpet_disable_rtc_channel();
1093
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001094 return 1;
1095}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001096EXPORT_SYMBOL_GPL(hpet_mask_rtc_irq_bit);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001097
1098int hpet_set_rtc_irq_bit(unsigned long bit_mask)
1099{
1100 unsigned long oldbits = hpet_rtc_flags;
1101
1102 if (!is_hpet_enabled())
1103 return 0;
1104
1105 hpet_rtc_flags |= bit_mask;
1106
David Brownell7e2a31d2008-07-23 21:30:47 -07001107 if ((bit_mask & RTC_UIE) && !(oldbits & RTC_UIE))
1108 hpet_prev_update_sec = -1;
1109
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001110 if (!oldbits)
1111 hpet_rtc_timer_init();
1112
1113 return 1;
1114}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001115EXPORT_SYMBOL_GPL(hpet_set_rtc_irq_bit);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001116
1117int hpet_set_alarm_time(unsigned char hrs, unsigned char min,
1118 unsigned char sec)
1119{
1120 if (!is_hpet_enabled())
1121 return 0;
1122
1123 hpet_alarm_time.tm_hour = hrs;
1124 hpet_alarm_time.tm_min = min;
1125 hpet_alarm_time.tm_sec = sec;
1126
1127 return 1;
1128}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001129EXPORT_SYMBOL_GPL(hpet_set_alarm_time);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001130
1131int hpet_set_periodic_freq(unsigned long freq)
1132{
1133 uint64_t clc;
1134
1135 if (!is_hpet_enabled())
1136 return 0;
1137
1138 if (freq <= DEFAULT_RTC_INT_FREQ)
1139 hpet_pie_limit = DEFAULT_RTC_INT_FREQ / freq;
1140 else {
1141 clc = (uint64_t) hpet_clockevent.mult * NSEC_PER_SEC;
1142 do_div(clc, freq);
1143 clc >>= hpet_clockevent.shift;
Jan Beulich5946fa32009-08-19 08:44:24 +01001144 hpet_pie_delta = clc;
Alok Katariab4a5e8a2010-03-11 14:00:16 -08001145 hpet_pie_limit = 0;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001146 }
1147 return 1;
1148}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001149EXPORT_SYMBOL_GPL(hpet_set_periodic_freq);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001150
1151int hpet_rtc_dropped_irq(void)
1152{
1153 return is_hpet_enabled();
1154}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001155EXPORT_SYMBOL_GPL(hpet_rtc_dropped_irq);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001156
1157static void hpet_rtc_timer_reinit(void)
1158{
Mark Langsdorf2ded6e62011-11-18 16:33:06 +01001159 unsigned int delta;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001160 int lost_ints = -1;
1161
Mark Langsdorf2ded6e62011-11-18 16:33:06 +01001162 if (unlikely(!hpet_rtc_flags))
1163 hpet_disable_rtc_channel();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001164
1165 if (!(hpet_rtc_flags & RTC_PIE) || hpet_pie_limit)
1166 delta = hpet_default_delta;
1167 else
1168 delta = hpet_pie_delta;
1169
1170 /*
1171 * Increment the comparator value until we are ahead of the
1172 * current count.
1173 */
1174 do {
1175 hpet_t1_cmp += delta;
1176 hpet_writel(hpet_t1_cmp, HPET_T1_CMP);
1177 lost_ints++;
Pavel Emelyanovff08f762009-02-04 13:40:31 +03001178 } while (!hpet_cnt_ahead(hpet_t1_cmp, hpet_readl(HPET_COUNTER)));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001179
1180 if (lost_ints) {
1181 if (hpet_rtc_flags & RTC_PIE)
1182 hpet_pie_count += lost_ints;
1183 if (printk_ratelimit())
David Brownell7e2a31d2008-07-23 21:30:47 -07001184 printk(KERN_WARNING "hpet1: lost %d rtc interrupts\n",
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001185 lost_ints);
1186 }
1187}
1188
1189irqreturn_t hpet_rtc_interrupt(int irq, void *dev_id)
1190{
1191 struct rtc_time curr_time;
1192 unsigned long rtc_int_flag = 0;
1193
1194 hpet_rtc_timer_reinit();
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001195 memset(&curr_time, 0, sizeof(struct rtc_time));
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001196
1197 if (hpet_rtc_flags & (RTC_UIE | RTC_AIE))
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001198 get_rtc_time(&curr_time);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001199
1200 if (hpet_rtc_flags & RTC_UIE &&
1201 curr_time.tm_sec != hpet_prev_update_sec) {
David Brownell7e2a31d2008-07-23 21:30:47 -07001202 if (hpet_prev_update_sec >= 0)
1203 rtc_int_flag = RTC_UF;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001204 hpet_prev_update_sec = curr_time.tm_sec;
1205 }
1206
1207 if (hpet_rtc_flags & RTC_PIE &&
1208 ++hpet_pie_count >= hpet_pie_limit) {
1209 rtc_int_flag |= RTC_PF;
1210 hpet_pie_count = 0;
1211 }
1212
Bernhard Walle8ee291f2008-01-15 16:44:38 +01001213 if (hpet_rtc_flags & RTC_AIE &&
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001214 (curr_time.tm_sec == hpet_alarm_time.tm_sec) &&
1215 (curr_time.tm_min == hpet_alarm_time.tm_min) &&
1216 (curr_time.tm_hour == hpet_alarm_time.tm_hour))
1217 rtc_int_flag |= RTC_AF;
1218
1219 if (rtc_int_flag) {
1220 rtc_int_flag |= (RTC_IRQF | (RTC_NUM_INTS << 8));
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001221 if (irq_handler)
1222 irq_handler(rtc_int_flag, dev_id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001223 }
1224 return IRQ_HANDLED;
1225}
Bernhard Walle1bdbdaa2008-01-30 13:33:28 +01001226EXPORT_SYMBOL_GPL(hpet_rtc_interrupt);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001227#endif