blob: 0eb90184515fe132c42b3fb8459f55671c71bd8d [file] [log] [blame]
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -06001/*
2 * SGI RTC clock/timer routines.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Copyright (c) 2009 Silicon Graphics, Inc. All Rights Reserved.
19 * Copyright (c) Dimitri Sivanich
20 */
21#include <linux/clockchips.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060023
24#include <asm/uv/uv_mmrs.h>
25#include <asm/uv/uv_hub.h>
26#include <asm/uv/bios.h>
27#include <asm/uv/uv.h>
Dimitri Sivanich1400b3f2009-03-04 16:02:46 -060028#include <asm/apic.h>
29#include <asm/cpu.h>
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060030
31#define RTC_NAME "sgi_rtc"
32
Coly Lic5428e92009-04-22 23:21:56 +080033static cycle_t uv_read_rtc(struct clocksource *cs);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060034static int uv_rtc_next_event(unsigned long, struct clock_event_device *);
35static void uv_rtc_timer_setup(enum clock_event_mode,
36 struct clock_event_device *);
37
38static struct clocksource clocksource_uv = {
39 .name = RTC_NAME,
40 .rating = 400,
41 .read = uv_read_rtc,
42 .mask = (cycle_t)UVH_RTC_REAL_TIME_CLOCK_MASK,
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060043 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
44};
45
46static struct clock_event_device clock_event_device_uv = {
47 .name = RTC_NAME,
48 .features = CLOCK_EVT_FEAT_ONESHOT,
49 .shift = 20,
50 .rating = 400,
51 .irq = -1,
52 .set_next_event = uv_rtc_next_event,
53 .set_mode = uv_rtc_timer_setup,
54 .event_handler = NULL,
55};
56
57static DEFINE_PER_CPU(struct clock_event_device, cpu_ced);
58
59/* There is one of these allocated per node */
60struct uv_rtc_timer_head {
61 spinlock_t lock;
62 /* next cpu waiting for timer, local node relative: */
63 int next_cpu;
64 /* number of cpus on this node: */
65 int ncpus;
66 struct {
67 int lcpu; /* systemwide logical cpu number */
68 u64 expires; /* next timer expiration for this cpu */
69 } cpu[1];
70};
71
72/*
73 * Access to uv_rtc_timer_head via blade id.
74 */
75static struct uv_rtc_timer_head **blade_info __read_mostly;
76
Dimitri Sivanich8c28de42009-10-14 09:18:48 -050077static int uv_rtc_evt_enable;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060078
79/*
80 * Hardware interface routines
81 */
82
83/* Send IPIs to another node */
84static void uv_rtc_send_IPI(int cpu)
85{
86 unsigned long apicid, val;
87 int pnode;
88
Dimitri Sivanich1400b3f2009-03-04 16:02:46 -060089 apicid = cpu_physical_id(cpu);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060090 pnode = uv_apicid_to_pnode(apicid);
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -060091 apicid |= uv_apicid_hibits;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060092 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
93 (apicid << UVH_IPI_INT_APIC_ID_SHFT) |
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050094 (X86_PLATFORM_IPI_VECTOR << UVH_IPI_INT_VECTOR_SHFT);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -060095
96 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
97}
98
99/* Check for an RTC interrupt pending */
100static int uv_intr_pending(int pnode)
101{
102 return uv_read_global_mmr64(pnode, UVH_EVENT_OCCURRED0) &
103 UVH_EVENT_OCCURRED0_RTC1_MASK;
104}
105
106/* Setup interrupt and return non-zero if early expiration occurred. */
107static int uv_setup_intr(int cpu, u64 expires)
108{
109 u64 val;
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -0600110 unsigned long apicid = cpu_physical_id(cpu) | uv_apicid_hibits;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600111 int pnode = uv_cpu_to_pnode(cpu);
112
113 uv_write_global_mmr64(pnode, UVH_RTC1_INT_CONFIG,
114 UVH_RTC1_INT_CONFIG_M_MASK);
115 uv_write_global_mmr64(pnode, UVH_INT_CMPB, -1L);
116
117 uv_write_global_mmr64(pnode, UVH_EVENT_OCCURRED0_ALIAS,
118 UVH_EVENT_OCCURRED0_RTC1_MASK);
119
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500120 val = (X86_PLATFORM_IPI_VECTOR << UVH_RTC1_INT_CONFIG_VECTOR_SHFT) |
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -0600121 ((u64)apicid << UVH_RTC1_INT_CONFIG_APIC_ID_SHFT);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600122
123 /* Set configuration */
124 uv_write_global_mmr64(pnode, UVH_RTC1_INT_CONFIG, val);
125 /* Initialize comparator value */
126 uv_write_global_mmr64(pnode, UVH_INT_CMPB, expires);
127
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500128 if (uv_read_rtc(NULL) <= expires)
129 return 0;
130
131 return !uv_intr_pending(pnode);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600132}
133
134/*
135 * Per-cpu timer tracking routines
136 */
137
138static __init void uv_rtc_deallocate_timers(void)
139{
140 int bid;
141
142 for_each_possible_blade(bid) {
143 kfree(blade_info[bid]);
144 }
145 kfree(blade_info);
146}
147
148/* Allocate per-node list of cpu timer expiration times. */
149static __init int uv_rtc_allocate_timers(void)
150{
151 int cpu;
152
153 blade_info = kmalloc(uv_possible_blades * sizeof(void *), GFP_KERNEL);
154 if (!blade_info)
155 return -ENOMEM;
156 memset(blade_info, 0, uv_possible_blades * sizeof(void *));
157
158 for_each_present_cpu(cpu) {
159 int nid = cpu_to_node(cpu);
160 int bid = uv_cpu_to_blade_id(cpu);
161 int bcpu = uv_cpu_hub_info(cpu)->blade_processor_id;
162 struct uv_rtc_timer_head *head = blade_info[bid];
163
164 if (!head) {
165 head = kmalloc_node(sizeof(struct uv_rtc_timer_head) +
166 (uv_blade_nr_possible_cpus(bid) *
167 2 * sizeof(u64)),
168 GFP_KERNEL, nid);
169 if (!head) {
170 uv_rtc_deallocate_timers();
171 return -ENOMEM;
172 }
173 spin_lock_init(&head->lock);
174 head->ncpus = uv_blade_nr_possible_cpus(bid);
175 head->next_cpu = -1;
176 blade_info[bid] = head;
177 }
178
179 head->cpu[bcpu].lcpu = cpu;
180 head->cpu[bcpu].expires = ULLONG_MAX;
181 }
182
183 return 0;
184}
185
186/* Find and set the next expiring timer. */
187static void uv_rtc_find_next_timer(struct uv_rtc_timer_head *head, int pnode)
188{
189 u64 lowest = ULLONG_MAX;
190 int c, bcpu = -1;
191
192 head->next_cpu = -1;
193 for (c = 0; c < head->ncpus; c++) {
194 u64 exp = head->cpu[c].expires;
195 if (exp < lowest) {
196 bcpu = c;
197 lowest = exp;
198 }
199 }
200 if (bcpu >= 0) {
201 head->next_cpu = bcpu;
202 c = head->cpu[bcpu].lcpu;
203 if (uv_setup_intr(c, lowest))
204 /* If we didn't set it up in time, trigger */
205 uv_rtc_send_IPI(c);
206 } else {
207 uv_write_global_mmr64(pnode, UVH_RTC1_INT_CONFIG,
208 UVH_RTC1_INT_CONFIG_M_MASK);
209 }
210}
211
212/*
213 * Set expiration time for current cpu.
214 *
215 * Returns 1 if we missed the expiration time.
216 */
217static int uv_rtc_set_timer(int cpu, u64 expires)
218{
219 int pnode = uv_cpu_to_pnode(cpu);
220 int bid = uv_cpu_to_blade_id(cpu);
221 struct uv_rtc_timer_head *head = blade_info[bid];
222 int bcpu = uv_cpu_hub_info(cpu)->blade_processor_id;
223 u64 *t = &head->cpu[bcpu].expires;
224 unsigned long flags;
225 int next_cpu;
226
227 spin_lock_irqsave(&head->lock, flags);
228
229 next_cpu = head->next_cpu;
230 *t = expires;
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500231
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600232 /* Will this one be next to go off? */
233 if (next_cpu < 0 || bcpu == next_cpu ||
234 expires < head->cpu[next_cpu].expires) {
235 head->next_cpu = bcpu;
236 if (uv_setup_intr(cpu, expires)) {
237 *t = ULLONG_MAX;
238 uv_rtc_find_next_timer(head, pnode);
239 spin_unlock_irqrestore(&head->lock, flags);
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500240 return -ETIME;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600241 }
242 }
243
244 spin_unlock_irqrestore(&head->lock, flags);
245 return 0;
246}
247
248/*
249 * Unset expiration time for current cpu.
250 *
251 * Returns 1 if this timer was pending.
252 */
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500253static int uv_rtc_unset_timer(int cpu, int force)
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600254{
255 int pnode = uv_cpu_to_pnode(cpu);
256 int bid = uv_cpu_to_blade_id(cpu);
257 struct uv_rtc_timer_head *head = blade_info[bid];
258 int bcpu = uv_cpu_hub_info(cpu)->blade_processor_id;
259 u64 *t = &head->cpu[bcpu].expires;
260 unsigned long flags;
261 int rc = 0;
262
263 spin_lock_irqsave(&head->lock, flags);
264
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500265 if ((head->next_cpu == bcpu && uv_read_rtc(NULL) >= *t) || force)
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600266 rc = 1;
267
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500268 if (rc) {
269 *t = ULLONG_MAX;
270 /* Was the hardware setup for this timer? */
271 if (head->next_cpu == bcpu)
272 uv_rtc_find_next_timer(head, pnode);
273 }
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600274
275 spin_unlock_irqrestore(&head->lock, flags);
276
277 return rc;
278}
279
280
281/*
282 * Kernel interface routines.
283 */
284
285/*
286 * Read the RTC.
Dimitri Sivanichaca3bb52010-01-22 09:41:40 -0600287 *
288 * Starting with HUB rev 2.0, the UV RTC register is replicated across all
289 * cachelines of it's own page. This allows faster simultaneous reads
290 * from a given socket.
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600291 */
Coly Lic5428e92009-04-22 23:21:56 +0800292static cycle_t uv_read_rtc(struct clocksource *cs)
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600293{
Dimitri Sivanichaca3bb52010-01-22 09:41:40 -0600294 unsigned long offset;
295
296 if (uv_get_min_hub_revision_id() == 1)
297 offset = 0;
298 else
299 offset = (uv_blade_processor_id() * L1_CACHE_BYTES) % PAGE_SIZE;
300
301 return (cycle_t)uv_read_local_mmr(UVH_RTC | offset);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600302}
303
304/*
305 * Program the next event, relative to now
306 */
307static int uv_rtc_next_event(unsigned long delta,
308 struct clock_event_device *ced)
309{
310 int ced_cpu = cpumask_first(ced->cpumask);
311
Coly Lic5428e92009-04-22 23:21:56 +0800312 return uv_rtc_set_timer(ced_cpu, delta + uv_read_rtc(NULL));
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600313}
314
315/*
316 * Setup the RTC timer in oneshot mode
317 */
318static void uv_rtc_timer_setup(enum clock_event_mode mode,
319 struct clock_event_device *evt)
320{
321 int ced_cpu = cpumask_first(evt->cpumask);
322
323 switch (mode) {
324 case CLOCK_EVT_MODE_PERIODIC:
325 case CLOCK_EVT_MODE_ONESHOT:
326 case CLOCK_EVT_MODE_RESUME:
327 /* Nothing to do here yet */
328 break;
329 case CLOCK_EVT_MODE_UNUSED:
330 case CLOCK_EVT_MODE_SHUTDOWN:
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500331 uv_rtc_unset_timer(ced_cpu, 1);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600332 break;
333 }
334}
335
336static void uv_rtc_interrupt(void)
337{
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600338 int cpu = smp_processor_id();
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500339 struct clock_event_device *ced = &per_cpu(cpu_ced, cpu);
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600340
341 if (!ced || !ced->event_handler)
342 return;
343
Dimitri Sivaniche47938b2009-10-14 09:16:30 -0500344 if (uv_rtc_unset_timer(cpu, 0) != 1)
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600345 return;
346
347 ced->event_handler(ced);
348}
349
Dimitri Sivanich8c28de42009-10-14 09:18:48 -0500350static int __init uv_enable_evt_rtc(char *str)
351{
352 uv_rtc_evt_enable = 1;
353
354 return 1;
355}
356__setup("uvrtcevt", uv_enable_evt_rtc);
357
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600358static __init void uv_rtc_register_clockevents(struct work_struct *dummy)
359{
360 struct clock_event_device *ced = &__get_cpu_var(cpu_ced);
361
362 *ced = clock_event_device_uv;
363 ced->cpumask = cpumask_of(smp_processor_id());
364 clockevents_register_device(ced);
365}
366
367static __init int uv_rtc_setup_clock(void)
368{
369 int rc;
370
Dimitri Sivanich581f2022009-11-20 15:48:26 -0600371 if (!is_uv_system())
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600372 return -ENODEV;
373
Dimitri Sivanich581f2022009-11-20 15:48:26 -0600374 /* If single blade, prefer tsc */
375 if (uv_num_possible_blades() == 1)
376 clocksource_uv.rating = 250;
377
John Stultzb01cc1b2010-04-26 19:03:05 -0700378 rc = clocksource_register_hz(&clocksource_uv, sn_rtc_cycles_per_second);
Dimitri Sivanich8c28de42009-10-14 09:18:48 -0500379 if (rc)
380 printk(KERN_INFO "UV RTC clocksource failed rc %d\n", rc);
381 else
382 printk(KERN_INFO "UV RTC clocksource registered freq %lu MHz\n",
383 sn_rtc_cycles_per_second/(unsigned long)1E6);
384
Dimitri Sivanich581f2022009-11-20 15:48:26 -0600385 if (rc || !uv_rtc_evt_enable || x86_platform_ipi_callback)
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600386 return rc;
Dimitri Sivanich8c28de42009-10-14 09:18:48 -0500387
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600388 /* Setup and register clockevents */
389 rc = uv_rtc_allocate_timers();
Dimitri Sivanichd5991ff2009-10-14 09:21:03 -0500390 if (rc)
391 goto error;
392
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500393 x86_platform_ipi_callback = uv_rtc_interrupt;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600394
395 clock_event_device_uv.mult = div_sc(sn_rtc_cycles_per_second,
396 NSEC_PER_SEC, clock_event_device_uv.shift);
397
398 clock_event_device_uv.min_delta_ns = NSEC_PER_SEC /
399 sn_rtc_cycles_per_second;
400
401 clock_event_device_uv.max_delta_ns = clocksource_uv.mask *
402 (NSEC_PER_SEC / sn_rtc_cycles_per_second);
403
404 rc = schedule_on_each_cpu(uv_rtc_register_clockevents);
405 if (rc) {
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500406 x86_platform_ipi_callback = NULL;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600407 uv_rtc_deallocate_timers();
Dimitri Sivanichd5991ff2009-10-14 09:21:03 -0500408 goto error;
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600409 }
410
Dimitri Sivanichd5991ff2009-10-14 09:21:03 -0500411 printk(KERN_INFO "UV RTC clockevents registered\n");
412
413 return 0;
414
415error:
416 clocksource_unregister(&clocksource_uv);
417 printk(KERN_INFO "UV RTC clockevents failed rc %d\n", rc);
418
Dimitri Sivanich5ab5ab32009-03-04 12:59:18 -0600419 return rc;
420}
421arch_initcall(uv_rtc_setup_clock);