blob: 6e09bc285ba077269ab3f7d4016c9b7eaca2c2eb [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);
470static DECLARE_WORK(etr_work, etr_work_fn);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100471
472/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100473 * Reset ETR attachment.
474 */
475static void etr_reset(void)
476{
477 etr_eacr = (struct etr_eacr) {
478 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
479 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
480 .es = 0, .sl = 0 };
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200481 if (etr_setr(&etr_eacr) == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100482 etr_tolec = get_clock();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200483 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
484 } else if (etr_port0_online || etr_port1_online) {
485 printk(KERN_WARNING "Running on non ETR capable "
486 "machine, only local mode available.\n");
487 etr_port0_online = etr_port1_online = 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100488 }
489}
490
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200491static int __init etr_init(void)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100492{
493 struct etr_aib aib;
494
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200495 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200496 return 0;
Heiko Carstens750887d2008-12-25 13:38:37 +0100497 time_init_wq();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100498 /* Check if this machine has the steai instruction. */
499 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200500 etr_steai_available = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100501 setup_timer(&etr_timer, etr_timeout, 0UL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100502 if (etr_port0_online) {
503 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100504 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100505 }
506 if (etr_port1_online) {
507 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100508 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100509 }
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200510 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100511}
512
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200513arch_initcall(etr_init);
514
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100515/*
516 * Two sorts of ETR machine checks. The architecture reads:
517 * "When a machine-check niterruption occurs and if a switch-to-local or
518 * ETR-sync-check interrupt request is pending but disabled, this pending
519 * disabled interruption request is indicated and is cleared".
520 * Which means that we can get etr_switch_to_local events from the machine
521 * check handler although the interruption condition is disabled. Lovely..
522 */
523
524/*
525 * Switch to local machine check. This is called when the last usable
526 * ETR port goes inactive. After switch to local the clock is not in sync.
527 */
528void etr_switch_to_local(void)
529{
530 if (!etr_eacr.sl)
531 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200532 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
533 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100534 set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100535 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100536}
537
538/*
539 * ETR sync check machine check. This is called when the ETR OTE and the
540 * local clock OTE are farther apart than the ETR sync check tolerance.
541 * After a ETR sync check the clock is not in sync. The machine check
542 * is broadcasted to all cpus at the same time.
543 */
544void etr_sync_check(void)
545{
546 if (!etr_eacr.es)
547 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200548 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
549 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100550 set_bit(ETR_EVENT_SYNC_CHECK, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100551 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100552}
553
554/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200555 * ETR timing alert. There are two causes:
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100556 * 1) port state change, check the usability of the port
557 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
558 * sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
559 * or ETR-data word 4 (edf4) has changed.
560 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200561static void etr_timing_alert(struct etr_irq_parm *intparm)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100562{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100563 if (intparm->pc0)
564 /* ETR port 0 state change. */
565 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
566 if (intparm->pc1)
567 /* ETR port 1 state change. */
568 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
569 if (intparm->eai)
570 /*
571 * ETR port alert on either port 0, 1 or both.
572 * Both ports are not up-to-date now.
573 */
574 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100575 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100576}
577
578static void etr_timeout(unsigned long dummy)
579{
580 set_bit(ETR_EVENT_UPDATE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100581 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100582}
583
584/*
585 * Check if the etr mode is pss.
586 */
587static inline int etr_mode_is_pps(struct etr_eacr eacr)
588{
589 return eacr.es && !eacr.sl;
590}
591
592/*
593 * Check if the etr mode is etr.
594 */
595static inline int etr_mode_is_etr(struct etr_eacr eacr)
596{
597 return eacr.es && eacr.sl;
598}
599
600/*
601 * Check if the port can be used for TOD synchronization.
602 * For PPS mode the port has to receive OTEs. For ETR mode
603 * the port has to receive OTEs, the ETR stepping bit has to
604 * be zero and the validity bits for data frame 1, 2, and 3
605 * have to be 1.
606 */
607static int etr_port_valid(struct etr_aib *aib, int port)
608{
609 unsigned int psc;
610
611 /* Check that this port is receiving OTEs. */
612 if (aib->tsp == 0)
613 return 0;
614
615 psc = port ? aib->esw.psc1 : aib->esw.psc0;
616 if (psc == etr_lpsc_pps_mode)
617 return 1;
618 if (psc == etr_lpsc_operational_step)
619 return !aib->esw.y && aib->slsw.v1 &&
620 aib->slsw.v2 && aib->slsw.v3;
621 return 0;
622}
623
624/*
625 * Check if two ports are on the same network.
626 */
627static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
628{
629 // FIXME: any other fields we have to compare?
630 return aib1->edf1.net_id == aib2->edf1.net_id;
631}
632
633/*
634 * Wrapper for etr_stei that converts physical port states
635 * to logical port states to be consistent with the output
636 * of stetr (see etr_psc vs. etr_lpsc).
637 */
638static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
639{
640 BUG_ON(etr_steai(aib, func) != 0);
641 /* Convert port state to logical port state. */
642 if (aib->esw.psc0 == 1)
643 aib->esw.psc0 = 2;
644 else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
645 aib->esw.psc0 = 1;
646 if (aib->esw.psc1 == 1)
647 aib->esw.psc1 = 2;
648 else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
649 aib->esw.psc1 = 1;
650}
651
652/*
653 * Check if the aib a2 is still connected to the same attachment as
654 * aib a1, the etv values differ by one and a2 is valid.
655 */
656static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
657{
658 int state_a1, state_a2;
659
660 /* Paranoia check: e0/e1 should better be the same. */
661 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
662 a1->esw.eacr.e1 != a2->esw.eacr.e1)
663 return 0;
664
665 /* Still connected to the same etr ? */
666 state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
667 state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
668 if (state_a1 == etr_lpsc_operational_step) {
669 if (state_a2 != etr_lpsc_operational_step ||
670 a1->edf1.net_id != a2->edf1.net_id ||
671 a1->edf1.etr_id != a2->edf1.etr_id ||
672 a1->edf1.etr_pn != a2->edf1.etr_pn)
673 return 0;
674 } else if (state_a2 != etr_lpsc_pps_mode)
675 return 0;
676
677 /* The ETV value of a2 needs to be ETV of a1 + 1. */
678 if (a1->edf2.etv + 1 != a2->edf2.etv)
679 return 0;
680
681 if (!etr_port_valid(a2, p))
682 return 0;
683
684 return 1;
685}
686
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200687struct clock_sync_data {
Heiko Carstens750887d2008-12-25 13:38:37 +0100688 atomic_t cpus;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200689 int in_sync;
690 unsigned long long fixup_cc;
Heiko Carstens750887d2008-12-25 13:38:37 +0100691 int etr_port;
692 struct etr_aib *etr_aib;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200693};
Heiko Carstens5a62b192008-04-17 07:46:25 +0200694
Heiko Carstens750887d2008-12-25 13:38:37 +0100695static void clock_sync_cpu(struct clock_sync_data *sync)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100696{
Heiko Carstens750887d2008-12-25 13:38:37 +0100697 atomic_dec(&sync->cpus);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200698 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100699 /*
700 * This looks like a busy wait loop but it isn't. etr_sync_cpus
701 * is called on all other cpus while the TOD clocks is stopped.
702 * __udelay will stop the cpu on an enabled wait psw until the
703 * TOD is running again.
704 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200705 while (sync->in_sync == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100706 __udelay(1);
Heiko Carstens6c732de2007-02-21 10:55:15 +0100707 /*
708 * A different cpu changes *in_sync. Therefore use
709 * barrier() to force memory access.
710 */
711 barrier();
712 }
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200713 if (sync->in_sync != 1)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100714 /* Didn't work. Clear per-cpu in sync bit again. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200715 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100716 /*
717 * This round of TOD syncing is done. Set the clock comparator
718 * to the next tick and let the processor continue.
719 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200720 fixup_clock_comparator(sync->fixup_cc);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100721}
722
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100723/*
724 * Sync the TOD clock using the port refered to by aibp. This port
725 * has to be enabled and the other port has to be disabled. The
726 * last eacr update has to be more than 1.6 seconds in the past.
727 */
Heiko Carstens750887d2008-12-25 13:38:37 +0100728static int etr_sync_clock(void *data)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100729{
Heiko Carstens750887d2008-12-25 13:38:37 +0100730 static int first;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200731 unsigned long long clock, old_clock, delay, delta;
Heiko Carstens750887d2008-12-25 13:38:37 +0100732 struct clock_sync_data *etr_sync;
733 struct etr_aib *sync_port, *aib;
734 int port;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100735 int rc;
736
Heiko Carstens750887d2008-12-25 13:38:37 +0100737 etr_sync = data;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100738
Heiko Carstens750887d2008-12-25 13:38:37 +0100739 if (xchg(&first, 1) == 1) {
740 /* Slave */
741 clock_sync_cpu(etr_sync);
742 return 0;
743 }
744
745 /* Wait until all other cpus entered the sync function. */
746 while (atomic_read(&etr_sync->cpus) != 0)
747 cpu_relax();
748
749 port = etr_sync->etr_port;
750 aib = etr_sync->etr_aib;
751 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200752 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100753
754 /* Set clock to next OTE. */
755 __ctl_set_bit(14, 21);
756 __ctl_set_bit(0, 29);
757 clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200758 old_clock = get_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100759 if (set_clock(clock) == 0) {
760 __udelay(1); /* Wait for the clock to start. */
761 __ctl_clear_bit(0, 29);
762 __ctl_clear_bit(14, 21);
763 etr_stetr(aib);
764 /* Adjust Linux timing variables. */
765 delay = (unsigned long long)
766 (aib->edf2.etv - sync_port->edf2.etv) << 32;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200767 delta = adjust_time(old_clock, clock, delay);
Heiko Carstens750887d2008-12-25 13:38:37 +0100768 etr_sync->fixup_cc = delta;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200769 fixup_clock_comparator(delta);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100770 /* Verify that the clock is properly set. */
771 if (!etr_aib_follows(sync_port, aib, port)) {
772 /* Didn't work. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200773 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +0100774 etr_sync->in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100775 rc = -EAGAIN;
776 } else {
Heiko Carstens750887d2008-12-25 13:38:37 +0100777 etr_sync->in_sync = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100778 rc = 0;
779 }
780 } else {
781 /* Could not set the clock ?!? */
782 __ctl_clear_bit(0, 29);
783 __ctl_clear_bit(14, 21);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200784 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +0100785 etr_sync->in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100786 rc = -EAGAIN;
787 }
Heiko Carstens750887d2008-12-25 13:38:37 +0100788 xchg(&first, 0);
789 return rc;
790}
791
792static int etr_sync_clock_stop(struct etr_aib *aib, int port)
793{
794 struct clock_sync_data etr_sync;
795 struct etr_aib *sync_port;
796 int follows;
797 int rc;
798
799 /* Check if the current aib is adjacent to the sync port aib. */
800 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
801 follows = etr_aib_follows(sync_port, aib, port);
802 memcpy(sync_port, aib, sizeof(*aib));
803 if (!follows)
804 return -EAGAIN;
805 memset(&etr_sync, 0, sizeof(etr_sync));
806 etr_sync.etr_aib = aib;
807 etr_sync.etr_port = port;
808 get_online_cpus();
809 atomic_set(&etr_sync.cpus, num_online_cpus() - 1);
810 rc = stop_machine(etr_sync_clock, &etr_sync, &cpu_online_map);
811 put_online_cpus();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100812 return rc;
813}
814
815/*
816 * Handle the immediate effects of the different events.
817 * The port change event is used for online/offline changes.
818 */
819static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
820{
821 if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
822 eacr.es = 0;
823 if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
824 eacr.es = eacr.sl = 0;
825 if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
826 etr_port0_uptodate = etr_port1_uptodate = 0;
827
828 if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
829 if (eacr.e0)
830 /*
831 * Port change of an enabled port. We have to
832 * assume that this can have caused an stepping
833 * port switch.
834 */
835 etr_tolec = get_clock();
836 eacr.p0 = etr_port0_online;
837 if (!eacr.p0)
838 eacr.e0 = 0;
839 etr_port0_uptodate = 0;
840 }
841 if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
842 if (eacr.e1)
843 /*
844 * Port change of an enabled port. We have to
845 * assume that this can have caused an stepping
846 * port switch.
847 */
848 etr_tolec = get_clock();
849 eacr.p1 = etr_port1_online;
850 if (!eacr.p1)
851 eacr.e1 = 0;
852 etr_port1_uptodate = 0;
853 }
854 clear_bit(ETR_EVENT_UPDATE, &etr_events);
855 return eacr;
856}
857
858/*
859 * Set up a timer that expires after the etr_tolec + 1.6 seconds if
860 * one of the ports needs an update.
861 */
862static void etr_set_tolec_timeout(unsigned long long now)
863{
864 unsigned long micros;
865
866 if ((!etr_eacr.p0 || etr_port0_uptodate) &&
867 (!etr_eacr.p1 || etr_port1_uptodate))
868 return;
869 micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
870 micros = (micros > 1600000) ? 0 : 1600000 - micros;
871 mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
872}
873
874/*
875 * Set up a time that expires after 1/2 second.
876 */
877static void etr_set_sync_timeout(void)
878{
879 mod_timer(&etr_timer, jiffies + HZ/2);
880}
881
882/*
883 * Update the aib information for one or both ports.
884 */
885static struct etr_eacr etr_handle_update(struct etr_aib *aib,
886 struct etr_eacr eacr)
887{
888 /* With both ports disabled the aib information is useless. */
889 if (!eacr.e0 && !eacr.e1)
890 return eacr;
891
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200892 /* Update port0 or port1 with aib stored in etr_work_fn. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100893 if (aib->esw.q == 0) {
894 /* Information for port 0 stored. */
895 if (eacr.p0 && !etr_port0_uptodate) {
896 etr_port0 = *aib;
897 if (etr_port0_online)
898 etr_port0_uptodate = 1;
899 }
900 } else {
901 /* Information for port 1 stored. */
902 if (eacr.p1 && !etr_port1_uptodate) {
903 etr_port1 = *aib;
904 if (etr_port0_online)
905 etr_port1_uptodate = 1;
906 }
907 }
908
909 /*
910 * Do not try to get the alternate port aib if the clock
911 * is not in sync yet.
912 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200913 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags) && !eacr.es)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100914 return eacr;
915
916 /*
917 * If steai is available we can get the information about
918 * the other port immediately. If only stetr is available the
919 * data-port bit toggle has to be used.
920 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200921 if (etr_steai_available) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100922 if (eacr.p0 && !etr_port0_uptodate) {
923 etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
924 etr_port0_uptodate = 1;
925 }
926 if (eacr.p1 && !etr_port1_uptodate) {
927 etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
928 etr_port1_uptodate = 1;
929 }
930 } else {
931 /*
932 * One port was updated above, if the other
933 * port is not uptodate toggle dp bit.
934 */
935 if ((eacr.p0 && !etr_port0_uptodate) ||
936 (eacr.p1 && !etr_port1_uptodate))
937 eacr.dp ^= 1;
938 else
939 eacr.dp = 0;
940 }
941 return eacr;
942}
943
944/*
945 * Write new etr control register if it differs from the current one.
946 * Return 1 if etr_tolec has been updated as well.
947 */
948static void etr_update_eacr(struct etr_eacr eacr)
949{
950 int dp_changed;
951
952 if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
953 /* No change, return. */
954 return;
955 /*
956 * The disable of an active port of the change of the data port
957 * bit can/will cause a change in the data port.
958 */
959 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
960 (etr_eacr.dp ^ eacr.dp) != 0;
961 etr_eacr = eacr;
962 etr_setr(&etr_eacr);
963 if (dp_changed)
964 etr_tolec = get_clock();
965}
966
967/*
Heiko Carstens750887d2008-12-25 13:38:37 +0100968 * ETR work. In this function you'll find the main logic. In
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100969 * particular this is the only function that calls etr_update_eacr(),
970 * it "controls" the etr control register.
971 */
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200972static void etr_work_fn(struct work_struct *work)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100973{
974 unsigned long long now;
975 struct etr_eacr eacr;
976 struct etr_aib aib;
977 int sync_port;
978
979 /* Create working copy of etr_eacr. */
980 eacr = etr_eacr;
981
982 /* Check for the different events and their immediate effects. */
983 eacr = etr_handle_events(eacr);
984
985 /* Check if ETR is supposed to be active. */
986 eacr.ea = eacr.p0 || eacr.p1;
987 if (!eacr.ea) {
988 /* Both ports offline. Reset everything. */
989 eacr.dp = eacr.es = eacr.sl = 0;
Ingo Molnar1a781a72008-07-15 21:55:59 +0200990 on_each_cpu(disable_sync_clock, NULL, 1);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100991 del_timer_sync(&etr_timer);
992 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200993 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100994 return;
995 }
996
997 /* Store aib to get the current ETR status word. */
998 BUG_ON(etr_stetr(&aib) != 0);
999 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
1000 now = get_clock();
1001
1002 /*
1003 * Update the port information if the last stepping port change
1004 * or data port change is older than 1.6 seconds.
1005 */
1006 if (now >= etr_tolec + (1600000 << 12))
1007 eacr = etr_handle_update(&aib, eacr);
1008
1009 /*
1010 * Select ports to enable. The prefered synchronization mode is PPS.
1011 * If a port can be enabled depends on a number of things:
1012 * 1) The port needs to be online and uptodate. A port is not
1013 * disabled just because it is not uptodate, but it is only
1014 * enabled if it is uptodate.
1015 * 2) The port needs to have the same mode (pps / etr).
1016 * 3) The port needs to be usable -> etr_port_valid() == 1
1017 * 4) To enable the second port the clock needs to be in sync.
1018 * 5) If both ports are useable and are ETR ports, the network id
1019 * has to be the same.
1020 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
1021 */
1022 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
1023 eacr.sl = 0;
1024 eacr.e0 = 1;
1025 if (!etr_mode_is_pps(etr_eacr))
1026 eacr.es = 0;
1027 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
1028 eacr.e1 = 0;
1029 // FIXME: uptodate checks ?
1030 else if (etr_port0_uptodate && etr_port1_uptodate)
1031 eacr.e1 = 1;
1032 sync_port = (etr_port0_uptodate &&
1033 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001034 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1035 eacr.sl = 0;
1036 eacr.e0 = 0;
1037 eacr.e1 = 1;
1038 if (!etr_mode_is_pps(etr_eacr))
1039 eacr.es = 0;
1040 sync_port = (etr_port1_uptodate &&
1041 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001042 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1043 eacr.sl = 1;
1044 eacr.e0 = 1;
1045 if (!etr_mode_is_etr(etr_eacr))
1046 eacr.es = 0;
1047 if (!eacr.es || !eacr.p1 ||
1048 aib.esw.psc1 != etr_lpsc_operational_alt)
1049 eacr.e1 = 0;
1050 else if (etr_port0_uptodate && etr_port1_uptodate &&
1051 etr_compare_network(&etr_port0, &etr_port1))
1052 eacr.e1 = 1;
1053 sync_port = (etr_port0_uptodate &&
1054 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001055 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1056 eacr.sl = 1;
1057 eacr.e0 = 0;
1058 eacr.e1 = 1;
1059 if (!etr_mode_is_etr(etr_eacr))
1060 eacr.es = 0;
1061 sync_port = (etr_port1_uptodate &&
1062 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001063 } else {
1064 /* Both ports not usable. */
1065 eacr.es = eacr.sl = 0;
1066 sync_port = -1;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001067 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001068 }
1069
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001070 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1071 eacr.es = 0;
1072
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001073 /*
1074 * If the clock is in sync just update the eacr and return.
1075 * If there is no valid sync port wait for a port update.
1076 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001077 if (test_bit(CLOCK_SYNC_STP, &clock_sync_flags) ||
1078 eacr.es || sync_port < 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001079 etr_update_eacr(eacr);
1080 etr_set_tolec_timeout(now);
1081 return;
1082 }
1083
1084 /*
1085 * Prepare control register for clock syncing
1086 * (reset data port bit, set sync check control.
1087 */
1088 eacr.dp = 0;
1089 eacr.es = 1;
1090
1091 /*
1092 * Update eacr and try to synchronize the clock. If the update
1093 * of eacr caused a stepping port switch (or if we have to
1094 * assume that a stepping port switch has occured) or the
1095 * clock syncing failed, reset the sync check control bit
1096 * and set up a timer to try again after 0.5 seconds
1097 */
1098 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001099 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001100 if (now < etr_tolec + (1600000 << 12) ||
Heiko Carstens750887d2008-12-25 13:38:37 +01001101 etr_sync_clock_stop(&aib, sync_port) != 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001102 /* Sync failed. Try again in 1/2 second. */
1103 eacr.es = 0;
1104 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001105 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001106 etr_set_sync_timeout();
1107 } else
1108 etr_set_tolec_timeout(now);
1109}
1110
1111/*
1112 * Sysfs interface functions
1113 */
1114static struct sysdev_class etr_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001115 .name = "etr",
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001116};
1117
1118static struct sys_device etr_port0_dev = {
1119 .id = 0,
1120 .cls = &etr_sysclass,
1121};
1122
1123static struct sys_device etr_port1_dev = {
1124 .id = 1,
1125 .cls = &etr_sysclass,
1126};
1127
1128/*
1129 * ETR class attributes
1130 */
1131static ssize_t etr_stepping_port_show(struct sysdev_class *class, char *buf)
1132{
1133 return sprintf(buf, "%i\n", etr_port0.esw.p);
1134}
1135
1136static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1137
1138static ssize_t etr_stepping_mode_show(struct sysdev_class *class, char *buf)
1139{
1140 char *mode_str;
1141
1142 if (etr_mode_is_pps(etr_eacr))
1143 mode_str = "pps";
1144 else if (etr_mode_is_etr(etr_eacr))
1145 mode_str = "etr";
1146 else
1147 mode_str = "local";
1148 return sprintf(buf, "%s\n", mode_str);
1149}
1150
1151static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1152
1153/*
1154 * ETR port attributes
1155 */
1156static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1157{
1158 if (dev == &etr_port0_dev)
1159 return etr_port0_online ? &etr_port0 : NULL;
1160 else
1161 return etr_port1_online ? &etr_port1 : NULL;
1162}
1163
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001164static ssize_t etr_online_show(struct sys_device *dev,
1165 struct sysdev_attribute *attr,
1166 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001167{
1168 unsigned int online;
1169
1170 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1171 return sprintf(buf, "%i\n", online);
1172}
1173
1174static ssize_t etr_online_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001175 struct sysdev_attribute *attr,
1176 const char *buf, size_t count)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001177{
1178 unsigned int value;
1179
1180 value = simple_strtoul(buf, NULL, 0);
1181 if (value != 0 && value != 1)
1182 return -EINVAL;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001183 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1184 return -EOPNOTSUPP;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001185 if (dev == &etr_port0_dev) {
1186 if (etr_port0_online == value)
1187 return count; /* Nothing to do. */
1188 etr_port0_online = value;
1189 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +01001190 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001191 } else {
1192 if (etr_port1_online == value)
1193 return count; /* Nothing to do. */
1194 etr_port1_online = value;
1195 set_bit(ETR_EVENT_PORT1_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 }
1198 return count;
1199}
1200
1201static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1202
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001203static ssize_t etr_stepping_control_show(struct sys_device *dev,
1204 struct sysdev_attribute *attr,
1205 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001206{
1207 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1208 etr_eacr.e0 : etr_eacr.e1);
1209}
1210
1211static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1212
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001213static ssize_t etr_mode_code_show(struct sys_device *dev,
1214 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001215{
1216 if (!etr_port0_online && !etr_port1_online)
1217 /* Status word is not uptodate if both ports are offline. */
1218 return -ENODATA;
1219 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1220 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1221}
1222
1223static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1224
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001225static ssize_t etr_untuned_show(struct sys_device *dev,
1226 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001227{
1228 struct etr_aib *aib = etr_aib_from_dev(dev);
1229
1230 if (!aib || !aib->slsw.v1)
1231 return -ENODATA;
1232 return sprintf(buf, "%i\n", aib->edf1.u);
1233}
1234
1235static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1236
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001237static ssize_t etr_network_id_show(struct sys_device *dev,
1238 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001239{
1240 struct etr_aib *aib = etr_aib_from_dev(dev);
1241
1242 if (!aib || !aib->slsw.v1)
1243 return -ENODATA;
1244 return sprintf(buf, "%i\n", aib->edf1.net_id);
1245}
1246
1247static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1248
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001249static ssize_t etr_id_show(struct sys_device *dev,
1250 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001251{
1252 struct etr_aib *aib = etr_aib_from_dev(dev);
1253
1254 if (!aib || !aib->slsw.v1)
1255 return -ENODATA;
1256 return sprintf(buf, "%i\n", aib->edf1.etr_id);
1257}
1258
1259static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1260
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001261static ssize_t etr_port_number_show(struct sys_device *dev,
1262 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001263{
1264 struct etr_aib *aib = etr_aib_from_dev(dev);
1265
1266 if (!aib || !aib->slsw.v1)
1267 return -ENODATA;
1268 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1269}
1270
1271static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1272
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001273static ssize_t etr_coupled_show(struct sys_device *dev,
1274 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001275{
1276 struct etr_aib *aib = etr_aib_from_dev(dev);
1277
1278 if (!aib || !aib->slsw.v3)
1279 return -ENODATA;
1280 return sprintf(buf, "%i\n", aib->edf3.c);
1281}
1282
1283static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1284
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001285static ssize_t etr_local_time_show(struct sys_device *dev,
1286 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001287{
1288 struct etr_aib *aib = etr_aib_from_dev(dev);
1289
1290 if (!aib || !aib->slsw.v3)
1291 return -ENODATA;
1292 return sprintf(buf, "%i\n", aib->edf3.blto);
1293}
1294
1295static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1296
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001297static ssize_t etr_utc_offset_show(struct sys_device *dev,
1298 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001299{
1300 struct etr_aib *aib = etr_aib_from_dev(dev);
1301
1302 if (!aib || !aib->slsw.v3)
1303 return -ENODATA;
1304 return sprintf(buf, "%i\n", aib->edf3.buo);
1305}
1306
1307static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1308
1309static struct sysdev_attribute *etr_port_attributes[] = {
1310 &attr_online,
1311 &attr_stepping_control,
1312 &attr_state_code,
1313 &attr_untuned,
1314 &attr_network,
1315 &attr_id,
1316 &attr_port,
1317 &attr_coupled,
1318 &attr_local_time,
1319 &attr_utc_offset,
1320 NULL
1321};
1322
1323static int __init etr_register_port(struct sys_device *dev)
1324{
1325 struct sysdev_attribute **attr;
1326 int rc;
1327
1328 rc = sysdev_register(dev);
1329 if (rc)
1330 goto out;
1331 for (attr = etr_port_attributes; *attr; attr++) {
1332 rc = sysdev_create_file(dev, *attr);
1333 if (rc)
1334 goto out_unreg;
1335 }
1336 return 0;
1337out_unreg:
1338 for (; attr >= etr_port_attributes; attr--)
1339 sysdev_remove_file(dev, *attr);
1340 sysdev_unregister(dev);
1341out:
1342 return rc;
1343}
1344
1345static void __init etr_unregister_port(struct sys_device *dev)
1346{
1347 struct sysdev_attribute **attr;
1348
1349 for (attr = etr_port_attributes; *attr; attr++)
1350 sysdev_remove_file(dev, *attr);
1351 sysdev_unregister(dev);
1352}
1353
1354static int __init etr_init_sysfs(void)
1355{
1356 int rc;
1357
1358 rc = sysdev_class_register(&etr_sysclass);
1359 if (rc)
1360 goto out;
1361 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1362 if (rc)
1363 goto out_unreg_class;
1364 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1365 if (rc)
1366 goto out_remove_stepping_port;
1367 rc = etr_register_port(&etr_port0_dev);
1368 if (rc)
1369 goto out_remove_stepping_mode;
1370 rc = etr_register_port(&etr_port1_dev);
1371 if (rc)
1372 goto out_remove_port0;
1373 return 0;
1374
1375out_remove_port0:
1376 etr_unregister_port(&etr_port0_dev);
1377out_remove_stepping_mode:
1378 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1379out_remove_stepping_port:
1380 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1381out_unreg_class:
1382 sysdev_class_unregister(&etr_sysclass);
1383out:
1384 return rc;
1385}
1386
1387device_initcall(etr_init_sysfs);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001388
1389/*
1390 * Server Time Protocol (STP) code.
1391 */
1392static int stp_online;
1393static struct stp_sstpi stp_info;
1394static void *stp_page;
1395
1396static void stp_work_fn(struct work_struct *work);
1397static DECLARE_WORK(stp_work, stp_work_fn);
1398
1399static int __init early_parse_stp(char *p)
1400{
1401 if (strncmp(p, "off", 3) == 0)
1402 stp_online = 0;
1403 else if (strncmp(p, "on", 2) == 0)
1404 stp_online = 1;
1405 return 0;
1406}
1407early_param("stp", early_parse_stp);
1408
1409/*
1410 * Reset STP attachment.
1411 */
Heiko Carstens8f847002008-08-01 16:39:19 +02001412static void __init stp_reset(void)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001413{
1414 int rc;
1415
1416 stp_page = alloc_bootmem_pages(PAGE_SIZE);
1417 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky4a672cf2008-10-10 21:33:29 +02001418 if (rc == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001419 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1420 else if (stp_online) {
1421 printk(KERN_WARNING "Running on non STP capable machine.\n");
1422 free_bootmem((unsigned long) stp_page, PAGE_SIZE);
1423 stp_page = NULL;
1424 stp_online = 0;
1425 }
1426}
1427
1428static int __init stp_init(void)
1429{
Heiko Carstens750887d2008-12-25 13:38:37 +01001430 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1431 return 0;
1432 time_init_wq();
1433 if (!stp_online)
1434 return 0;
1435 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001436 return 0;
1437}
1438
1439arch_initcall(stp_init);
1440
1441/*
1442 * STP timing alert. There are three causes:
1443 * 1) timing status change
1444 * 2) link availability change
1445 * 3) time control parameter change
1446 * In all three cases we are only interested in the clock source state.
1447 * If a STP clock source is now available use it.
1448 */
1449static void stp_timing_alert(struct stp_irq_parm *intparm)
1450{
1451 if (intparm->tsc || intparm->lac || intparm->tcpc)
Heiko Carstens750887d2008-12-25 13:38:37 +01001452 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001453}
1454
1455/*
1456 * STP sync check machine check. This is called when the timing state
1457 * changes from the synchronized state to the unsynchronized state.
1458 * After a STP sync check the clock is not in sync. The machine check
1459 * is broadcasted to all cpus at the same time.
1460 */
1461void stp_sync_check(void)
1462{
1463 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1464 return;
1465 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001466 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001467}
1468
1469/*
1470 * STP island condition machine check. This is called when an attached
1471 * server attempts to communicate over an STP link and the servers
1472 * have matching CTN ids and have a valid stratum-1 configuration
1473 * but the configurations do not match.
1474 */
1475void stp_island_check(void)
1476{
1477 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1478 return;
1479 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001480 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001481}
1482
Heiko Carstens750887d2008-12-25 13:38:37 +01001483
1484static int stp_sync_clock(void *data)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001485{
Heiko Carstens750887d2008-12-25 13:38:37 +01001486 static int first;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001487 unsigned long long old_clock, delta;
Heiko Carstens750887d2008-12-25 13:38:37 +01001488 struct clock_sync_data *stp_sync;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001489 int rc;
1490
Heiko Carstens750887d2008-12-25 13:38:37 +01001491 stp_sync = data;
1492
1493 if (xchg(&first, 1) == 1) {
1494 /* Slave */
1495 clock_sync_cpu(stp_sync);
1496 return 0;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001497 }
1498
Heiko Carstens750887d2008-12-25 13:38:37 +01001499 /* Wait until all other cpus entered the sync function. */
1500 while (atomic_read(&stp_sync->cpus) != 0)
1501 cpu_relax();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001502
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001503 enable_sync_clock();
1504
1505 set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1506 if (test_and_clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
Heiko Carstens750887d2008-12-25 13:38:37 +01001507 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001508
1509 rc = 0;
1510 if (stp_info.todoff[0] || stp_info.todoff[1] ||
1511 stp_info.todoff[2] || stp_info.todoff[3] ||
1512 stp_info.tmd != 2) {
1513 old_clock = get_clock();
1514 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1515 if (rc == 0) {
1516 delta = adjust_time(old_clock, get_clock(), 0);
1517 fixup_clock_comparator(delta);
1518 rc = chsc_sstpi(stp_page, &stp_info,
1519 sizeof(struct stp_sstpi));
1520 if (rc == 0 && stp_info.tmd != 2)
1521 rc = -EAGAIN;
1522 }
1523 }
1524 if (rc) {
1525 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001526 stp_sync->in_sync = -EAGAIN;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001527 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1528 if (etr_port0_online || etr_port1_online)
Heiko Carstens750887d2008-12-25 13:38:37 +01001529 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001530 } else
Heiko Carstens750887d2008-12-25 13:38:37 +01001531 stp_sync->in_sync = 1;
1532 xchg(&first, 0);
1533 return 0;
1534}
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001535
Heiko Carstens750887d2008-12-25 13:38:37 +01001536/*
1537 * STP work. Check for the STP state and take over the clock
1538 * synchronization if the STP clock source is usable.
1539 */
1540static void stp_work_fn(struct work_struct *work)
1541{
1542 struct clock_sync_data stp_sync;
1543 int rc;
1544
1545 if (!stp_online) {
1546 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1547 return;
1548 }
1549
1550 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1551 if (rc)
1552 return;
1553
1554 rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1555 if (rc || stp_info.c == 0)
1556 return;
1557
1558 memset(&stp_sync, 0, sizeof(stp_sync));
1559 get_online_cpus();
1560 atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
1561 stop_machine(stp_sync_clock, &stp_sync, &cpu_online_map);
1562 put_online_cpus();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001563}
1564
1565/*
1566 * STP class sysfs interface functions
1567 */
1568static struct sysdev_class stp_sysclass = {
1569 .name = "stp",
1570};
1571
1572static ssize_t stp_ctn_id_show(struct sysdev_class *class, char *buf)
1573{
1574 if (!stp_online)
1575 return -ENODATA;
1576 return sprintf(buf, "%016llx\n",
1577 *(unsigned long long *) stp_info.ctnid);
1578}
1579
1580static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1581
1582static ssize_t stp_ctn_type_show(struct sysdev_class *class, char *buf)
1583{
1584 if (!stp_online)
1585 return -ENODATA;
1586 return sprintf(buf, "%i\n", stp_info.ctn);
1587}
1588
1589static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1590
1591static ssize_t stp_dst_offset_show(struct sysdev_class *class, char *buf)
1592{
1593 if (!stp_online || !(stp_info.vbits & 0x2000))
1594 return -ENODATA;
1595 return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1596}
1597
1598static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1599
1600static ssize_t stp_leap_seconds_show(struct sysdev_class *class, char *buf)
1601{
1602 if (!stp_online || !(stp_info.vbits & 0x8000))
1603 return -ENODATA;
1604 return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1605}
1606
1607static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1608
1609static ssize_t stp_stratum_show(struct sysdev_class *class, char *buf)
1610{
1611 if (!stp_online)
1612 return -ENODATA;
1613 return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1614}
1615
1616static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1617
1618static ssize_t stp_time_offset_show(struct sysdev_class *class, char *buf)
1619{
1620 if (!stp_online || !(stp_info.vbits & 0x0800))
1621 return -ENODATA;
1622 return sprintf(buf, "%i\n", (int) stp_info.tto);
1623}
1624
1625static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1626
1627static ssize_t stp_time_zone_offset_show(struct sysdev_class *class, char *buf)
1628{
1629 if (!stp_online || !(stp_info.vbits & 0x4000))
1630 return -ENODATA;
1631 return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1632}
1633
1634static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1635 stp_time_zone_offset_show, NULL);
1636
1637static ssize_t stp_timing_mode_show(struct sysdev_class *class, char *buf)
1638{
1639 if (!stp_online)
1640 return -ENODATA;
1641 return sprintf(buf, "%i\n", stp_info.tmd);
1642}
1643
1644static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1645
1646static ssize_t stp_timing_state_show(struct sysdev_class *class, char *buf)
1647{
1648 if (!stp_online)
1649 return -ENODATA;
1650 return sprintf(buf, "%i\n", stp_info.tst);
1651}
1652
1653static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1654
1655static ssize_t stp_online_show(struct sysdev_class *class, char *buf)
1656{
1657 return sprintf(buf, "%i\n", stp_online);
1658}
1659
1660static ssize_t stp_online_store(struct sysdev_class *class,
1661 const char *buf, size_t count)
1662{
1663 unsigned int value;
1664
1665 value = simple_strtoul(buf, NULL, 0);
1666 if (value != 0 && value != 1)
1667 return -EINVAL;
1668 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1669 return -EOPNOTSUPP;
1670 stp_online = value;
Heiko Carstens750887d2008-12-25 13:38:37 +01001671 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001672 return count;
1673}
1674
1675/*
1676 * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1677 * stp/online but attr_online already exists in this file ..
1678 */
1679static struct sysdev_class_attribute attr_stp_online = {
1680 .attr = { .name = "online", .mode = 0600 },
1681 .show = stp_online_show,
1682 .store = stp_online_store,
1683};
1684
1685static struct sysdev_class_attribute *stp_attributes[] = {
1686 &attr_ctn_id,
1687 &attr_ctn_type,
1688 &attr_dst_offset,
1689 &attr_leap_seconds,
1690 &attr_stp_online,
1691 &attr_stratum,
1692 &attr_time_offset,
1693 &attr_time_zone_offset,
1694 &attr_timing_mode,
1695 &attr_timing_state,
1696 NULL
1697};
1698
1699static int __init stp_init_sysfs(void)
1700{
1701 struct sysdev_class_attribute **attr;
1702 int rc;
1703
1704 rc = sysdev_class_register(&stp_sysclass);
1705 if (rc)
1706 goto out;
1707 for (attr = stp_attributes; *attr; attr++) {
1708 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1709 if (rc)
1710 goto out_unreg;
1711 }
1712 return 0;
1713out_unreg:
1714 for (; attr >= stp_attributes; attr--)
1715 sysdev_class_remove_file(&stp_sysclass, *attr);
1716 sysdev_class_unregister(&stp_sysclass);
1717out:
1718 return rc;
1719}
1720
1721device_initcall(stp_init_sysfs);