blob: 4c9d72d2e273d7abec0bc7395b0202888612a016 [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
Martin Schwidefskyfeab6502008-12-25 13:39:38 +010015#define KMSG_COMPONENT "time"
16#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/errno.h>
19#include <linux/module.h>
20#include <linux/sched.h>
21#include <linux/kernel.h>
22#include <linux/param.h>
23#include <linux/string.h>
24#include <linux/mm.h>
25#include <linux/interrupt.h>
Heiko Carstens750887d2008-12-25 13:38:37 +010026#include <linux/cpu.h>
27#include <linux/stop_machine.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/time.h>
Ralf Baechle3367b992007-05-08 00:27:52 -070029#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
31#include <linux/init.h>
32#include <linux/smp.h>
33#include <linux/types.h>
34#include <linux/profile.h>
35#include <linux/timex.h>
36#include <linux/notifier.h>
Martin Schwidefskydc64bef2006-10-06 16:38:48 +020037#include <linux/clocksource.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020038#include <linux/clockchips.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/gfp.h>
Martin Schwidefsky860dba42011-01-05 12:47:25 +010040#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
42#include <asm/delay.h>
43#include <asm/s390_ext.h>
44#include <asm/div64.h>
Martin Schwidefskyb0206322008-12-25 13:38:36 +010045#include <asm/vdso.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020047#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/timer.h>
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010049#include <asm/etr.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020050#include <asm/cio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* change this if you have some constant time drift */
53#define USECS_PER_JIFFY ((unsigned long) 1000000/HZ)
54#define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
55
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +020056u64 sched_clock_base_cc = -1; /* Force to data section. */
Heiko Carstens05e7ff72009-09-11 10:28:31 +020057EXPORT_SYMBOL_GPL(sched_clock_base_cc);
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +020058
Heiko Carstens5a62b192008-04-17 07:46:25 +020059static DEFINE_PER_CPU(struct clock_event_device, comparators);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
62 * Scheduler clock - returns current time in nanosec units.
63 */
Martin Schwidefsky860dba42011-01-05 12:47:25 +010064unsigned long long notrace __kprobes sched_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Heiko Carstens05e7ff72009-09-11 10:28:31 +020066 return (get_clock_monotonic() * 125) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Jan Glauber32f65f22006-02-01 03:06:33 -080069/*
70 * Monotonic_clock - returns # of nanoseconds passed since time_init()
71 */
72unsigned long long monotonic_clock(void)
73{
74 return sched_clock();
75}
76EXPORT_SYMBOL(monotonic_clock);
77
John Stultzb1e2ba82010-03-08 12:25:19 +010078void tod_to_timeval(__u64 todval, struct timespec *xt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 unsigned long long sec;
81
82 sec = todval >> 12;
83 do_div(sec, 1000000);
John Stultzb1e2ba82010-03-08 12:25:19 +010084 xt->tv_sec = sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 todval -= (sec * 1000000) << 12;
John Stultzb1e2ba82010-03-08 12:25:19 +010086 xt->tv_nsec = ((todval * 1000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
Christof Schmittb592e892009-08-18 15:43:31 +020088EXPORT_SYMBOL(tod_to_timeval);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Heiko Carstens5a62b192008-04-17 07:46:25 +020090void clock_comparator_work(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Heiko Carstens5a62b192008-04-17 07:46:25 +020092 struct clock_event_device *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Heiko Carstens5a62b192008-04-17 07:46:25 +020094 S390_lowcore.clock_comparator = -1ULL;
95 set_clock_comparator(S390_lowcore.clock_comparator);
96 cd = &__get_cpu_var(comparators);
97 cd->event_handler(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
Heiko Carstens5a62b192008-04-17 07:46:25 +0200101 * Fixup the clock comparator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200103static void fixup_clock_comparator(unsigned long long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200105 /* If nobody is waiting there's nothing to fix. */
106 if (S390_lowcore.clock_comparator == -1ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200108 S390_lowcore.clock_comparator += delta;
109 set_clock_comparator(S390_lowcore.clock_comparator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Heiko Carstens5a62b192008-04-17 07:46:25 +0200112static int s390_next_event(unsigned long delta,
113 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200115 S390_lowcore.clock_comparator = get_clock() + delta;
116 set_clock_comparator(S390_lowcore.clock_comparator);
117 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Heiko Carstens5a62b192008-04-17 07:46:25 +0200120static void s390_set_mode(enum clock_event_mode mode,
121 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100123}
124
125/*
126 * Set up lowcore and control register of the current cpu to
127 * enable TOD clock and clock comparator interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
129void init_cpu_timer(void)
130{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200131 struct clock_event_device *cd;
132 int cpu;
133
134 S390_lowcore.clock_comparator = -1ULL;
135 set_clock_comparator(S390_lowcore.clock_comparator);
136
137 cpu = smp_processor_id();
138 cd = &per_cpu(comparators, cpu);
139 cd->name = "comparator";
140 cd->features = CLOCK_EVT_FEAT_ONESHOT;
141 cd->mult = 16777;
142 cd->shift = 12;
143 cd->min_delta_ns = 1;
144 cd->max_delta_ns = LONG_MAX;
145 cd->rating = 400;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030146 cd->cpumask = cpumask_of(cpu);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200147 cd->set_next_event = s390_next_event;
148 cd->set_mode = s390_set_mode;
149
150 clockevents_register_device(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100152 /* Enable clock comparator timer interrupt. */
153 __ctl_set_bit(0,11);
154
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200155 /* Always allow the timing alert external interrupt. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100156 __ctl_set_bit(0, 4);
157}
158
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200159static void clock_comparator_interrupt(unsigned int ext_int_code,
160 unsigned int param32,
161 unsigned long param64)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100162{
Heiko Carstensd3d238c2008-10-03 21:54:59 +0200163 if (S390_lowcore.clock_comparator == -1ULL)
164 set_clock_comparator(S390_lowcore.clock_comparator);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100165}
166
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200167static void etr_timing_alert(struct etr_irq_parm *);
168static void stp_timing_alert(struct stp_irq_parm *);
169
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200170static void timing_alert_interrupt(unsigned int ext_int_code,
171 unsigned int param32, unsigned long param64)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200172{
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200173 if (param32 & 0x00c40000)
174 etr_timing_alert((struct etr_irq_parm *) &param32);
175 if (param32 & 0x00038000)
176 stp_timing_alert((struct stp_irq_parm *) &param32);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200177}
178
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100179static void etr_reset(void);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200180static void stp_reset(void);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100181
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200182void read_persistent_clock(struct timespec *ts)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100183{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200184 tod_to_timeval(get_clock() - TOD_UNIX_EPOCH, ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200187void read_boot_clock(struct timespec *ts)
188{
189 tod_to_timeval(sched_clock_base_cc - TOD_UNIX_EPOCH, ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Magnus Damm8e196082009-04-21 12:24:00 -0700192static cycle_t read_tod_clock(struct clocksource *cs)
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200193{
194 return get_clock();
195}
196
197static struct clocksource clocksource_tod = {
198 .name = "tod",
Christian Borntraegerd2cb0e62007-11-05 11:10:14 +0100199 .rating = 400,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200200 .read = read_tod_clock,
201 .mask = -1ULL,
202 .mult = 1000,
203 .shift = 12,
Thomas Gleixnercc02d802007-02-16 01:27:39 -0800204 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200205};
206
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200207struct clocksource * __init clocksource_default_clock(void)
208{
209 return &clocksource_tod;
210}
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200211
John Stultz76158562010-07-13 17:56:23 -0700212void update_vsyscall(struct timespec *wall_time, struct timespec *wtm,
213 struct clocksource *clock, u32 mult)
Martin Schwidefskyb0206322008-12-25 13:38:36 +0100214{
215 if (clock != &clocksource_tod)
216 return;
217
218 /* Make userspace gettimeofday spin until we're done. */
219 ++vdso_data->tb_update_count;
220 smp_wmb();
221 vdso_data->xtime_tod_stamp = clock->cycle_last;
John Stultzb1e2ba82010-03-08 12:25:19 +0100222 vdso_data->xtime_clock_sec = wall_time->tv_sec;
223 vdso_data->xtime_clock_nsec = wall_time->tv_nsec;
John Stultz76158562010-07-13 17:56:23 -0700224 vdso_data->wtom_clock_sec = wtm->tv_sec;
225 vdso_data->wtom_clock_nsec = wtm->tv_nsec;
Hendrik Brueckner157a1a22010-04-22 17:17:06 +0200226 vdso_data->ntp_mult = mult;
Martin Schwidefskyb0206322008-12-25 13:38:36 +0100227 smp_wmb();
228 ++vdso_data->tb_update_count;
229}
230
231extern struct timezone sys_tz;
232
233void update_vsyscall_tz(void)
234{
235 /* Make userspace gettimeofday spin until we're done. */
236 ++vdso_data->tb_update_count;
237 smp_wmb();
238 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
239 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
240 smp_wmb();
241 ++vdso_data->tb_update_count;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * Initialize the TOD clock and the CPU timer of
246 * the boot cpu.
247 */
248void __init time_init(void)
249{
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +0200250 /* Reset time synchronization interfaces. */
251 etr_reset();
252 stp_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* request the clock comparator external interrupt */
Heiko Carstensd7d11042009-06-22 12:08:03 +0200255 if (register_external_interrupt(0x1004, clock_comparator_interrupt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 panic("Couldn't request external interrupt 0x1004");
257
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200258 /* request the timing alert external interrupt */
Heiko Carstensd7d11042009-06-22 12:08:03 +0200259 if (register_external_interrupt(0x1406, timing_alert_interrupt))
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100260 panic("Couldn't request external interrupt 0x1406");
261
Martin Schwidefskyab96e792009-04-14 15:36:29 +0200262 if (clocksource_register(&clocksource_tod) != 0)
263 panic("Could not register TOD clock source");
264
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100265 /* Enable TOD clock interrupts on the boot cpu. */
266 init_cpu_timer();
Martin Schwidefskyab96e792009-04-14 15:36:29 +0200267
Martin Schwidefskyc185b782008-12-25 13:39:25 +0100268 /* Enable cpu timer interrupts on the boot cpu. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 vtime_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100272/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200273 * The time is "clock". old is what we think the time is.
274 * Adjust the value by a multiple of jiffies and add the delta to ntp.
275 * "delay" is an approximation how long the synchronization took. If
276 * the time correction is positive, then "delay" is subtracted from
277 * the time difference and only the remaining part is passed to ntp.
278 */
279static unsigned long long adjust_time(unsigned long long old,
280 unsigned long long clock,
281 unsigned long long delay)
282{
283 unsigned long long delta, ticks;
284 struct timex adjust;
285
286 if (clock > old) {
287 /* It is later than we thought. */
288 delta = ticks = clock - old;
289 delta = ticks = (delta < delay) ? 0 : delta - delay;
290 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
291 adjust.offset = ticks * (1000000 / HZ);
292 } else {
293 /* It is earlier than we thought. */
294 delta = ticks = old - clock;
295 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
296 delta = -delta;
297 adjust.offset = -ticks * (1000000 / HZ);
298 }
Christian Borntraeger8107d822008-11-27 11:05:56 +0100299 sched_clock_base_cc += delta;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200300 if (adjust.offset != 0) {
Martin Schwidefskyfeab6502008-12-25 13:39:38 +0100301 pr_notice("The ETR interface has adjusted the clock "
302 "by %li microseconds\n", adjust.offset);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200303 adjust.modes = ADJ_OFFSET_SINGLESHOT;
304 do_adjtimex(&adjust);
305 }
306 return delta;
307}
308
309static DEFINE_PER_CPU(atomic_t, clock_sync_word);
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100310static DEFINE_MUTEX(clock_sync_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200311static unsigned long clock_sync_flags;
312
313#define CLOCK_SYNC_HAS_ETR 0
314#define CLOCK_SYNC_HAS_STP 1
315#define CLOCK_SYNC_ETR 2
316#define CLOCK_SYNC_STP 3
317
318/*
319 * The synchronous get_clock function. It will write the current clock
320 * value to the clock pointer and return 0 if the clock is in sync with
321 * the external time source. If the clock mode is local it will return
322 * -ENOSYS and -EAGAIN if the clock is not in sync with the external
323 * reference.
324 */
325int get_sync_clock(unsigned long long *clock)
326{
327 atomic_t *sw_ptr;
328 unsigned int sw0, sw1;
329
330 sw_ptr = &get_cpu_var(clock_sync_word);
331 sw0 = atomic_read(sw_ptr);
332 *clock = get_clock();
333 sw1 = atomic_read(sw_ptr);
Heiko Carstensbd119ee2009-12-07 12:52:14 +0100334 put_cpu_var(clock_sync_word);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200335 if (sw0 == sw1 && (sw0 & 0x80000000U))
336 /* Success: time is in sync. */
337 return 0;
338 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags) &&
339 !test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
340 return -ENOSYS;
341 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags) &&
342 !test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
343 return -EACCES;
344 return -EAGAIN;
345}
346EXPORT_SYMBOL(get_sync_clock);
347
348/*
349 * Make get_sync_clock return -EAGAIN.
350 */
351static void disable_sync_clock(void *dummy)
352{
353 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
354 /*
355 * Clear the in-sync bit 2^31. All get_sync_clock calls will
356 * fail until the sync bit is turned back on. In addition
357 * increase the "sequence" counter to avoid the race of an
358 * etr event and the complete recovery against get_sync_clock.
359 */
360 atomic_clear_mask(0x80000000, sw_ptr);
361 atomic_inc(sw_ptr);
362}
363
364/*
365 * Make get_sync_clock return 0 again.
366 * Needs to be called from a context disabled for preemption.
367 */
368static void enable_sync_clock(void)
369{
370 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
371 atomic_set_mask(0x80000000, sw_ptr);
372}
373
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100374/*
375 * Function to check if the clock is in sync.
376 */
377static inline int check_sync_clock(void)
378{
379 atomic_t *sw_ptr;
380 int rc;
381
382 sw_ptr = &get_cpu_var(clock_sync_word);
383 rc = (atomic_read(sw_ptr) & 0x80000000U) != 0;
Heiko Carstensbd119ee2009-12-07 12:52:14 +0100384 put_cpu_var(clock_sync_word);
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100385 return rc;
386}
387
Heiko Carstens750887d2008-12-25 13:38:37 +0100388/* Single threaded workqueue used for etr and stp sync events */
389static struct workqueue_struct *time_sync_wq;
390
391static void __init time_init_wq(void)
392{
Heiko Carstens179cb812009-01-23 16:40:26 +0100393 if (time_sync_wq)
394 return;
395 time_sync_wq = create_singlethread_workqueue("timesync");
Heiko Carstens750887d2008-12-25 13:38:37 +0100396}
397
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200398/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100399 * External Time Reference (ETR) code.
400 */
401static int etr_port0_online;
402static int etr_port1_online;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200403static int etr_steai_available;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100404
405static int __init early_parse_etr(char *p)
406{
407 if (strncmp(p, "off", 3) == 0)
408 etr_port0_online = etr_port1_online = 0;
409 else if (strncmp(p, "port0", 5) == 0)
410 etr_port0_online = 1;
411 else if (strncmp(p, "port1", 5) == 0)
412 etr_port1_online = 1;
413 else if (strncmp(p, "on", 2) == 0)
414 etr_port0_online = etr_port1_online = 1;
415 return 0;
416}
417early_param("etr", early_parse_etr);
418
419enum etr_event {
420 ETR_EVENT_PORT0_CHANGE,
421 ETR_EVENT_PORT1_CHANGE,
422 ETR_EVENT_PORT_ALERT,
423 ETR_EVENT_SYNC_CHECK,
424 ETR_EVENT_SWITCH_LOCAL,
425 ETR_EVENT_UPDATE,
426};
427
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100428/*
429 * Valid bit combinations of the eacr register are (x = don't care):
430 * e0 e1 dp p0 p1 ea es sl
431 * 0 0 x 0 0 0 0 0 initial, disabled state
432 * 0 0 x 0 1 1 0 0 port 1 online
433 * 0 0 x 1 0 1 0 0 port 0 online
434 * 0 0 x 1 1 1 0 0 both ports online
435 * 0 1 x 0 1 1 0 0 port 1 online and usable, ETR or PPS mode
436 * 0 1 x 0 1 1 0 1 port 1 online, usable and ETR mode
437 * 0 1 x 0 1 1 1 0 port 1 online, usable, PPS mode, in-sync
438 * 0 1 x 0 1 1 1 1 port 1 online, usable, ETR mode, in-sync
439 * 0 1 x 1 1 1 0 0 both ports online, port 1 usable
440 * 0 1 x 1 1 1 1 0 both ports online, port 1 usable, PPS mode, in-sync
441 * 0 1 x 1 1 1 1 1 both ports online, port 1 usable, ETR mode, in-sync
442 * 1 0 x 1 0 1 0 0 port 0 online and usable, ETR or PPS mode
443 * 1 0 x 1 0 1 0 1 port 0 online, usable and ETR mode
444 * 1 0 x 1 0 1 1 0 port 0 online, usable, PPS mode, in-sync
445 * 1 0 x 1 0 1 1 1 port 0 online, usable, ETR mode, in-sync
446 * 1 0 x 1 1 1 0 0 both ports online, port 0 usable
447 * 1 0 x 1 1 1 1 0 both ports online, port 0 usable, PPS mode, in-sync
448 * 1 0 x 1 1 1 1 1 both ports online, port 0 usable, ETR mode, in-sync
449 * 1 1 x 1 1 1 1 0 both ports online & usable, ETR, in-sync
450 * 1 1 x 1 1 1 1 1 both ports online & usable, ETR, in-sync
451 */
452static struct etr_eacr etr_eacr;
453static u64 etr_tolec; /* time of last eacr update */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100454static struct etr_aib etr_port0;
455static int etr_port0_uptodate;
456static struct etr_aib etr_port1;
457static int etr_port1_uptodate;
458static unsigned long etr_events;
459static struct timer_list etr_timer;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100460
461static void etr_timeout(unsigned long dummy);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200462static void etr_work_fn(struct work_struct *work);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100463static DEFINE_MUTEX(etr_work_mutex);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200464static DECLARE_WORK(etr_work, etr_work_fn);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100465
466/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100467 * Reset ETR attachment.
468 */
469static void etr_reset(void)
470{
471 etr_eacr = (struct etr_eacr) {
472 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
473 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
474 .es = 0, .sl = 0 };
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200475 if (etr_setr(&etr_eacr) == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100476 etr_tolec = get_clock();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200477 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100478 if (etr_port0_online && etr_port1_online)
479 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200480 } else if (etr_port0_online || etr_port1_online) {
Martin Schwidefskyfeab6502008-12-25 13:39:38 +0100481 pr_warning("The real or virtual hardware system does "
482 "not provide an ETR interface\n");
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200483 etr_port0_online = etr_port1_online = 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100484 }
485}
486
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200487static int __init etr_init(void)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100488{
489 struct etr_aib aib;
490
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200491 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200492 return 0;
Heiko Carstens750887d2008-12-25 13:38:37 +0100493 time_init_wq();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100494 /* Check if this machine has the steai instruction. */
495 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200496 etr_steai_available = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100497 setup_timer(&etr_timer, etr_timeout, 0UL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100498 if (etr_port0_online) {
499 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +0100500 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100501 }
502 if (etr_port1_online) {
503 set_bit(ETR_EVENT_PORT1_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 }
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200506 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100507}
508
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200509arch_initcall(etr_init);
510
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100511/*
512 * Two sorts of ETR machine checks. The architecture reads:
513 * "When a machine-check niterruption occurs and if a switch-to-local or
514 * ETR-sync-check interrupt request is pending but disabled, this pending
515 * disabled interruption request is indicated and is cleared".
516 * Which means that we can get etr_switch_to_local events from the machine
517 * check handler although the interruption condition is disabled. Lovely..
518 */
519
520/*
521 * Switch to local machine check. This is called when the last usable
522 * ETR port goes inactive. After switch to local the clock is not in sync.
523 */
524void etr_switch_to_local(void)
525{
526 if (!etr_eacr.sl)
527 return;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100528 disable_sync_clock(NULL);
Martin Schwidefsky33fea792010-07-27 19:29:38 +0200529 if (!test_and_set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events)) {
530 etr_eacr.es = etr_eacr.sl = 0;
531 etr_setr(&etr_eacr);
532 queue_work(time_sync_wq, &etr_work);
533 }
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100534}
535
536/*
537 * ETR sync check machine check. This is called when the ETR OTE and the
538 * local clock OTE are farther apart than the ETR sync check tolerance.
539 * After a ETR sync check the clock is not in sync. The machine check
540 * is broadcasted to all cpus at the same time.
541 */
542void etr_sync_check(void)
543{
544 if (!etr_eacr.es)
545 return;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +0100546 disable_sync_clock(NULL);
Martin Schwidefsky33fea792010-07-27 19:29:38 +0200547 if (!test_and_set_bit(ETR_EVENT_SYNC_CHECK, &etr_events)) {
548 etr_eacr.es = 0;
549 etr_setr(&etr_eacr);
550 queue_work(time_sync_wq, &etr_work);
551 }
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 Schwidefsky33fea792010-07-27 19:29:38 +0200913 if (!eacr.es || !check_sync_clock())
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
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100979 /* prevent multiple execution. */
980 mutex_lock(&etr_work_mutex);
981
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100982 /* Create working copy of etr_eacr. */
983 eacr = etr_eacr;
984
985 /* Check for the different events and their immediate effects. */
986 eacr = etr_handle_events(eacr);
987
988 /* Check if ETR is supposed to be active. */
989 eacr.ea = eacr.p0 || eacr.p1;
990 if (!eacr.ea) {
991 /* Both ports offline. Reset everything. */
992 eacr.dp = eacr.es = eacr.sl = 0;
Ingo Molnar1a781a72008-07-15 21:55:59 +0200993 on_each_cpu(disable_sync_clock, NULL, 1);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100994 del_timer_sync(&etr_timer);
995 etr_update_eacr(eacr);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +0100996 goto out_unlock;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100997 }
998
999 /* Store aib to get the current ETR status word. */
1000 BUG_ON(etr_stetr(&aib) != 0);
1001 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
1002 now = get_clock();
1003
1004 /*
1005 * Update the port information if the last stepping port change
1006 * or data port change is older than 1.6 seconds.
1007 */
1008 if (now >= etr_tolec + (1600000 << 12))
1009 eacr = etr_handle_update(&aib, eacr);
1010
1011 /*
1012 * Select ports to enable. The prefered synchronization mode is PPS.
1013 * If a port can be enabled depends on a number of things:
1014 * 1) The port needs to be online and uptodate. A port is not
1015 * disabled just because it is not uptodate, but it is only
1016 * enabled if it is uptodate.
1017 * 2) The port needs to have the same mode (pps / etr).
1018 * 3) The port needs to be usable -> etr_port_valid() == 1
1019 * 4) To enable the second port the clock needs to be in sync.
1020 * 5) If both ports are useable and are ETR ports, the network id
1021 * has to be the same.
1022 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
1023 */
1024 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
1025 eacr.sl = 0;
1026 eacr.e0 = 1;
1027 if (!etr_mode_is_pps(etr_eacr))
1028 eacr.es = 0;
1029 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
1030 eacr.e1 = 0;
1031 // FIXME: uptodate checks ?
1032 else if (etr_port0_uptodate && etr_port1_uptodate)
1033 eacr.e1 = 1;
1034 sync_port = (etr_port0_uptodate &&
1035 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001036 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1037 eacr.sl = 0;
1038 eacr.e0 = 0;
1039 eacr.e1 = 1;
1040 if (!etr_mode_is_pps(etr_eacr))
1041 eacr.es = 0;
1042 sync_port = (etr_port1_uptodate &&
1043 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001044 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1045 eacr.sl = 1;
1046 eacr.e0 = 1;
1047 if (!etr_mode_is_etr(etr_eacr))
1048 eacr.es = 0;
1049 if (!eacr.es || !eacr.p1 ||
1050 aib.esw.psc1 != etr_lpsc_operational_alt)
1051 eacr.e1 = 0;
1052 else if (etr_port0_uptodate && etr_port1_uptodate &&
1053 etr_compare_network(&etr_port0, &etr_port1))
1054 eacr.e1 = 1;
1055 sync_port = (etr_port0_uptodate &&
1056 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001057 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1058 eacr.sl = 1;
1059 eacr.e0 = 0;
1060 eacr.e1 = 1;
1061 if (!etr_mode_is_etr(etr_eacr))
1062 eacr.es = 0;
1063 sync_port = (etr_port1_uptodate &&
1064 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001065 } else {
1066 /* Both ports not usable. */
1067 eacr.es = eacr.sl = 0;
1068 sync_port = -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001069 }
1070
1071 /*
1072 * If the clock is in sync just update the eacr and return.
1073 * If there is no valid sync port wait for a port update.
1074 */
Martin Schwidefsky33fea792010-07-27 19:29:38 +02001075 if ((eacr.es && check_sync_clock()) || sync_port < 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001076 etr_update_eacr(eacr);
1077 etr_set_tolec_timeout(now);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001078 goto out_unlock;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001079 }
1080
1081 /*
1082 * Prepare control register for clock syncing
1083 * (reset data port bit, set sync check control.
1084 */
1085 eacr.dp = 0;
1086 eacr.es = 1;
1087
1088 /*
1089 * Update eacr and try to synchronize the clock. If the update
1090 * of eacr caused a stepping port switch (or if we have to
1091 * assume that a stepping port switch has occured) or the
1092 * clock syncing failed, reset the sync check control bit
1093 * and set up a timer to try again after 0.5 seconds
1094 */
1095 etr_update_eacr(eacr);
1096 if (now < etr_tolec + (1600000 << 12) ||
Heiko Carstens750887d2008-12-25 13:38:37 +01001097 etr_sync_clock_stop(&aib, sync_port) != 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001098 /* Sync failed. Try again in 1/2 second. */
1099 eacr.es = 0;
1100 etr_update_eacr(eacr);
1101 etr_set_sync_timeout();
1102 } else
1103 etr_set_tolec_timeout(now);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001104out_unlock:
1105 mutex_unlock(&etr_work_mutex);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001106}
1107
1108/*
1109 * Sysfs interface functions
1110 */
1111static struct sysdev_class etr_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001112 .name = "etr",
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001113};
1114
1115static struct sys_device etr_port0_dev = {
1116 .id = 0,
1117 .cls = &etr_sysclass,
1118};
1119
1120static struct sys_device etr_port1_dev = {
1121 .id = 1,
1122 .cls = &etr_sysclass,
1123};
1124
1125/*
1126 * ETR class attributes
1127 */
Andi Kleenc9be0a32010-01-05 12:47:58 +01001128static ssize_t etr_stepping_port_show(struct sysdev_class *class,
1129 struct sysdev_class_attribute *attr,
1130 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001131{
1132 return sprintf(buf, "%i\n", etr_port0.esw.p);
1133}
1134
1135static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1136
Andi Kleenc9be0a32010-01-05 12:47:58 +01001137static ssize_t etr_stepping_mode_show(struct sysdev_class *class,
1138 struct sysdev_class_attribute *attr,
1139 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001140{
1141 char *mode_str;
1142
1143 if (etr_mode_is_pps(etr_eacr))
1144 mode_str = "pps";
1145 else if (etr_mode_is_etr(etr_eacr))
1146 mode_str = "etr";
1147 else
1148 mode_str = "local";
1149 return sprintf(buf, "%s\n", mode_str);
1150}
1151
1152static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1153
1154/*
1155 * ETR port attributes
1156 */
1157static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1158{
1159 if (dev == &etr_port0_dev)
1160 return etr_port0_online ? &etr_port0 : NULL;
1161 else
1162 return etr_port1_online ? &etr_port1 : NULL;
1163}
1164
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001165static ssize_t etr_online_show(struct sys_device *dev,
1166 struct sysdev_attribute *attr,
1167 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001168{
1169 unsigned int online;
1170
1171 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1172 return sprintf(buf, "%i\n", online);
1173}
1174
1175static ssize_t etr_online_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001176 struct sysdev_attribute *attr,
1177 const char *buf, size_t count)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001178{
1179 unsigned int value;
1180
1181 value = simple_strtoul(buf, NULL, 0);
1182 if (value != 0 && value != 1)
1183 return -EINVAL;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001184 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1185 return -EOPNOTSUPP;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001186 mutex_lock(&clock_sync_mutex);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001187 if (dev == &etr_port0_dev) {
1188 if (etr_port0_online == value)
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001189 goto out; /* Nothing to do. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001190 etr_port0_online = value;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001191 if (etr_port0_online && etr_port1_online)
1192 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1193 else
1194 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001195 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)
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001199 goto out; /* Nothing to do. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001200 etr_port1_online = value;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001201 if (etr_port0_online && etr_port1_online)
1202 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1203 else
1204 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001205 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Heiko Carstens750887d2008-12-25 13:38:37 +01001206 queue_work(time_sync_wq, &etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001207 }
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001208out:
1209 mutex_unlock(&clock_sync_mutex);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001210 return count;
1211}
1212
1213static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1214
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001215static ssize_t etr_stepping_control_show(struct sys_device *dev,
1216 struct sysdev_attribute *attr,
1217 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001218{
1219 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1220 etr_eacr.e0 : etr_eacr.e1);
1221}
1222
1223static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1224
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001225static ssize_t etr_mode_code_show(struct sys_device *dev,
1226 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001227{
1228 if (!etr_port0_online && !etr_port1_online)
1229 /* Status word is not uptodate if both ports are offline. */
1230 return -ENODATA;
1231 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1232 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1233}
1234
1235static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1236
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001237static ssize_t etr_untuned_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.u);
1245}
1246
1247static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1248
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001249static ssize_t etr_network_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.net_id);
1257}
1258
1259static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1260
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001261static ssize_t etr_id_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_id);
1269}
1270
1271static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1272
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001273static ssize_t etr_port_number_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.v1)
1279 return -ENODATA;
1280 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1281}
1282
1283static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1284
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001285static ssize_t etr_coupled_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.c);
1293}
1294
1295static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1296
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001297static ssize_t etr_local_time_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.blto);
1305}
1306
1307static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1308
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001309static ssize_t etr_utc_offset_show(struct sys_device *dev,
1310 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001311{
1312 struct etr_aib *aib = etr_aib_from_dev(dev);
1313
1314 if (!aib || !aib->slsw.v3)
1315 return -ENODATA;
1316 return sprintf(buf, "%i\n", aib->edf3.buo);
1317}
1318
1319static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1320
1321static struct sysdev_attribute *etr_port_attributes[] = {
1322 &attr_online,
1323 &attr_stepping_control,
1324 &attr_state_code,
1325 &attr_untuned,
1326 &attr_network,
1327 &attr_id,
1328 &attr_port,
1329 &attr_coupled,
1330 &attr_local_time,
1331 &attr_utc_offset,
1332 NULL
1333};
1334
1335static int __init etr_register_port(struct sys_device *dev)
1336{
1337 struct sysdev_attribute **attr;
1338 int rc;
1339
1340 rc = sysdev_register(dev);
1341 if (rc)
1342 goto out;
1343 for (attr = etr_port_attributes; *attr; attr++) {
1344 rc = sysdev_create_file(dev, *attr);
1345 if (rc)
1346 goto out_unreg;
1347 }
1348 return 0;
1349out_unreg:
1350 for (; attr >= etr_port_attributes; attr--)
1351 sysdev_remove_file(dev, *attr);
1352 sysdev_unregister(dev);
1353out:
1354 return rc;
1355}
1356
1357static void __init etr_unregister_port(struct sys_device *dev)
1358{
1359 struct sysdev_attribute **attr;
1360
1361 for (attr = etr_port_attributes; *attr; attr++)
1362 sysdev_remove_file(dev, *attr);
1363 sysdev_unregister(dev);
1364}
1365
1366static int __init etr_init_sysfs(void)
1367{
1368 int rc;
1369
1370 rc = sysdev_class_register(&etr_sysclass);
1371 if (rc)
1372 goto out;
1373 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1374 if (rc)
1375 goto out_unreg_class;
1376 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1377 if (rc)
1378 goto out_remove_stepping_port;
1379 rc = etr_register_port(&etr_port0_dev);
1380 if (rc)
1381 goto out_remove_stepping_mode;
1382 rc = etr_register_port(&etr_port1_dev);
1383 if (rc)
1384 goto out_remove_port0;
1385 return 0;
1386
1387out_remove_port0:
1388 etr_unregister_port(&etr_port0_dev);
1389out_remove_stepping_mode:
1390 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1391out_remove_stepping_port:
1392 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1393out_unreg_class:
1394 sysdev_class_unregister(&etr_sysclass);
1395out:
1396 return rc;
1397}
1398
1399device_initcall(etr_init_sysfs);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001400
1401/*
1402 * Server Time Protocol (STP) code.
1403 */
1404static int stp_online;
1405static struct stp_sstpi stp_info;
1406static void *stp_page;
1407
1408static void stp_work_fn(struct work_struct *work);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001409static DEFINE_MUTEX(stp_work_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001410static DECLARE_WORK(stp_work, stp_work_fn);
Martin Schwidefsky04362302009-04-14 15:36:19 +02001411static struct timer_list stp_timer;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001412
1413static int __init early_parse_stp(char *p)
1414{
1415 if (strncmp(p, "off", 3) == 0)
1416 stp_online = 0;
1417 else if (strncmp(p, "on", 2) == 0)
1418 stp_online = 1;
1419 return 0;
1420}
1421early_param("stp", early_parse_stp);
1422
1423/*
1424 * Reset STP attachment.
1425 */
Heiko Carstens8f847002008-08-01 16:39:19 +02001426static void __init stp_reset(void)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001427{
1428 int rc;
1429
Heiko Carstensd7d11042009-06-22 12:08:03 +02001430 stp_page = (void *) get_zeroed_page(GFP_ATOMIC);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001431 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky4a672cf2008-10-10 21:33:29 +02001432 if (rc == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001433 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1434 else if (stp_online) {
Martin Schwidefskyfeab6502008-12-25 13:39:38 +01001435 pr_warning("The real or virtual hardware system does "
1436 "not provide an STP interface\n");
Heiko Carstensd7d11042009-06-22 12:08:03 +02001437 free_page((unsigned long) stp_page);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001438 stp_page = NULL;
1439 stp_online = 0;
1440 }
1441}
1442
Martin Schwidefsky04362302009-04-14 15:36:19 +02001443static void stp_timeout(unsigned long dummy)
1444{
1445 queue_work(time_sync_wq, &stp_work);
1446}
1447
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001448static int __init stp_init(void)
1449{
Heiko Carstens750887d2008-12-25 13:38:37 +01001450 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1451 return 0;
Martin Schwidefsky04362302009-04-14 15:36:19 +02001452 setup_timer(&stp_timer, stp_timeout, 0UL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001453 time_init_wq();
1454 if (!stp_online)
1455 return 0;
1456 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001457 return 0;
1458}
1459
1460arch_initcall(stp_init);
1461
1462/*
1463 * STP timing alert. There are three causes:
1464 * 1) timing status change
1465 * 2) link availability change
1466 * 3) time control parameter change
1467 * In all three cases we are only interested in the clock source state.
1468 * If a STP clock source is now available use it.
1469 */
1470static void stp_timing_alert(struct stp_irq_parm *intparm)
1471{
1472 if (intparm->tsc || intparm->lac || intparm->tcpc)
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 sync check machine check. This is called when the timing state
1478 * changes from the synchronized state to the unsynchronized state.
1479 * After a STP sync check the clock is not in sync. The machine check
1480 * is broadcasted to all cpus at the same time.
1481 */
1482void stp_sync_check(void)
1483{
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001484 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001485 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001486}
1487
1488/*
1489 * STP island condition machine check. This is called when an attached
1490 * server attempts to communicate over an STP link and the servers
1491 * have matching CTN ids and have a valid stratum-1 configuration
1492 * but the configurations do not match.
1493 */
1494void stp_island_check(void)
1495{
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001496 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001497 queue_work(time_sync_wq, &stp_work);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001498}
1499
Heiko Carstens750887d2008-12-25 13:38:37 +01001500
1501static int stp_sync_clock(void *data)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001502{
Heiko Carstens750887d2008-12-25 13:38:37 +01001503 static int first;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001504 unsigned long long old_clock, delta;
Heiko Carstens750887d2008-12-25 13:38:37 +01001505 struct clock_sync_data *stp_sync;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001506 int rc;
1507
Heiko Carstens750887d2008-12-25 13:38:37 +01001508 stp_sync = data;
1509
1510 if (xchg(&first, 1) == 1) {
1511 /* Slave */
1512 clock_sync_cpu(stp_sync);
1513 return 0;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001514 }
1515
Heiko Carstens750887d2008-12-25 13:38:37 +01001516 /* Wait until all other cpus entered the sync function. */
1517 while (atomic_read(&stp_sync->cpus) != 0)
1518 cpu_relax();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001519
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001520 enable_sync_clock();
1521
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001522 rc = 0;
1523 if (stp_info.todoff[0] || stp_info.todoff[1] ||
1524 stp_info.todoff[2] || stp_info.todoff[3] ||
1525 stp_info.tmd != 2) {
1526 old_clock = get_clock();
1527 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1528 if (rc == 0) {
1529 delta = adjust_time(old_clock, get_clock(), 0);
1530 fixup_clock_comparator(delta);
1531 rc = chsc_sstpi(stp_page, &stp_info,
1532 sizeof(struct stp_sstpi));
1533 if (rc == 0 && stp_info.tmd != 2)
1534 rc = -EAGAIN;
1535 }
1536 }
1537 if (rc) {
1538 disable_sync_clock(NULL);
Heiko Carstens750887d2008-12-25 13:38:37 +01001539 stp_sync->in_sync = -EAGAIN;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001540 } else
Heiko Carstens750887d2008-12-25 13:38:37 +01001541 stp_sync->in_sync = 1;
1542 xchg(&first, 0);
1543 return 0;
1544}
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001545
Heiko Carstens750887d2008-12-25 13:38:37 +01001546/*
1547 * STP work. Check for the STP state and take over the clock
1548 * synchronization if the STP clock source is usable.
1549 */
1550static void stp_work_fn(struct work_struct *work)
1551{
1552 struct clock_sync_data stp_sync;
1553 int rc;
1554
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001555 /* prevent multiple execution. */
1556 mutex_lock(&stp_work_mutex);
1557
Heiko Carstens750887d2008-12-25 13:38:37 +01001558 if (!stp_online) {
1559 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky04362302009-04-14 15:36:19 +02001560 del_timer_sync(&stp_timer);
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001561 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001562 }
1563
1564 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1565 if (rc)
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001566 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001567
1568 rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1569 if (rc || stp_info.c == 0)
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001570 goto out_unlock;
Heiko Carstens750887d2008-12-25 13:38:37 +01001571
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001572 /* Skip synchronization if the clock is already in sync. */
1573 if (check_sync_clock())
1574 goto out_unlock;
1575
Heiko Carstens750887d2008-12-25 13:38:37 +01001576 memset(&stp_sync, 0, sizeof(stp_sync));
1577 get_online_cpus();
1578 atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
1579 stop_machine(stp_sync_clock, &stp_sync, &cpu_online_map);
1580 put_online_cpus();
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001581
Martin Schwidefsky04362302009-04-14 15:36:19 +02001582 if (!check_sync_clock())
1583 /*
1584 * There is a usable clock but the synchonization failed.
1585 * Retry after a second.
1586 */
1587 mod_timer(&stp_timer, jiffies + HZ);
1588
Martin Schwidefsky0b3016b2008-12-25 13:38:38 +01001589out_unlock:
1590 mutex_unlock(&stp_work_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001591}
1592
1593/*
1594 * STP class sysfs interface functions
1595 */
1596static struct sysdev_class stp_sysclass = {
1597 .name = "stp",
1598};
1599
Andi Kleenc9be0a32010-01-05 12:47:58 +01001600static ssize_t stp_ctn_id_show(struct sysdev_class *class,
1601 struct sysdev_class_attribute *attr,
1602 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001603{
1604 if (!stp_online)
1605 return -ENODATA;
1606 return sprintf(buf, "%016llx\n",
1607 *(unsigned long long *) stp_info.ctnid);
1608}
1609
1610static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1611
Andi Kleenc9be0a32010-01-05 12:47:58 +01001612static ssize_t stp_ctn_type_show(struct sysdev_class *class,
1613 struct sysdev_class_attribute *attr,
1614 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001615{
1616 if (!stp_online)
1617 return -ENODATA;
1618 return sprintf(buf, "%i\n", stp_info.ctn);
1619}
1620
1621static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1622
Andi Kleenc9be0a32010-01-05 12:47:58 +01001623static ssize_t stp_dst_offset_show(struct sysdev_class *class,
1624 struct sysdev_class_attribute *attr,
1625 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001626{
1627 if (!stp_online || !(stp_info.vbits & 0x2000))
1628 return -ENODATA;
1629 return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1630}
1631
1632static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1633
Andi Kleenc9be0a32010-01-05 12:47:58 +01001634static ssize_t stp_leap_seconds_show(struct sysdev_class *class,
1635 struct sysdev_class_attribute *attr,
1636 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001637{
1638 if (!stp_online || !(stp_info.vbits & 0x8000))
1639 return -ENODATA;
1640 return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1641}
1642
1643static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1644
Andi Kleenc9be0a32010-01-05 12:47:58 +01001645static ssize_t stp_stratum_show(struct sysdev_class *class,
1646 struct sysdev_class_attribute *attr,
1647 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001648{
1649 if (!stp_online)
1650 return -ENODATA;
1651 return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1652}
1653
1654static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1655
Andi Kleenc9be0a32010-01-05 12:47:58 +01001656static ssize_t stp_time_offset_show(struct sysdev_class *class,
1657 struct sysdev_class_attribute *attr,
1658 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001659{
1660 if (!stp_online || !(stp_info.vbits & 0x0800))
1661 return -ENODATA;
1662 return sprintf(buf, "%i\n", (int) stp_info.tto);
1663}
1664
1665static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1666
Andi Kleenc9be0a32010-01-05 12:47:58 +01001667static ssize_t stp_time_zone_offset_show(struct sysdev_class *class,
1668 struct sysdev_class_attribute *attr,
1669 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001670{
1671 if (!stp_online || !(stp_info.vbits & 0x4000))
1672 return -ENODATA;
1673 return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1674}
1675
1676static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1677 stp_time_zone_offset_show, NULL);
1678
Andi Kleenc9be0a32010-01-05 12:47:58 +01001679static ssize_t stp_timing_mode_show(struct sysdev_class *class,
1680 struct sysdev_class_attribute *attr,
1681 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001682{
1683 if (!stp_online)
1684 return -ENODATA;
1685 return sprintf(buf, "%i\n", stp_info.tmd);
1686}
1687
1688static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1689
Andi Kleenc9be0a32010-01-05 12:47:58 +01001690static ssize_t stp_timing_state_show(struct sysdev_class *class,
1691 struct sysdev_class_attribute *attr,
1692 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001693{
1694 if (!stp_online)
1695 return -ENODATA;
1696 return sprintf(buf, "%i\n", stp_info.tst);
1697}
1698
1699static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1700
Andi Kleenc9be0a32010-01-05 12:47:58 +01001701static ssize_t stp_online_show(struct sysdev_class *class,
1702 struct sysdev_class_attribute *attr,
1703 char *buf)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001704{
1705 return sprintf(buf, "%i\n", stp_online);
1706}
1707
1708static ssize_t stp_online_store(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01001709 struct sysdev_class_attribute *attr,
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001710 const char *buf, size_t count)
1711{
1712 unsigned int value;
1713
1714 value = simple_strtoul(buf, NULL, 0);
1715 if (value != 0 && value != 1)
1716 return -EINVAL;
1717 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1718 return -EOPNOTSUPP;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001719 mutex_lock(&clock_sync_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001720 stp_online = value;
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001721 if (stp_online)
1722 set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1723 else
1724 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
Heiko Carstens750887d2008-12-25 13:38:37 +01001725 queue_work(time_sync_wq, &stp_work);
Martin Schwidefsky8283cb42009-03-26 15:24:21 +01001726 mutex_unlock(&clock_sync_mutex);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001727 return count;
1728}
1729
1730/*
1731 * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1732 * stp/online but attr_online already exists in this file ..
1733 */
1734static struct sysdev_class_attribute attr_stp_online = {
1735 .attr = { .name = "online", .mode = 0600 },
1736 .show = stp_online_show,
1737 .store = stp_online_store,
1738};
1739
1740static struct sysdev_class_attribute *stp_attributes[] = {
1741 &attr_ctn_id,
1742 &attr_ctn_type,
1743 &attr_dst_offset,
1744 &attr_leap_seconds,
1745 &attr_stp_online,
1746 &attr_stratum,
1747 &attr_time_offset,
1748 &attr_time_zone_offset,
1749 &attr_timing_mode,
1750 &attr_timing_state,
1751 NULL
1752};
1753
1754static int __init stp_init_sysfs(void)
1755{
1756 struct sysdev_class_attribute **attr;
1757 int rc;
1758
1759 rc = sysdev_class_register(&stp_sysclass);
1760 if (rc)
1761 goto out;
1762 for (attr = stp_attributes; *attr; attr++) {
1763 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1764 if (rc)
1765 goto out_unreg;
1766 }
1767 return 0;
1768out_unreg:
1769 for (; attr >= stp_attributes; attr--)
1770 sysdev_class_remove_file(&stp_sysclass, *attr);
1771 sysdev_class_unregister(&stp_sysclass);
1772out:
1773 return rc;
1774}
1775
1776device_initcall(stp_init_sysfs);