blob: 4965285612483f6646100dcae43184b43e9c8246 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/time.c
3 * Time of day based timer functions.
4 *
5 * S390 version
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02006 * Copyright IBM Corp. 1999, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Author(s): Hartmut Penner (hp@de.ibm.com),
8 * Martin Schwidefsky (schwidefsky@de.ibm.com),
9 * Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
10 *
11 * Derived from "arch/i386/kernel/time.c"
12 * Copyright (C) 1991, 1992, 1995 Linus Torvalds
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/param.h>
20#include <linux/string.h>
21#include <linux/mm.h>
22#include <linux/interrupt.h>
Heiko Carstens750887d2008-12-25 13:38:37 +010023#include <linux/cpu.h>
24#include <linux/stop_machine.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/time.h>
Ralf Baechle3367b992007-05-08 00:27:52 -070026#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/delay.h>
28#include <linux/init.h>
29#include <linux/smp.h>
30#include <linux/types.h>
31#include <linux/profile.h>
32#include <linux/timex.h>
33#include <linux/notifier.h>
Martin Schwidefskydc64bef2006-10-06 16:38:48 +020034#include <linux/clocksource.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020035#include <linux/clockchips.h>
Martin Schwidefskyd2fec592008-07-14 09:58:56 +020036#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38#include <asm/delay.h>
39#include <asm/s390_ext.h>
40#include <asm/div64.h>
Martin Schwidefskyb0206322008-12-25 13:38:36 +010041#include <asm/vdso.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020043#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/timer.h>
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010045#include <asm/etr.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020046#include <asm/cio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/* change this if you have some constant time drift */
49#define USECS_PER_JIFFY ((unsigned long) 1000000/HZ)
50#define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
51
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010052/* The value of the TOD clock for 1.1.1970. */
53#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Create a small time difference between the timer interrupts
57 * on the different cpus to avoid lock contention.
58 */
59#define CPU_DEVIATION (smp_processor_id() << 12)
60
61#define TICK_SIZE tick
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static ext_int_info_t ext_int_info_cc;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010064static ext_int_info_t ext_int_etr_cc;
Christian Borntraeger8107d822008-11-27 11:05:56 +010065static u64 sched_clock_base_cc;
Heiko Carstens5a62b192008-04-17 07:46:25 +020066
67static DEFINE_PER_CPU(struct clock_event_device, comparators);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Scheduler clock - returns current time in nanosec units.
71 */
72unsigned long long sched_clock(void)
73{
Christian Borntraeger8107d822008-11-27 11:05:56 +010074 return ((get_clock_xt() - sched_clock_base_cc) * 125) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Jan Glauber32f65f22006-02-01 03:06:33 -080077/*
78 * Monotonic_clock - returns # of nanoseconds passed since time_init()
79 */
80unsigned long long monotonic_clock(void)
81{
82 return sched_clock();
83}
84EXPORT_SYMBOL(monotonic_clock);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void tod_to_timeval(__u64 todval, struct timespec *xtime)
87{
88 unsigned long long sec;
89
90 sec = todval >> 12;
91 do_div(sec, 1000000);
92 xtime->tv_sec = sec;
93 todval -= (sec * 1000000) << 12;
94 xtime->tv_nsec = ((todval * 1000) >> 12);
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#ifdef CONFIG_PROFILING
Heiko Carstens5a489b92006-10-06 16:38:35 +020098#define s390_do_profile() profile_tick(CPU_PROFILING)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
Heiko Carstens5a489b92006-10-06 16:38:35 +0200100#define s390_do_profile() do { ; } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif /* CONFIG_PROFILING */
102
Heiko Carstens5a62b192008-04-17 07:46:25 +0200103void clock_comparator_work(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200105 struct clock_event_device *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Heiko Carstens5a62b192008-04-17 07:46:25 +0200107 S390_lowcore.clock_comparator = -1ULL;
108 set_clock_comparator(S390_lowcore.clock_comparator);
109 cd = &__get_cpu_var(comparators);
110 cd->event_handler(cd);
Heiko Carstens5a489b92006-10-06 16:38:35 +0200111 s390_do_profile();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
Heiko Carstens5a62b192008-04-17 07:46:25 +0200115 * Fixup the clock comparator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200117static void fixup_clock_comparator(unsigned long long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200119 /* If nobody is waiting there's nothing to fix. */
120 if (S390_lowcore.clock_comparator == -1ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200122 S390_lowcore.clock_comparator += delta;
123 set_clock_comparator(S390_lowcore.clock_comparator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Heiko Carstens5a62b192008-04-17 07:46:25 +0200126static int s390_next_event(unsigned long delta,
127 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200129 S390_lowcore.clock_comparator = get_clock() + delta;
130 set_clock_comparator(S390_lowcore.clock_comparator);
131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Heiko Carstens5a62b192008-04-17 07:46:25 +0200134static void s390_set_mode(enum clock_event_mode mode,
135 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100137}
138
139/*
140 * Set up lowcore and control register of the current cpu to
141 * enable TOD clock and clock comparator interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
143void init_cpu_timer(void)
144{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200145 struct clock_event_device *cd;
146 int cpu;
147
148 S390_lowcore.clock_comparator = -1ULL;
149 set_clock_comparator(S390_lowcore.clock_comparator);
150
151 cpu = smp_processor_id();
152 cd = &per_cpu(comparators, cpu);
153 cd->name = "comparator";
154 cd->features = CLOCK_EVT_FEAT_ONESHOT;
155 cd->mult = 16777;
156 cd->shift = 12;
157 cd->min_delta_ns = 1;
158 cd->max_delta_ns = LONG_MAX;
159 cd->rating = 400;
160 cd->cpumask = cpumask_of_cpu(cpu);
161 cd->set_next_event = s390_next_event;
162 cd->set_mode = s390_set_mode;
163
164 clockevents_register_device(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100166 /* Enable clock comparator timer interrupt. */
167 __ctl_set_bit(0,11);
168
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200169 /* Always allow the timing alert external interrupt. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100170 __ctl_set_bit(0, 4);
171}
172
173static void clock_comparator_interrupt(__u16 code)
174{
Heiko Carstensd3d238c2008-10-03 21:54:59 +0200175 if (S390_lowcore.clock_comparator == -1ULL)
176 set_clock_comparator(S390_lowcore.clock_comparator);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100177}
178
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200179static void etr_timing_alert(struct etr_irq_parm *);
180static void stp_timing_alert(struct stp_irq_parm *);
181
182static void timing_alert_interrupt(__u16 code)
183{
184 if (S390_lowcore.ext_params & 0x00c40000)
185 etr_timing_alert((struct etr_irq_parm *)
186 &S390_lowcore.ext_params);
187 if (S390_lowcore.ext_params & 0x00038000)
188 stp_timing_alert((struct stp_irq_parm *)
189 &S390_lowcore.ext_params);
190}
191
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100192static void etr_reset(void);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200193static void stp_reset(void);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100194
195/*
196 * Get the TOD clock running.
197 */
198static u64 __init reset_tod_clock(void)
199{
200 u64 time;
201
202 etr_reset();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200203 stp_reset();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100204 if (store_clock(&time) == 0)
205 return time;
206 /* TOD clock not running. Set the clock to Unix Epoch. */
207 if (set_clock(TOD_UNIX_EPOCH) != 0 || store_clock(&time) != 0)
208 panic("TOD clock not operational.");
209
210 return TOD_UNIX_EPOCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200213static cycle_t read_tod_clock(void)
214{
215 return get_clock();
216}
217
218static struct clocksource clocksource_tod = {
219 .name = "tod",
Christian Borntraegerd2cb0e62007-11-05 11:10:14 +0100220 .rating = 400,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200221 .read = read_tod_clock,
222 .mask = -1ULL,
223 .mult = 1000,
224 .shift = 12,
Thomas Gleixnercc02d802007-02-16 01:27:39 -0800225 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200226};
227
228
Martin Schwidefskyb0206322008-12-25 13:38:36 +0100229void update_vsyscall(struct timespec *wall_time, struct clocksource *clock)
230{
231 if (clock != &clocksource_tod)
232 return;
233
234 /* Make userspace gettimeofday spin until we're done. */
235 ++vdso_data->tb_update_count;
236 smp_wmb();
237 vdso_data->xtime_tod_stamp = clock->cycle_last;
238 vdso_data->xtime_clock_sec = xtime.tv_sec;
239 vdso_data->xtime_clock_nsec = xtime.tv_nsec;
240 vdso_data->wtom_clock_sec = wall_to_monotonic.tv_sec;
241 vdso_data->wtom_clock_nsec = wall_to_monotonic.tv_nsec;
242 smp_wmb();
243 ++vdso_data->tb_update_count;
244}
245
246extern struct timezone sys_tz;
247
248void update_vsyscall_tz(void)
249{
250 /* Make userspace gettimeofday spin until we're done. */
251 ++vdso_data->tb_update_count;
252 smp_wmb();
253 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
254 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
255 smp_wmb();
256 ++vdso_data->tb_update_count;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
260 * Initialize the TOD clock and the CPU timer of
261 * the boot cpu.
262 */
263void __init time_init(void)
264{
Christian Borntraeger8107d822008-11-27 11:05:56 +0100265 sched_clock_base_cc = reset_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* set xtime */
Christian Borntraeger8107d822008-11-27 11:05:56 +0100268 tod_to_timeval(sched_clock_base_cc - TOD_UNIX_EPOCH, &xtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 set_normalized_timespec(&wall_to_monotonic,
270 -xtime.tv_sec, -xtime.tv_nsec);
271
272 /* request the clock comparator external interrupt */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100273 if (register_early_external_interrupt(0x1004,
274 clock_comparator_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 &ext_int_info_cc) != 0)
276 panic("Couldn't request external interrupt 0x1004");
277
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200278 if (clocksource_register(&clocksource_tod) != 0)
279 panic("Could not register TOD clock source");
280
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200281 /* request the timing alert external interrupt */
282 if (register_early_external_interrupt(0x1406,
283 timing_alert_interrupt,
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100284 &ext_int_etr_cc) != 0)
285 panic("Couldn't request external interrupt 0x1406");
286
287 /* Enable TOD clock interrupts on the boot cpu. */
288 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#ifdef CONFIG_VIRT_TIMER
291 vtime_init();
292#endif
293}
294
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100295/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200296 * The time is "clock". old is what we think the time is.
297 * Adjust the value by a multiple of jiffies and add the delta to ntp.
298 * "delay" is an approximation how long the synchronization took. If
299 * the time correction is positive, then "delay" is subtracted from
300 * the time difference and only the remaining part is passed to ntp.
301 */
302static unsigned long long adjust_time(unsigned long long old,
303 unsigned long long clock,
304 unsigned long long delay)
305{
306 unsigned long long delta, ticks;
307 struct timex adjust;
308
309 if (clock > old) {
310 /* It is later than we thought. */
311 delta = ticks = clock - old;
312 delta = ticks = (delta < delay) ? 0 : delta - delay;
313 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
314 adjust.offset = ticks * (1000000 / HZ);
315 } else {
316 /* It is earlier than we thought. */
317 delta = ticks = old - clock;
318 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
319 delta = -delta;
320 adjust.offset = -ticks * (1000000 / HZ);
321 }
Christian Borntraeger8107d822008-11-27 11:05:56 +0100322 sched_clock_base_cc += delta;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200323 if (adjust.offset != 0) {
324 printk(KERN_NOTICE "etr: time adjusted by %li micro-seconds\n",
325 adjust.offset);
326 adjust.modes = ADJ_OFFSET_SINGLESHOT;
327 do_adjtimex(&adjust);
328 }
329 return delta;
330}
331
332static DEFINE_PER_CPU(atomic_t, clock_sync_word);
333static unsigned long clock_sync_flags;
334
335#define CLOCK_SYNC_HAS_ETR 0
336#define CLOCK_SYNC_HAS_STP 1
337#define CLOCK_SYNC_ETR 2
338#define CLOCK_SYNC_STP 3
339
340/*
341 * The synchronous get_clock function. It will write the current clock
342 * value to the clock pointer and return 0 if the clock is in sync with
343 * the external time source. If the clock mode is local it will return
344 * -ENOSYS and -EAGAIN if the clock is not in sync with the external
345 * reference.
346 */
347int get_sync_clock(unsigned long long *clock)
348{
349 atomic_t *sw_ptr;
350 unsigned int sw0, sw1;
351
352 sw_ptr = &get_cpu_var(clock_sync_word);
353 sw0 = atomic_read(sw_ptr);
354 *clock = get_clock();
355 sw1 = atomic_read(sw_ptr);
356 put_cpu_var(clock_sync_sync);
357 if (sw0 == sw1 && (sw0 & 0x80000000U))
358 /* Success: time is in sync. */
359 return 0;
360 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags) &&
361 !test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
362 return -ENOSYS;
363 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags) &&
364 !test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
365 return -EACCES;
366 return -EAGAIN;
367}
368EXPORT_SYMBOL(get_sync_clock);
369
370/*
371 * Make get_sync_clock return -EAGAIN.
372 */
373static void disable_sync_clock(void *dummy)
374{
375 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
376 /*
377 * Clear the in-sync bit 2^31. All get_sync_clock calls will
378 * fail until the sync bit is turned back on. In addition
379 * increase the "sequence" counter to avoid the race of an
380 * etr event and the complete recovery against get_sync_clock.
381 */
382 atomic_clear_mask(0x80000000, sw_ptr);
383 atomic_inc(sw_ptr);
384}
385
386/*
387 * Make get_sync_clock return 0 again.
388 * Needs to be called from a context disabled for preemption.
389 */
390static void enable_sync_clock(void)
391{
392 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
393 atomic_set_mask(0x80000000, sw_ptr);
394}
395
Heiko Carstens750887d2008-12-25 13:38:37 +0100396/* Single threaded workqueue used for etr and stp sync events */
397static struct workqueue_struct *time_sync_wq;
398
399static void __init time_init_wq(void)
400{
401 if (!time_sync_wq)
402 time_sync_wq = create_singlethread_workqueue("timesync");
403}
404
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200405/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100406 * External Time Reference (ETR) code.
407 */
408static int etr_port0_online;
409static int etr_port1_online;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200410static int etr_steai_available;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100411
412static int __init early_parse_etr(char *p)
413{
414 if (strncmp(p, "off", 3) == 0)
415 etr_port0_online = etr_port1_online = 0;
416 else if (strncmp(p, "port0", 5) == 0)
417 etr_port0_online = 1;
418 else if (strncmp(p, "port1", 5) == 0)
419 etr_port1_online = 1;
420 else if (strncmp(p, "on", 2) == 0)
421 etr_port0_online = etr_port1_online = 1;
422 return 0;
423}
424early_param("etr", early_parse_etr);
425
426enum etr_event {
427 ETR_EVENT_PORT0_CHANGE,
428 ETR_EVENT_PORT1_CHANGE,
429 ETR_EVENT_PORT_ALERT,
430 ETR_EVENT_SYNC_CHECK,
431 ETR_EVENT_SWITCH_LOCAL,
432 ETR_EVENT_UPDATE,
433};
434
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100435/*
436 * Valid bit combinations of the eacr register are (x = don't care):
437 * e0 e1 dp p0 p1 ea es sl
438 * 0 0 x 0 0 0 0 0 initial, disabled state
439 * 0 0 x 0 1 1 0 0 port 1 online
440 * 0 0 x 1 0 1 0 0 port 0 online
441 * 0 0 x 1 1 1 0 0 both ports online
442 * 0 1 x 0 1 1 0 0 port 1 online and usable, ETR or PPS mode
443 * 0 1 x 0 1 1 0 1 port 1 online, usable and ETR mode
444 * 0 1 x 0 1 1 1 0 port 1 online, usable, PPS mode, in-sync
445 * 0 1 x 0 1 1 1 1 port 1 online, usable, ETR mode, in-sync
446 * 0 1 x 1 1 1 0 0 both ports online, port 1 usable
447 * 0 1 x 1 1 1 1 0 both ports online, port 1 usable, PPS mode, in-sync
448 * 0 1 x 1 1 1 1 1 both ports online, port 1 usable, ETR mode, in-sync
449 * 1 0 x 1 0 1 0 0 port 0 online and usable, ETR or PPS mode
450 * 1 0 x 1 0 1 0 1 port 0 online, usable and ETR mode
451 * 1 0 x 1 0 1 1 0 port 0 online, usable, PPS mode, in-sync
452 * 1 0 x 1 0 1 1 1 port 0 online, usable, ETR mode, in-sync
453 * 1 0 x 1 1 1 0 0 both ports online, port 0 usable
454 * 1 0 x 1 1 1 1 0 both ports online, port 0 usable, PPS mode, in-sync
455 * 1 0 x 1 1 1 1 1 both ports online, port 0 usable, ETR mode, in-sync
456 * 1 1 x 1 1 1 1 0 both ports online & usable, ETR, in-sync
457 * 1 1 x 1 1 1 1 1 both ports online & usable, ETR, in-sync
458 */
459static struct etr_eacr etr_eacr;
460static u64 etr_tolec; /* time of last eacr update */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100461static struct etr_aib etr_port0;
462static int etr_port0_uptodate;
463static struct etr_aib etr_port1;
464static int etr_port1_uptodate;
465static unsigned long etr_events;
466static struct timer_list etr_timer;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100467
468static void etr_timeout(unsigned long dummy);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200469static void etr_work_fn(struct work_struct *work);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100470static DEFINE_MUTEX(etr_work_mutex);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200471static DECLARE_WORK(etr_work, etr_work_fn);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100472
473/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100474 * Reset ETR attachment.
475 */
476static void etr_reset(void)
477{
478 etr_eacr = (struct etr_eacr) {
479 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
480 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
481 .es = 0, .sl = 0 };
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200482 if (etr_setr(&etr_eacr) == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100483 etr_tolec = get_clock();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200484 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
485 } else if (etr_port0_online || etr_port1_online) {
486 printk(KERN_WARNING "Running on non ETR capable "
487 "machine, only local mode available.\n");
488 etr_port0_online = etr_port1_online = 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100489 }
490}
491
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200492static int __init etr_init(void)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100493{
494 struct etr_aib aib;
495
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200496 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200497 return 0;
Heiko Carstens750887d2008-12-25 13:38:37 +0100498 time_init_wq();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100499 /* Check if this machine has the steai instruction. */
500 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200501 etr_steai_available = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100502 setup_timer(&etr_timer, etr_timeout, 0UL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100503 if (etr_port0_online) {
504 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100505 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100506 }
507 if (etr_port1_online) {
508 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100509 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100510 }
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200511 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100512}
513
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200514arch_initcall(etr_init);
515
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100516/*
517 * Two sorts of ETR machine checks. The architecture reads:
518 * "When a machine-check niterruption occurs and if a switch-to-local or
519 * ETR-sync-check interrupt request is pending but disabled, this pending
520 * disabled interruption request is indicated and is cleared".
521 * Which means that we can get etr_switch_to_local events from the machine
522 * check handler although the interruption condition is disabled. Lovely..
523 */
524
525/*
526 * Switch to local machine check. This is called when the last usable
527 * ETR port goes inactive. After switch to local the clock is not in sync.
528 */
529void etr_switch_to_local(void)
530{
531 if (!etr_eacr.sl)
532 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200533 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
534 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100535 set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100536 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100537}
538
539/*
540 * ETR sync check machine check. This is called when the ETR OTE and the
541 * local clock OTE are farther apart than the ETR sync check tolerance.
542 * After a ETR sync check the clock is not in sync. The machine check
543 * is broadcasted to all cpus at the same time.
544 */
545void etr_sync_check(void)
546{
547 if (!etr_eacr.es)
548 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200549 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
550 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100551 set_bit(ETR_EVENT_SYNC_CHECK, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100552 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100553}
554
555/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200556 * ETR timing alert. There are two causes:
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100557 * 1) port state change, check the usability of the port
558 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
559 * sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
560 * or ETR-data word 4 (edf4) has changed.
561 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200562static void etr_timing_alert(struct etr_irq_parm *intparm)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100563{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100564 if (intparm->pc0)
565 /* ETR port 0 state change. */
566 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
567 if (intparm->pc1)
568 /* ETR port 1 state change. */
569 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
570 if (intparm->eai)
571 /*
572 * ETR port alert on either port 0, 1 or both.
573 * Both ports are not up-to-date now.
574 */
575 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100576 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100577}
578
579static void etr_timeout(unsigned long dummy)
580{
581 set_bit(ETR_EVENT_UPDATE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100582 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100583}
584
585/*
586 * Check if the etr mode is pss.
587 */
588static inline int etr_mode_is_pps(struct etr_eacr eacr)
589{
590 return eacr.es && !eacr.sl;
591}
592
593/*
594 * Check if the etr mode is etr.
595 */
596static inline int etr_mode_is_etr(struct etr_eacr eacr)
597{
598 return eacr.es && eacr.sl;
599}
600
601/*
602 * Check if the port can be used for TOD synchronization.
603 * For PPS mode the port has to receive OTEs. For ETR mode
604 * the port has to receive OTEs, the ETR stepping bit has to
605 * be zero and the validity bits for data frame 1, 2, and 3
606 * have to be 1.
607 */
608static int etr_port_valid(struct etr_aib *aib, int port)
609{
610 unsigned int psc;
611
612 /* Check that this port is receiving OTEs. */
613 if (aib->tsp == 0)
614 return 0;
615
616 psc = port ? aib->esw.psc1 : aib->esw.psc0;
617 if (psc == etr_lpsc_pps_mode)
618 return 1;
619 if (psc == etr_lpsc_operational_step)
620 return !aib->esw.y && aib->slsw.v1 &&
621 aib->slsw.v2 && aib->slsw.v3;
622 return 0;
623}
624
625/*
626 * Check if two ports are on the same network.
627 */
628static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
629{
630 // FIXME: any other fields we have to compare?
631 return aib1->edf1.net_id == aib2->edf1.net_id;
632}
633
634/*
635 * Wrapper for etr_stei that converts physical port states
636 * to logical port states to be consistent with the output
637 * of stetr (see etr_psc vs. etr_lpsc).
638 */
639static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
640{
641 BUG_ON(etr_steai(aib, func) != 0);
642 /* Convert port state to logical port state. */
643 if (aib->esw.psc0 == 1)
644 aib->esw.psc0 = 2;
645 else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
646 aib->esw.psc0 = 1;
647 if (aib->esw.psc1 == 1)
648 aib->esw.psc1 = 2;
649 else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
650 aib->esw.psc1 = 1;
651}
652
653/*
654 * Check if the aib a2 is still connected to the same attachment as
655 * aib a1, the etv values differ by one and a2 is valid.
656 */
657static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
658{
659 int state_a1, state_a2;
660
661 /* Paranoia check: e0/e1 should better be the same. */
662 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
663 a1->esw.eacr.e1 != a2->esw.eacr.e1)
664 return 0;
665
666 /* Still connected to the same etr ? */
667 state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
668 state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
669 if (state_a1 == etr_lpsc_operational_step) {
670 if (state_a2 != etr_lpsc_operational_step ||
671 a1->edf1.net_id != a2->edf1.net_id ||
672 a1->edf1.etr_id != a2->edf1.etr_id ||
673 a1->edf1.etr_pn != a2->edf1.etr_pn)
674 return 0;
675 } else if (state_a2 != etr_lpsc_pps_mode)
676 return 0;
677
678 /* The ETV value of a2 needs to be ETV of a1 + 1. */
679 if (a1->edf2.etv + 1 != a2->edf2.etv)
680 return 0;
681
682 if (!etr_port_valid(a2, p))
683 return 0;
684
685 return 1;
686}
687
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200688struct clock_sync_data {
Heiko Carstens750887d2008-12-25 13:38:37 +0100689 atomic_t cpus;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200690 int in_sync;
691 unsigned long long fixup_cc;
Heiko Carstens750887d2008-12-25 13:38:37 +0100692 int etr_port;
693 struct etr_aib *etr_aib;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200694};
Heiko Carstens5a62b192008-04-17 07:46:25 +0200695
Heiko Carstens750887d2008-12-25 13:38:37 +0100696static void clock_sync_cpu(struct clock_sync_data *sync)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100697{
Heiko Carstens750887d2008-12-25 13:38:37 +0100698 atomic_dec(&sync->cpus);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200699 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100700 /*
701 * This looks like a busy wait loop but it isn't. etr_sync_cpus
702 * is called on all other cpus while the TOD clocks is stopped.
703 * __udelay will stop the cpu on an enabled wait psw until the
704 * TOD is running again.
705 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200706 while (sync->in_sync == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100707 __udelay(1);
Heiko Carstens6c732de2007-02-21 10:55:15 +0100708 /*
709 * A different cpu changes *in_sync. Therefore use
710 * barrier() to force memory access.
711 */
712 barrier();
713 }
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200714 if (sync->in_sync != 1)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100715 /* Didn't work. Clear per-cpu in sync bit again. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200716 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100717 /*
718 * This round of TOD syncing is done. Set the clock comparator
719 * to the next tick and let the processor continue.
720 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200721 fixup_clock_comparator(sync->fixup_cc);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100722}
723
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100724/*
725 * Sync the TOD clock using the port refered to by aibp. This port
726 * has to be enabled and the other port has to be disabled. The
727 * last eacr update has to be more than 1.6 seconds in the past.
728 */
Heiko Carstens750887d2008-12-25 13:38:37 +0100729static int etr_sync_clock(void *data)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100730{
Heiko Carstens750887d2008-12-25 13:38:37 +0100731 static int first;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200732 unsigned long long clock, old_clock, delay, delta;
Heiko Carstens750887d2008-12-25 13:38:37 +0100733 struct clock_sync_data *etr_sync;
734 struct etr_aib *sync_port, *aib;
735 int port;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100736 int rc;
737
Heiko Carstens750887d2008-12-25 13:38:37 +0100738 etr_sync = data;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100739
Heiko Carstens750887d2008-12-25 13:38:37 +0100740 if (xchg(&first, 1) == 1) {
741 /* Slave */
742 clock_sync_cpu(etr_sync);
743 return 0;
744 }
745
746 /* Wait until all other cpus entered the sync function. */
747 while (atomic_read(&etr_sync->cpus) != 0)
748 cpu_relax();
749
750 port = etr_sync->etr_port;
751 aib = etr_sync->etr_aib;
752 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200753 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100754
755 /* Set clock to next OTE. */
756 __ctl_set_bit(14, 21);
757 __ctl_set_bit(0, 29);
758 clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200759 old_clock = get_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100760 if (set_clock(clock) == 0) {
761 __udelay(1); /* Wait for the clock to start. */
762 __ctl_clear_bit(0, 29);
763 __ctl_clear_bit(14, 21);
764 etr_stetr(aib);
765 /* Adjust Linux timing variables. */
766 delay = (unsigned long long)
767 (aib->edf2.etv - sync_port->edf2.etv) << 32;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200768 delta = adjust_time(old_clock, clock, delay);
Heiko Carstens750887d2008-12-25 13:38:37 +0100769 etr_sync->fixup_cc = delta;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200770 fixup_clock_comparator(delta);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100771 /* Verify that the clock is properly set. */
772 if (!etr_aib_follows(sync_port, aib, port)) {
773 /* Didn't work. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200774 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +0100775 etr_sync->in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100776 rc = -EAGAIN;
777 } else {
Heiko Carstens750887d2008-12-25 13:38:37 +0100778 etr_sync->in_sync = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100779 rc = 0;
780 }
781 } else {
782 /* Could not set the clock ?!? */
783 __ctl_clear_bit(0, 29);
784 __ctl_clear_bit(14, 21);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200785 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +0100786 etr_sync->in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100787 rc = -EAGAIN;
788 }
Heiko Carstens750887d2008-12-25 13:38:37 +0100789 xchg(&first, 0);
790 return rc;
791}
792
793static int etr_sync_clock_stop(struct etr_aib *aib, int port)
794{
795 struct clock_sync_data etr_sync;
796 struct etr_aib *sync_port;
797 int follows;
798 int rc;
799
800 /* Check if the current aib is adjacent to the sync port aib. */
801 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
802 follows = etr_aib_follows(sync_port, aib, port);
803 memcpy(sync_port, aib, sizeof(*aib));
804 if (!follows)
805 return -EAGAIN;
806 memset(&etr_sync, 0, sizeof(etr_sync));
807 etr_sync.etr_aib = aib;
808 etr_sync.etr_port = port;
809 get_online_cpus();
810 atomic_set(&etr_sync.cpus, num_online_cpus() - 1);
811 rc = stop_machine(etr_sync_clock, &etr_sync, &cpu_online_map);
812 put_online_cpus();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100813 return rc;
814}
815
816/*
817 * Handle the immediate effects of the different events.
818 * The port change event is used for online/offline changes.
819 */
820static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
821{
822 if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
823 eacr.es = 0;
824 if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
825 eacr.es = eacr.sl = 0;
826 if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
827 etr_port0_uptodate = etr_port1_uptodate = 0;
828
829 if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
830 if (eacr.e0)
831 /*
832 * Port change of an enabled port. We have to
833 * assume that this can have caused an stepping
834 * port switch.
835 */
836 etr_tolec = get_clock();
837 eacr.p0 = etr_port0_online;
838 if (!eacr.p0)
839 eacr.e0 = 0;
840 etr_port0_uptodate = 0;
841 }
842 if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
843 if (eacr.e1)
844 /*
845 * Port change of an enabled port. We have to
846 * assume that this can have caused an stepping
847 * port switch.
848 */
849 etr_tolec = get_clock();
850 eacr.p1 = etr_port1_online;
851 if (!eacr.p1)
852 eacr.e1 = 0;
853 etr_port1_uptodate = 0;
854 }
855 clear_bit(ETR_EVENT_UPDATE, &etr_events);
856 return eacr;
857}
858
859/*
860 * Set up a timer that expires after the etr_tolec + 1.6 seconds if
861 * one of the ports needs an update.
862 */
863static void etr_set_tolec_timeout(unsigned long long now)
864{
865 unsigned long micros;
866
867 if ((!etr_eacr.p0 || etr_port0_uptodate) &&
868 (!etr_eacr.p1 || etr_port1_uptodate))
869 return;
870 micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
871 micros = (micros > 1600000) ? 0 : 1600000 - micros;
872 mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
873}
874
875/*
876 * Set up a time that expires after 1/2 second.
877 */
878static void etr_set_sync_timeout(void)
879{
880 mod_timer(&etr_timer, jiffies + HZ/2);
881}
882
883/*
884 * Update the aib information for one or both ports.
885 */
886static struct etr_eacr etr_handle_update(struct etr_aib *aib,
887 struct etr_eacr eacr)
888{
889 /* With both ports disabled the aib information is useless. */
890 if (!eacr.e0 && !eacr.e1)
891 return eacr;
892
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200893 /* Update port0 or port1 with aib stored in etr_work_fn. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100894 if (aib->esw.q == 0) {
895 /* Information for port 0 stored. */
896 if (eacr.p0 && !etr_port0_uptodate) {
897 etr_port0 = *aib;
898 if (etr_port0_online)
899 etr_port0_uptodate = 1;
900 }
901 } else {
902 /* Information for port 1 stored. */
903 if (eacr.p1 && !etr_port1_uptodate) {
904 etr_port1 = *aib;
905 if (etr_port0_online)
906 etr_port1_uptodate = 1;
907 }
908 }
909
910 /*
911 * Do not try to get the alternate port aib if the clock
912 * is not in sync yet.
913 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200914 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags) && !eacr.es)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100915 return eacr;
916
917 /*
918 * If steai is available we can get the information about
919 * the other port immediately. If only stetr is available the
920 * data-port bit toggle has to be used.
921 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200922 if (etr_steai_available) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100923 if (eacr.p0 && !etr_port0_uptodate) {
924 etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
925 etr_port0_uptodate = 1;
926 }
927 if (eacr.p1 && !etr_port1_uptodate) {
928 etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
929 etr_port1_uptodate = 1;
930 }
931 } else {
932 /*
933 * One port was updated above, if the other
934 * port is not uptodate toggle dp bit.
935 */
936 if ((eacr.p0 && !etr_port0_uptodate) ||
937 (eacr.p1 && !etr_port1_uptodate))
938 eacr.dp ^= 1;
939 else
940 eacr.dp = 0;
941 }
942 return eacr;
943}
944
945/*
946 * Write new etr control register if it differs from the current one.
947 * Return 1 if etr_tolec has been updated as well.
948 */
949static void etr_update_eacr(struct etr_eacr eacr)
950{
951 int dp_changed;
952
953 if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
954 /* No change, return. */
955 return;
956 /*
957 * The disable of an active port of the change of the data port
958 * bit can/will cause a change in the data port.
959 */
960 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
961 (etr_eacr.dp ^ eacr.dp) != 0;
962 etr_eacr = eacr;
963 etr_setr(&etr_eacr);
964 if (dp_changed)
965 etr_tolec = get_clock();
966}
967
968/*
Heiko Carstens750887d2008-12-25 13:38:37 +0100969 * ETR work. In this function you'll find the main logic. In
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100970 * particular this is the only function that calls etr_update_eacr(),
971 * it "controls" the etr control register.
972 */
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200973static void etr_work_fn(struct work_struct *work)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100974{
975 unsigned long long now;
976 struct etr_eacr eacr;
977 struct etr_aib aib;
978 int sync_port;
979
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100980 /* prevent multiple execution. */
981 mutex_lock(&etr_work_mutex);
982
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100983 /* Create working copy of etr_eacr. */
984 eacr = etr_eacr;
985
986 /* Check for the different events and their immediate effects. */
987 eacr = etr_handle_events(eacr);
988
989 /* Check if ETR is supposed to be active. */
990 eacr.ea = eacr.p0 || eacr.p1;
991 if (!eacr.ea) {
992 /* Both ports offline. Reset everything. */
993 eacr.dp = eacr.es = eacr.sl = 0;
Ingo Molnar1a781a72008-07-15 21:55:59 +0200994 on_each_cpu(disable_sync_clock, NULL, 1);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100995 del_timer_sync(&etr_timer);
996 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200997 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100998 goto out_unlock;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100999 }
1000
1001 /* Store aib to get the current ETR status word. */
1002 BUG_ON(etr_stetr(&aib) != 0);
1003 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
1004 now = get_clock();
1005
1006 /*
1007 * Update the port information if the last stepping port change
1008 * or data port change is older than 1.6 seconds.
1009 */
1010 if (now >= etr_tolec + (1600000 << 12))
1011 eacr = etr_handle_update(&aib, eacr);
1012
1013 /*
1014 * Select ports to enable. The prefered synchronization mode is PPS.
1015 * If a port can be enabled depends on a number of things:
1016 * 1) The port needs to be online and uptodate. A port is not
1017 * disabled just because it is not uptodate, but it is only
1018 * enabled if it is uptodate.
1019 * 2) The port needs to have the same mode (pps / etr).
1020 * 3) The port needs to be usable -> etr_port_valid() == 1
1021 * 4) To enable the second port the clock needs to be in sync.
1022 * 5) If both ports are useable and are ETR ports, the network id
1023 * has to be the same.
1024 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
1025 */
1026 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
1027 eacr.sl = 0;
1028 eacr.e0 = 1;
1029 if (!etr_mode_is_pps(etr_eacr))
1030 eacr.es = 0;
1031 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
1032 eacr.e1 = 0;
1033 // FIXME: uptodate checks ?
1034 else if (etr_port0_uptodate && etr_port1_uptodate)
1035 eacr.e1 = 1;
1036 sync_port = (etr_port0_uptodate &&
1037 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001038 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1039 eacr.sl = 0;
1040 eacr.e0 = 0;
1041 eacr.e1 = 1;
1042 if (!etr_mode_is_pps(etr_eacr))
1043 eacr.es = 0;
1044 sync_port = (etr_port1_uptodate &&
1045 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001046 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1047 eacr.sl = 1;
1048 eacr.e0 = 1;
1049 if (!etr_mode_is_etr(etr_eacr))
1050 eacr.es = 0;
1051 if (!eacr.es || !eacr.p1 ||
1052 aib.esw.psc1 != etr_lpsc_operational_alt)
1053 eacr.e1 = 0;
1054 else if (etr_port0_uptodate && etr_port1_uptodate &&
1055 etr_compare_network(&etr_port0, &etr_port1))
1056 eacr.e1 = 1;
1057 sync_port = (etr_port0_uptodate &&
1058 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001059 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1060 eacr.sl = 1;
1061 eacr.e0 = 0;
1062 eacr.e1 = 1;
1063 if (!etr_mode_is_etr(etr_eacr))
1064 eacr.es = 0;
1065 sync_port = (etr_port1_uptodate &&
1066 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001067 } else {
1068 /* Both ports not usable. */
1069 eacr.es = eacr.sl = 0;
1070 sync_port = -1;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001071 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001072 }
1073
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001074 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1075 eacr.es = 0;
1076
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001077 /*
1078 * If the clock is in sync just update the eacr and return.
1079 * If there is no valid sync port wait for a port update.
1080 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001081 if (test_bit(CLOCK_SYNC_STP, &clock_sync_flags) ||
1082 eacr.es || sync_port < 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001083 etr_update_eacr(eacr);
1084 etr_set_tolec_timeout(now);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001085 goto out_unlock;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001086 }
1087
1088 /*
1089 * Prepare control register for clock syncing
1090 * (reset data port bit, set sync check control.
1091 */
1092 eacr.dp = 0;
1093 eacr.es = 1;
1094
1095 /*
1096 * Update eacr and try to synchronize the clock. If the update
1097 * of eacr caused a stepping port switch (or if we have to
1098 * assume that a stepping port switch has occured) or the
1099 * clock syncing failed, reset the sync check control bit
1100 * and set up a timer to try again after 0.5 seconds
1101 */
1102 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001103 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001104 if (now < etr_tolec + (1600000 << 12) ||
Heiko Carstens750887d2008-12-25 13:38:37 +01001105 etr_sync_clock_stop(&aib, sync_port) != 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001106 /* Sync failed. Try again in 1/2 second. */
1107 eacr.es = 0;
1108 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001109 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001110 etr_set_sync_timeout();
1111 } else
1112 etr_set_tolec_timeout(now);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001113out_unlock:
1114 mutex_unlock(&etr_work_mutex);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001115}
1116
1117/*
1118 * Sysfs interface functions
1119 */
1120static struct sysdev_class etr_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001121 .name = "etr",
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001122};
1123
1124static struct sys_device etr_port0_dev = {
1125 .id = 0,
1126 .cls = &etr_sysclass,
1127};
1128
1129static struct sys_device etr_port1_dev = {
1130 .id = 1,
1131 .cls = &etr_sysclass,
1132};
1133
1134/*
1135 * ETR class attributes
1136 */
1137static ssize_t etr_stepping_port_show(struct sysdev_class *class, char *buf)
1138{
1139 return sprintf(buf, "%i\n", etr_port0.esw.p);
1140}
1141
1142static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1143
1144static ssize_t etr_stepping_mode_show(struct sysdev_class *class, char *buf)
1145{
1146 char *mode_str;
1147
1148 if (etr_mode_is_pps(etr_eacr))
1149 mode_str = "pps";
1150 else if (etr_mode_is_etr(etr_eacr))
1151 mode_str = "etr";
1152 else
1153 mode_str = "local";
1154 return sprintf(buf, "%s\n", mode_str);
1155}
1156
1157static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1158
1159/*
1160 * ETR port attributes
1161 */
1162static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1163{
1164 if (dev == &etr_port0_dev)
1165 return etr_port0_online ? &etr_port0 : NULL;
1166 else
1167 return etr_port1_online ? &etr_port1 : NULL;
1168}
1169
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001170static ssize_t etr_online_show(struct sys_device *dev,
1171 struct sysdev_attribute *attr,
1172 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001173{
1174 unsigned int online;
1175
1176 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1177 return sprintf(buf, "%i\n", online);
1178}
1179
1180static ssize_t etr_online_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001181 struct sysdev_attribute *attr,
1182 const char *buf, size_t count)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001183{
1184 unsigned int value;
1185
1186 value = simple_strtoul(buf, NULL, 0);
1187 if (value != 0 && value != 1)
1188 return -EINVAL;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001189 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1190 return -EOPNOTSUPP;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001191 if (dev == &etr_port0_dev) {
1192 if (etr_port0_online == value)
1193 return count; /* Nothing to do. */
1194 etr_port0_online = value;
1195 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +01001196 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001197 } else {
1198 if (etr_port1_online == value)
1199 return count; /* Nothing to do. */
1200 etr_port1_online = value;
1201 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +01001202 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001203 }
1204 return count;
1205}
1206
1207static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1208
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001209static ssize_t etr_stepping_control_show(struct sys_device *dev,
1210 struct sysdev_attribute *attr,
1211 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001212{
1213 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1214 etr_eacr.e0 : etr_eacr.e1);
1215}
1216
1217static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1218
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001219static ssize_t etr_mode_code_show(struct sys_device *dev,
1220 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001221{
1222 if (!etr_port0_online && !etr_port1_online)
1223 /* Status word is not uptodate if both ports are offline. */
1224 return -ENODATA;
1225 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1226 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1227}
1228
1229static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1230
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001231static ssize_t etr_untuned_show(struct sys_device *dev,
1232 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001233{
1234 struct etr_aib *aib = etr_aib_from_dev(dev);
1235
1236 if (!aib || !aib->slsw.v1)
1237 return -ENODATA;
1238 return sprintf(buf, "%i\n", aib->edf1.u);
1239}
1240
1241static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1242
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001243static ssize_t etr_network_id_show(struct sys_device *dev,
1244 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001245{
1246 struct etr_aib *aib = etr_aib_from_dev(dev);
1247
1248 if (!aib || !aib->slsw.v1)
1249 return -ENODATA;
1250 return sprintf(buf, "%i\n", aib->edf1.net_id);
1251}
1252
1253static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1254
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001255static ssize_t etr_id_show(struct sys_device *dev,
1256 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001257{
1258 struct etr_aib *aib = etr_aib_from_dev(dev);
1259
1260 if (!aib || !aib->slsw.v1)
1261 return -ENODATA;
1262 return sprintf(buf, "%i\n", aib->edf1.etr_id);
1263}
1264
1265static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1266
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001267static ssize_t etr_port_number_show(struct sys_device *dev,
1268 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001269{
1270 struct etr_aib *aib = etr_aib_from_dev(dev);
1271
1272 if (!aib || !aib->slsw.v1)
1273 return -ENODATA;
1274 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1275}
1276
1277static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1278
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001279static ssize_t etr_coupled_show(struct sys_device *dev,
1280 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001281{
1282 struct etr_aib *aib = etr_aib_from_dev(dev);
1283
1284 if (!aib || !aib->slsw.v3)
1285 return -ENODATA;
1286 return sprintf(buf, "%i\n", aib->edf3.c);
1287}
1288
1289static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1290
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001291static ssize_t etr_local_time_show(struct sys_device *dev,
1292 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001293{
1294 struct etr_aib *aib = etr_aib_from_dev(dev);
1295
1296 if (!aib || !aib->slsw.v3)
1297 return -ENODATA;
1298 return sprintf(buf, "%i\n", aib->edf3.blto);
1299}
1300
1301static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1302
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001303static ssize_t etr_utc_offset_show(struct sys_device *dev,
1304 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001305{
1306 struct etr_aib *aib = etr_aib_from_dev(dev);
1307
1308 if (!aib || !aib->slsw.v3)
1309 return -ENODATA;
1310 return sprintf(buf, "%i\n", aib->edf3.buo);
1311}
1312
1313static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1314
1315static struct sysdev_attribute *etr_port_attributes[] = {
1316 &attr_online,
1317 &attr_stepping_control,
1318 &attr_state_code,
1319 &attr_untuned,
1320 &attr_network,
1321 &attr_id,
1322 &attr_port,
1323 &attr_coupled,
1324 &attr_local_time,
1325 &attr_utc_offset,
1326 NULL
1327};
1328
1329static int __init etr_register_port(struct sys_device *dev)
1330{
1331 struct sysdev_attribute **attr;
1332 int rc;
1333
1334 rc = sysdev_register(dev);
1335 if (rc)
1336 goto out;
1337 for (attr = etr_port_attributes; *attr; attr++) {
1338 rc = sysdev_create_file(dev, *attr);
1339 if (rc)
1340 goto out_unreg;
1341 }
1342 return 0;
1343out_unreg:
1344 for (; attr >= etr_port_attributes; attr--)
1345 sysdev_remove_file(dev, *attr);
1346 sysdev_unregister(dev);
1347out:
1348 return rc;
1349}
1350
1351static void __init etr_unregister_port(struct sys_device *dev)
1352{
1353 struct sysdev_attribute **attr;
1354
1355 for (attr = etr_port_attributes; *attr; attr++)
1356 sysdev_remove_file(dev, *attr);
1357 sysdev_unregister(dev);
1358}
1359
1360static int __init etr_init_sysfs(void)
1361{
1362 int rc;
1363
1364 rc = sysdev_class_register(&etr_sysclass);
1365 if (rc)
1366 goto out;
1367 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1368 if (rc)
1369 goto out_unreg_class;
1370 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1371 if (rc)
1372 goto out_remove_stepping_port;
1373 rc = etr_register_port(&etr_port0_dev);
1374 if (rc)
1375 goto out_remove_stepping_mode;
1376 rc = etr_register_port(&etr_port1_dev);
1377 if (rc)
1378 goto out_remove_port0;
1379 return 0;
1380
1381out_remove_port0:
1382 etr_unregister_port(&etr_port0_dev);
1383out_remove_stepping_mode:
1384 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1385out_remove_stepping_port:
1386 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1387out_unreg_class:
1388 sysdev_class_unregister(&etr_sysclass);
1389out:
1390 return rc;
1391}
1392
1393device_initcall(etr_init_sysfs);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001394
1395/*
1396 * Server Time Protocol (STP) code.
1397 */
1398static int stp_online;
1399static struct stp_sstpi stp_info;
1400static void *stp_page;
1401
1402static void stp_work_fn(struct work_struct *work);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001403static DEFINE_MUTEX(stp_work_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001404static DECLARE_WORK(stp_work, stp_work_fn);
1405
1406static int __init early_parse_stp(char *p)
1407{
1408 if (strncmp(p, "off", 3) == 0)
1409 stp_online = 0;
1410 else if (strncmp(p, "on", 2) == 0)
1411 stp_online = 1;
1412 return 0;
1413}
1414early_param("stp", early_parse_stp);
1415
1416/*
1417 * Reset STP attachment.
1418 */
Heiko Carstens8f847002008-08-01 16:39:19 +02001419static void __init stp_reset(void)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001420{
1421 int rc;
1422
1423 stp_page = alloc_bootmem_pages(PAGE_SIZE);
1424 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky4a672cf2008-10-10 21:33:29 +02001425 if (rc == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001426 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1427 else if (stp_online) {
1428 printk(KERN_WARNING "Running on non STP capable machine.\n");
1429 free_bootmem((unsigned long) stp_page, PAGE_SIZE);
1430 stp_page = NULL;
1431 stp_online = 0;
1432 }
1433}
1434
1435static int __init stp_init(void)
1436{
Heiko Carstens750887d2008-12-25 13:38:37 +01001437 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1438 return 0;
1439 time_init_wq();
1440 if (!stp_online)
1441 return 0;
1442 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001443 return 0;
1444}
1445
1446arch_initcall(stp_init);
1447
1448/*
1449 * STP timing alert. There are three causes:
1450 * 1) timing status change
1451 * 2) link availability change
1452 * 3) time control parameter change
1453 * In all three cases we are only interested in the clock source state.
1454 * If a STP clock source is now available use it.
1455 */
1456static void stp_timing_alert(struct stp_irq_parm *intparm)
1457{
1458 if (intparm->tsc || intparm->lac || intparm->tcpc)
Heiko Carstens750887d2008-12-25 13:38:37 +01001459 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001460}
1461
1462/*
1463 * STP sync check machine check. This is called when the timing state
1464 * changes from the synchronized state to the unsynchronized state.
1465 * After a STP sync check the clock is not in sync. The machine check
1466 * is broadcasted to all cpus at the same time.
1467 */
1468void stp_sync_check(void)
1469{
1470 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1471 return;
1472 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001473 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001474}
1475
1476/*
1477 * STP island condition machine check. This is called when an attached
1478 * server attempts to communicate over an STP link and the servers
1479 * have matching CTN ids and have a valid stratum-1 configuration
1480 * but the configurations do not match.
1481 */
1482void stp_island_check(void)
1483{
1484 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1485 return;
1486 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001487 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001488}
1489
Heiko Carstens750887d2008-12-25 13:38:37 +01001490
1491static int stp_sync_clock(void *data)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001492{
Heiko Carstens750887d2008-12-25 13:38:37 +01001493 static int first;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001494 unsigned long long old_clock, delta;
Heiko Carstens750887d2008-12-25 13:38:37 +01001495 struct clock_sync_data *stp_sync;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001496 int rc;
1497
Heiko Carstens750887d2008-12-25 13:38:37 +01001498 stp_sync = data;
1499
1500 if (xchg(&first, 1) == 1) {
1501 /* Slave */
1502 clock_sync_cpu(stp_sync);
1503 return 0;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001504 }
1505
Heiko Carstens750887d2008-12-25 13:38:37 +01001506 /* Wait until all other cpus entered the sync function. */
1507 while (atomic_read(&stp_sync->cpus) != 0)
1508 cpu_relax();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001509
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001510 enable_sync_clock();
1511
1512 set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1513 if (test_and_clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
Heiko Carstens750887d2008-12-25 13:38:37 +01001514 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001515
1516 rc = 0;
1517 if (stp_info.todoff[0] || stp_info.todoff[1] ||
1518 stp_info.todoff[2] || stp_info.todoff[3] ||
1519 stp_info.tmd != 2) {
1520 old_clock = get_clock();
1521 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1522 if (rc == 0) {
1523 delta = adjust_time(old_clock, get_clock(), 0);
1524 fixup_clock_comparator(delta);
1525 rc = chsc_sstpi(stp_page, &stp_info,
1526 sizeof(struct stp_sstpi));
1527 if (rc == 0 && stp_info.tmd != 2)
1528 rc = -EAGAIN;
1529 }
1530 }
1531 if (rc) {
1532 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001533 stp_sync->in_sync = -EAGAIN;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001534 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1535 if (etr_port0_online || etr_port1_online)
Heiko Carstens750887d2008-12-25 13:38:37 +01001536 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001537 } else
Heiko Carstens750887d2008-12-25 13:38:37 +01001538 stp_sync->in_sync = 1;
1539 xchg(&first, 0);
1540 return 0;
1541}
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001542
Heiko Carstens750887d2008-12-25 13:38:37 +01001543/*
1544 * STP work. Check for the STP state and take over the clock
1545 * synchronization if the STP clock source is usable.
1546 */
1547static void stp_work_fn(struct work_struct *work)
1548{
1549 struct clock_sync_data stp_sync;
1550 int rc;
1551
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001552 /* prevent multiple execution. */
1553 mutex_lock(&stp_work_mutex);
1554
Heiko Carstens750887d2008-12-25 13:38:37 +01001555 if (!stp_online) {
1556 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001557 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001558 }
1559
1560 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1561 if (rc)
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001562 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001563
1564 rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1565 if (rc || stp_info.c == 0)
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001566 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001567
1568 memset(&stp_sync, 0, sizeof(stp_sync));
1569 get_online_cpus();
1570 atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
1571 stop_machine(stp_sync_clock, &stp_sync, &cpu_online_map);
1572 put_online_cpus();
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001573
1574out_unlock:
1575 mutex_unlock(&stp_work_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001576}
1577
1578/*
1579 * STP class sysfs interface functions
1580 */
1581static struct sysdev_class stp_sysclass = {
1582 .name = "stp",
1583};
1584
1585static ssize_t stp_ctn_id_show(struct sysdev_class *class, char *buf)
1586{
1587 if (!stp_online)
1588 return -ENODATA;
1589 return sprintf(buf, "%016llx\n",
1590 *(unsigned long long *) stp_info.ctnid);
1591}
1592
1593static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1594
1595static ssize_t stp_ctn_type_show(struct sysdev_class *class, char *buf)
1596{
1597 if (!stp_online)
1598 return -ENODATA;
1599 return sprintf(buf, "%i\n", stp_info.ctn);
1600}
1601
1602static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1603
1604static ssize_t stp_dst_offset_show(struct sysdev_class *class, char *buf)
1605{
1606 if (!stp_online || !(stp_info.vbits & 0x2000))
1607 return -ENODATA;
1608 return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1609}
1610
1611static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1612
1613static ssize_t stp_leap_seconds_show(struct sysdev_class *class, char *buf)
1614{
1615 if (!stp_online || !(stp_info.vbits & 0x8000))
1616 return -ENODATA;
1617 return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1618}
1619
1620static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1621
1622static ssize_t stp_stratum_show(struct sysdev_class *class, char *buf)
1623{
1624 if (!stp_online)
1625 return -ENODATA;
1626 return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1627}
1628
1629static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1630
1631static ssize_t stp_time_offset_show(struct sysdev_class *class, char *buf)
1632{
1633 if (!stp_online || !(stp_info.vbits & 0x0800))
1634 return -ENODATA;
1635 return sprintf(buf, "%i\n", (int) stp_info.tto);
1636}
1637
1638static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1639
1640static ssize_t stp_time_zone_offset_show(struct sysdev_class *class, char *buf)
1641{
1642 if (!stp_online || !(stp_info.vbits & 0x4000))
1643 return -ENODATA;
1644 return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1645}
1646
1647static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1648 stp_time_zone_offset_show, NULL);
1649
1650static ssize_t stp_timing_mode_show(struct sysdev_class *class, char *buf)
1651{
1652 if (!stp_online)
1653 return -ENODATA;
1654 return sprintf(buf, "%i\n", stp_info.tmd);
1655}
1656
1657static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1658
1659static ssize_t stp_timing_state_show(struct sysdev_class *class, char *buf)
1660{
1661 if (!stp_online)
1662 return -ENODATA;
1663 return sprintf(buf, "%i\n", stp_info.tst);
1664}
1665
1666static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1667
1668static ssize_t stp_online_show(struct sysdev_class *class, char *buf)
1669{
1670 return sprintf(buf, "%i\n", stp_online);
1671}
1672
1673static ssize_t stp_online_store(struct sysdev_class *class,
1674 const char *buf, size_t count)
1675{
1676 unsigned int value;
1677
1678 value = simple_strtoul(buf, NULL, 0);
1679 if (value != 0 && value != 1)
1680 return -EINVAL;
1681 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1682 return -EOPNOTSUPP;
1683 stp_online = value;
Heiko Carstens750887d2008-12-25 13:38:37 +01001684 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001685 return count;
1686}
1687
1688/*
1689 * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1690 * stp/online but attr_online already exists in this file ..
1691 */
1692static struct sysdev_class_attribute attr_stp_online = {
1693 .attr = { .name = "online", .mode = 0600 },
1694 .show = stp_online_show,
1695 .store = stp_online_store,
1696};
1697
1698static struct sysdev_class_attribute *stp_attributes[] = {
1699 &attr_ctn_id,
1700 &attr_ctn_type,
1701 &attr_dst_offset,
1702 &attr_leap_seconds,
1703 &attr_stp_online,
1704 &attr_stratum,
1705 &attr_time_offset,
1706 &attr_time_zone_offset,
1707 &attr_timing_mode,
1708 &attr_timing_state,
1709 NULL
1710};
1711
1712static int __init stp_init_sysfs(void)
1713{
1714 struct sysdev_class_attribute **attr;
1715 int rc;
1716
1717 rc = sysdev_class_register(&stp_sysclass);
1718 if (rc)
1719 goto out;
1720 for (attr = stp_attributes; *attr; attr++) {
1721 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1722 if (rc)
1723 goto out_unreg;
1724 }
1725 return 0;
1726out_unreg:
1727 for (; attr >= stp_attributes; attr--)
1728 sysdev_class_remove_file(&stp_sysclass, *attr);
1729 sysdev_class_unregister(&stp_sysclass);
1730out:
1731 return rc;
1732}
1733
1734device_initcall(stp_init_sysfs);