blob: b73bbf31f43298e65452d24c9ad95ea734e50608 [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>
23#include <linux/time.h>
Ralf Baechle3367b992007-05-08 00:27:52 -070024#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/init.h>
27#include <linux/smp.h>
28#include <linux/types.h>
29#include <linux/profile.h>
30#include <linux/timex.h>
31#include <linux/notifier.h>
Martin Schwidefskydc64bef2006-10-06 16:38:48 +020032#include <linux/clocksource.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020033#include <linux/clockchips.h>
Martin Schwidefskyd2fec592008-07-14 09:58:56 +020034#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/delay.h>
37#include <asm/s390_ext.h>
38#include <asm/div64.h>
Martin Schwidefskyb0206322008-12-25 13:38:36 +010039#include <asm/vdso.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020041#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/timer.h>
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010043#include <asm/etr.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020044#include <asm/cio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/* change this if you have some constant time drift */
47#define USECS_PER_JIFFY ((unsigned long) 1000000/HZ)
48#define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
49
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010050/* The value of the TOD clock for 1.1.1970. */
51#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * Create a small time difference between the timer interrupts
55 * on the different cpus to avoid lock contention.
56 */
57#define CPU_DEVIATION (smp_processor_id() << 12)
58
59#define TICK_SIZE tick
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static ext_int_info_t ext_int_info_cc;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010062static ext_int_info_t ext_int_etr_cc;
Christian Borntraeger8107d822008-11-27 11:05:56 +010063static u64 sched_clock_base_cc;
Heiko Carstens5a62b192008-04-17 07:46:25 +020064
65static DEFINE_PER_CPU(struct clock_event_device, comparators);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * Scheduler clock - returns current time in nanosec units.
69 */
70unsigned long long sched_clock(void)
71{
Christian Borntraeger8107d822008-11-27 11:05:56 +010072 return ((get_clock_xt() - sched_clock_base_cc) * 125) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Jan Glauber32f65f22006-02-01 03:06:33 -080075/*
76 * Monotonic_clock - returns # of nanoseconds passed since time_init()
77 */
78unsigned long long monotonic_clock(void)
79{
80 return sched_clock();
81}
82EXPORT_SYMBOL(monotonic_clock);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084void tod_to_timeval(__u64 todval, struct timespec *xtime)
85{
86 unsigned long long sec;
87
88 sec = todval >> 12;
89 do_div(sec, 1000000);
90 xtime->tv_sec = sec;
91 todval -= (sec * 1000000) << 12;
92 xtime->tv_nsec = ((todval * 1000) >> 12);
93}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifdef CONFIG_PROFILING
Heiko Carstens5a489b92006-10-06 16:38:35 +020096#define s390_do_profile() profile_tick(CPU_PROFILING)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#else
Heiko Carstens5a489b92006-10-06 16:38:35 +020098#define s390_do_profile() do { ; } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif /* CONFIG_PROFILING */
100
Heiko Carstens5a62b192008-04-17 07:46:25 +0200101void clock_comparator_work(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200103 struct clock_event_device *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Heiko Carstens5a62b192008-04-17 07:46:25 +0200105 S390_lowcore.clock_comparator = -1ULL;
106 set_clock_comparator(S390_lowcore.clock_comparator);
107 cd = &__get_cpu_var(comparators);
108 cd->event_handler(cd);
Heiko Carstens5a489b92006-10-06 16:38:35 +0200109 s390_do_profile();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
Heiko Carstens5a62b192008-04-17 07:46:25 +0200113 * Fixup the clock comparator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200115static void fixup_clock_comparator(unsigned long long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200117 /* If nobody is waiting there's nothing to fix. */
118 if (S390_lowcore.clock_comparator == -1ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200120 S390_lowcore.clock_comparator += delta;
121 set_clock_comparator(S390_lowcore.clock_comparator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Heiko Carstens5a62b192008-04-17 07:46:25 +0200124static int s390_next_event(unsigned long delta,
125 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200127 S390_lowcore.clock_comparator = get_clock() + delta;
128 set_clock_comparator(S390_lowcore.clock_comparator);
129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Heiko Carstens5a62b192008-04-17 07:46:25 +0200132static void s390_set_mode(enum clock_event_mode mode,
133 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100135}
136
137/*
138 * Set up lowcore and control register of the current cpu to
139 * enable TOD clock and clock comparator interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
141void init_cpu_timer(void)
142{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200143 struct clock_event_device *cd;
144 int cpu;
145
146 S390_lowcore.clock_comparator = -1ULL;
147 set_clock_comparator(S390_lowcore.clock_comparator);
148
149 cpu = smp_processor_id();
150 cd = &per_cpu(comparators, cpu);
151 cd->name = "comparator";
152 cd->features = CLOCK_EVT_FEAT_ONESHOT;
153 cd->mult = 16777;
154 cd->shift = 12;
155 cd->min_delta_ns = 1;
156 cd->max_delta_ns = LONG_MAX;
157 cd->rating = 400;
158 cd->cpumask = cpumask_of_cpu(cpu);
159 cd->set_next_event = s390_next_event;
160 cd->set_mode = s390_set_mode;
161
162 clockevents_register_device(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100164 /* Enable clock comparator timer interrupt. */
165 __ctl_set_bit(0,11);
166
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200167 /* Always allow the timing alert external interrupt. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100168 __ctl_set_bit(0, 4);
169}
170
171static void clock_comparator_interrupt(__u16 code)
172{
Heiko Carstensd3d238c2008-10-03 21:54:59 +0200173 if (S390_lowcore.clock_comparator == -1ULL)
174 set_clock_comparator(S390_lowcore.clock_comparator);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100175}
176
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200177static void etr_timing_alert(struct etr_irq_parm *);
178static void stp_timing_alert(struct stp_irq_parm *);
179
180static void timing_alert_interrupt(__u16 code)
181{
182 if (S390_lowcore.ext_params & 0x00c40000)
183 etr_timing_alert((struct etr_irq_parm *)
184 &S390_lowcore.ext_params);
185 if (S390_lowcore.ext_params & 0x00038000)
186 stp_timing_alert((struct stp_irq_parm *)
187 &S390_lowcore.ext_params);
188}
189
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100190static void etr_reset(void);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200191static void stp_reset(void);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100192
193/*
194 * Get the TOD clock running.
195 */
196static u64 __init reset_tod_clock(void)
197{
198 u64 time;
199
200 etr_reset();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200201 stp_reset();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100202 if (store_clock(&time) == 0)
203 return time;
204 /* TOD clock not running. Set the clock to Unix Epoch. */
205 if (set_clock(TOD_UNIX_EPOCH) != 0 || store_clock(&time) != 0)
206 panic("TOD clock not operational.");
207
208 return TOD_UNIX_EPOCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200211static cycle_t read_tod_clock(void)
212{
213 return get_clock();
214}
215
216static struct clocksource clocksource_tod = {
217 .name = "tod",
Christian Borntraegerd2cb0e62007-11-05 11:10:14 +0100218 .rating = 400,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200219 .read = read_tod_clock,
220 .mask = -1ULL,
221 .mult = 1000,
222 .shift = 12,
Thomas Gleixnercc02d802007-02-16 01:27:39 -0800223 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200224};
225
226
Martin Schwidefskyb0206322008-12-25 13:38:36 +0100227void update_vsyscall(struct timespec *wall_time, struct clocksource *clock)
228{
229 if (clock != &clocksource_tod)
230 return;
231
232 /* Make userspace gettimeofday spin until we're done. */
233 ++vdso_data->tb_update_count;
234 smp_wmb();
235 vdso_data->xtime_tod_stamp = clock->cycle_last;
236 vdso_data->xtime_clock_sec = xtime.tv_sec;
237 vdso_data->xtime_clock_nsec = xtime.tv_nsec;
238 vdso_data->wtom_clock_sec = wall_to_monotonic.tv_sec;
239 vdso_data->wtom_clock_nsec = wall_to_monotonic.tv_nsec;
240 smp_wmb();
241 ++vdso_data->tb_update_count;
242}
243
244extern struct timezone sys_tz;
245
246void update_vsyscall_tz(void)
247{
248 /* Make userspace gettimeofday spin until we're done. */
249 ++vdso_data->tb_update_count;
250 smp_wmb();
251 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
252 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
253 smp_wmb();
254 ++vdso_data->tb_update_count;
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/*
258 * Initialize the TOD clock and the CPU timer of
259 * the boot cpu.
260 */
261void __init time_init(void)
262{
Christian Borntraeger8107d822008-11-27 11:05:56 +0100263 sched_clock_base_cc = reset_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* set xtime */
Christian Borntraeger8107d822008-11-27 11:05:56 +0100266 tod_to_timeval(sched_clock_base_cc - TOD_UNIX_EPOCH, &xtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 set_normalized_timespec(&wall_to_monotonic,
268 -xtime.tv_sec, -xtime.tv_nsec);
269
270 /* request the clock comparator external interrupt */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100271 if (register_early_external_interrupt(0x1004,
272 clock_comparator_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 &ext_int_info_cc) != 0)
274 panic("Couldn't request external interrupt 0x1004");
275
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200276 if (clocksource_register(&clocksource_tod) != 0)
277 panic("Could not register TOD clock source");
278
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200279 /* request the timing alert external interrupt */
280 if (register_early_external_interrupt(0x1406,
281 timing_alert_interrupt,
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100282 &ext_int_etr_cc) != 0)
283 panic("Couldn't request external interrupt 0x1406");
284
285 /* Enable TOD clock interrupts on the boot cpu. */
286 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#ifdef CONFIG_VIRT_TIMER
289 vtime_init();
290#endif
291}
292
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100293/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200294 * The time is "clock". old is what we think the time is.
295 * Adjust the value by a multiple of jiffies and add the delta to ntp.
296 * "delay" is an approximation how long the synchronization took. If
297 * the time correction is positive, then "delay" is subtracted from
298 * the time difference and only the remaining part is passed to ntp.
299 */
300static unsigned long long adjust_time(unsigned long long old,
301 unsigned long long clock,
302 unsigned long long delay)
303{
304 unsigned long long delta, ticks;
305 struct timex adjust;
306
307 if (clock > old) {
308 /* It is later than we thought. */
309 delta = ticks = clock - old;
310 delta = ticks = (delta < delay) ? 0 : delta - delay;
311 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
312 adjust.offset = ticks * (1000000 / HZ);
313 } else {
314 /* It is earlier than we thought. */
315 delta = ticks = old - clock;
316 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
317 delta = -delta;
318 adjust.offset = -ticks * (1000000 / HZ);
319 }
Christian Borntraeger8107d822008-11-27 11:05:56 +0100320 sched_clock_base_cc += delta;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200321 if (adjust.offset != 0) {
322 printk(KERN_NOTICE "etr: time adjusted by %li micro-seconds\n",
323 adjust.offset);
324 adjust.modes = ADJ_OFFSET_SINGLESHOT;
325 do_adjtimex(&adjust);
326 }
327 return delta;
328}
329
330static DEFINE_PER_CPU(atomic_t, clock_sync_word);
331static unsigned long clock_sync_flags;
332
333#define CLOCK_SYNC_HAS_ETR 0
334#define CLOCK_SYNC_HAS_STP 1
335#define CLOCK_SYNC_ETR 2
336#define CLOCK_SYNC_STP 3
337
338/*
339 * The synchronous get_clock function. It will write the current clock
340 * value to the clock pointer and return 0 if the clock is in sync with
341 * the external time source. If the clock mode is local it will return
342 * -ENOSYS and -EAGAIN if the clock is not in sync with the external
343 * reference.
344 */
345int get_sync_clock(unsigned long long *clock)
346{
347 atomic_t *sw_ptr;
348 unsigned int sw0, sw1;
349
350 sw_ptr = &get_cpu_var(clock_sync_word);
351 sw0 = atomic_read(sw_ptr);
352 *clock = get_clock();
353 sw1 = atomic_read(sw_ptr);
354 put_cpu_var(clock_sync_sync);
355 if (sw0 == sw1 && (sw0 & 0x80000000U))
356 /* Success: time is in sync. */
357 return 0;
358 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags) &&
359 !test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
360 return -ENOSYS;
361 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags) &&
362 !test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
363 return -EACCES;
364 return -EAGAIN;
365}
366EXPORT_SYMBOL(get_sync_clock);
367
368/*
369 * Make get_sync_clock return -EAGAIN.
370 */
371static void disable_sync_clock(void *dummy)
372{
373 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
374 /*
375 * Clear the in-sync bit 2^31. All get_sync_clock calls will
376 * fail until the sync bit is turned back on. In addition
377 * increase the "sequence" counter to avoid the race of an
378 * etr event and the complete recovery against get_sync_clock.
379 */
380 atomic_clear_mask(0x80000000, sw_ptr);
381 atomic_inc(sw_ptr);
382}
383
384/*
385 * Make get_sync_clock return 0 again.
386 * Needs to be called from a context disabled for preemption.
387 */
388static void enable_sync_clock(void)
389{
390 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
391 atomic_set_mask(0x80000000, sw_ptr);
392}
393
394/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100395 * External Time Reference (ETR) code.
396 */
397static int etr_port0_online;
398static int etr_port1_online;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200399static int etr_steai_available;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100400
401static int __init early_parse_etr(char *p)
402{
403 if (strncmp(p, "off", 3) == 0)
404 etr_port0_online = etr_port1_online = 0;
405 else if (strncmp(p, "port0", 5) == 0)
406 etr_port0_online = 1;
407 else if (strncmp(p, "port1", 5) == 0)
408 etr_port1_online = 1;
409 else if (strncmp(p, "on", 2) == 0)
410 etr_port0_online = etr_port1_online = 1;
411 return 0;
412}
413early_param("etr", early_parse_etr);
414
415enum etr_event {
416 ETR_EVENT_PORT0_CHANGE,
417 ETR_EVENT_PORT1_CHANGE,
418 ETR_EVENT_PORT_ALERT,
419 ETR_EVENT_SYNC_CHECK,
420 ETR_EVENT_SWITCH_LOCAL,
421 ETR_EVENT_UPDATE,
422};
423
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100424/*
425 * Valid bit combinations of the eacr register are (x = don't care):
426 * e0 e1 dp p0 p1 ea es sl
427 * 0 0 x 0 0 0 0 0 initial, disabled state
428 * 0 0 x 0 1 1 0 0 port 1 online
429 * 0 0 x 1 0 1 0 0 port 0 online
430 * 0 0 x 1 1 1 0 0 both ports online
431 * 0 1 x 0 1 1 0 0 port 1 online and usable, ETR or PPS mode
432 * 0 1 x 0 1 1 0 1 port 1 online, usable and ETR mode
433 * 0 1 x 0 1 1 1 0 port 1 online, usable, PPS mode, in-sync
434 * 0 1 x 0 1 1 1 1 port 1 online, usable, ETR mode, in-sync
435 * 0 1 x 1 1 1 0 0 both ports online, port 1 usable
436 * 0 1 x 1 1 1 1 0 both ports online, port 1 usable, PPS mode, in-sync
437 * 0 1 x 1 1 1 1 1 both ports online, port 1 usable, ETR mode, in-sync
438 * 1 0 x 1 0 1 0 0 port 0 online and usable, ETR or PPS mode
439 * 1 0 x 1 0 1 0 1 port 0 online, usable and ETR mode
440 * 1 0 x 1 0 1 1 0 port 0 online, usable, PPS mode, in-sync
441 * 1 0 x 1 0 1 1 1 port 0 online, usable, ETR mode, in-sync
442 * 1 0 x 1 1 1 0 0 both ports online, port 0 usable
443 * 1 0 x 1 1 1 1 0 both ports online, port 0 usable, PPS mode, in-sync
444 * 1 0 x 1 1 1 1 1 both ports online, port 0 usable, ETR mode, in-sync
445 * 1 1 x 1 1 1 1 0 both ports online & usable, ETR, in-sync
446 * 1 1 x 1 1 1 1 1 both ports online & usable, ETR, in-sync
447 */
448static struct etr_eacr etr_eacr;
449static u64 etr_tolec; /* time of last eacr update */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100450static struct etr_aib etr_port0;
451static int etr_port0_uptodate;
452static struct etr_aib etr_port1;
453static int etr_port1_uptodate;
454static unsigned long etr_events;
455static struct timer_list etr_timer;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100456
457static void etr_timeout(unsigned long dummy);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200458static void etr_work_fn(struct work_struct *work);
459static DECLARE_WORK(etr_work, etr_work_fn);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100460
461/*
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100462 * Reset ETR attachment.
463 */
464static void etr_reset(void)
465{
466 etr_eacr = (struct etr_eacr) {
467 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
468 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
469 .es = 0, .sl = 0 };
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200470 if (etr_setr(&etr_eacr) == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100471 etr_tolec = get_clock();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200472 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
473 } else if (etr_port0_online || etr_port1_online) {
474 printk(KERN_WARNING "Running on non ETR capable "
475 "machine, only local mode available.\n");
476 etr_port0_online = etr_port1_online = 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100477 }
478}
479
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200480static int __init etr_init(void)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100481{
482 struct etr_aib aib;
483
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200484 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200485 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100486 /* Check if this machine has the steai instruction. */
487 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200488 etr_steai_available = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100489 setup_timer(&etr_timer, etr_timeout, 0UL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100490 if (etr_port0_online) {
491 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200492 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100493 }
494 if (etr_port1_online) {
495 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200496 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100497 }
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200498 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100499}
500
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200501arch_initcall(etr_init);
502
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100503/*
504 * Two sorts of ETR machine checks. The architecture reads:
505 * "When a machine-check niterruption occurs and if a switch-to-local or
506 * ETR-sync-check interrupt request is pending but disabled, this pending
507 * disabled interruption request is indicated and is cleared".
508 * Which means that we can get etr_switch_to_local events from the machine
509 * check handler although the interruption condition is disabled. Lovely..
510 */
511
512/*
513 * Switch to local machine check. This is called when the last usable
514 * ETR port goes inactive. After switch to local the clock is not in sync.
515 */
516void etr_switch_to_local(void)
517{
518 if (!etr_eacr.sl)
519 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200520 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
521 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100522 set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200523 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100524}
525
526/*
527 * ETR sync check machine check. This is called when the ETR OTE and the
528 * local clock OTE are farther apart than the ETR sync check tolerance.
529 * After a ETR sync check the clock is not in sync. The machine check
530 * is broadcasted to all cpus at the same time.
531 */
532void etr_sync_check(void)
533{
534 if (!etr_eacr.es)
535 return;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200536 if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
537 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100538 set_bit(ETR_EVENT_SYNC_CHECK, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200539 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100540}
541
542/*
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200543 * ETR timing alert. There are two causes:
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100544 * 1) port state change, check the usability of the port
545 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
546 * sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
547 * or ETR-data word 4 (edf4) has changed.
548 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200549static void etr_timing_alert(struct etr_irq_parm *intparm)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100550{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100551 if (intparm->pc0)
552 /* ETR port 0 state change. */
553 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
554 if (intparm->pc1)
555 /* ETR port 1 state change. */
556 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
557 if (intparm->eai)
558 /*
559 * ETR port alert on either port 0, 1 or both.
560 * Both ports are not up-to-date now.
561 */
562 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200563 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100564}
565
566static void etr_timeout(unsigned long dummy)
567{
568 set_bit(ETR_EVENT_UPDATE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200569 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100570}
571
572/*
573 * Check if the etr mode is pss.
574 */
575static inline int etr_mode_is_pps(struct etr_eacr eacr)
576{
577 return eacr.es && !eacr.sl;
578}
579
580/*
581 * Check if the etr mode is etr.
582 */
583static inline int etr_mode_is_etr(struct etr_eacr eacr)
584{
585 return eacr.es && eacr.sl;
586}
587
588/*
589 * Check if the port can be used for TOD synchronization.
590 * For PPS mode the port has to receive OTEs. For ETR mode
591 * the port has to receive OTEs, the ETR stepping bit has to
592 * be zero and the validity bits for data frame 1, 2, and 3
593 * have to be 1.
594 */
595static int etr_port_valid(struct etr_aib *aib, int port)
596{
597 unsigned int psc;
598
599 /* Check that this port is receiving OTEs. */
600 if (aib->tsp == 0)
601 return 0;
602
603 psc = port ? aib->esw.psc1 : aib->esw.psc0;
604 if (psc == etr_lpsc_pps_mode)
605 return 1;
606 if (psc == etr_lpsc_operational_step)
607 return !aib->esw.y && aib->slsw.v1 &&
608 aib->slsw.v2 && aib->slsw.v3;
609 return 0;
610}
611
612/*
613 * Check if two ports are on the same network.
614 */
615static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
616{
617 // FIXME: any other fields we have to compare?
618 return aib1->edf1.net_id == aib2->edf1.net_id;
619}
620
621/*
622 * Wrapper for etr_stei that converts physical port states
623 * to logical port states to be consistent with the output
624 * of stetr (see etr_psc vs. etr_lpsc).
625 */
626static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
627{
628 BUG_ON(etr_steai(aib, func) != 0);
629 /* Convert port state to logical port state. */
630 if (aib->esw.psc0 == 1)
631 aib->esw.psc0 = 2;
632 else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
633 aib->esw.psc0 = 1;
634 if (aib->esw.psc1 == 1)
635 aib->esw.psc1 = 2;
636 else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
637 aib->esw.psc1 = 1;
638}
639
640/*
641 * Check if the aib a2 is still connected to the same attachment as
642 * aib a1, the etv values differ by one and a2 is valid.
643 */
644static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
645{
646 int state_a1, state_a2;
647
648 /* Paranoia check: e0/e1 should better be the same. */
649 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
650 a1->esw.eacr.e1 != a2->esw.eacr.e1)
651 return 0;
652
653 /* Still connected to the same etr ? */
654 state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
655 state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
656 if (state_a1 == etr_lpsc_operational_step) {
657 if (state_a2 != etr_lpsc_operational_step ||
658 a1->edf1.net_id != a2->edf1.net_id ||
659 a1->edf1.etr_id != a2->edf1.etr_id ||
660 a1->edf1.etr_pn != a2->edf1.etr_pn)
661 return 0;
662 } else if (state_a2 != etr_lpsc_pps_mode)
663 return 0;
664
665 /* The ETV value of a2 needs to be ETV of a1 + 1. */
666 if (a1->edf2.etv + 1 != a2->edf2.etv)
667 return 0;
668
669 if (!etr_port_valid(a2, p))
670 return 0;
671
672 return 1;
673}
674
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200675struct clock_sync_data {
Heiko Carstens5a62b192008-04-17 07:46:25 +0200676 int in_sync;
677 unsigned long long fixup_cc;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200678};
Heiko Carstens5a62b192008-04-17 07:46:25 +0200679
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200680static void clock_sync_cpu_start(void *dummy)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100681{
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200682 struct clock_sync_data *sync = dummy;
683
684 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100685 /*
686 * This looks like a busy wait loop but it isn't. etr_sync_cpus
687 * is called on all other cpus while the TOD clocks is stopped.
688 * __udelay will stop the cpu on an enabled wait psw until the
689 * TOD is running again.
690 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200691 while (sync->in_sync == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100692 __udelay(1);
Heiko Carstens6c732de2007-02-21 10:55:15 +0100693 /*
694 * A different cpu changes *in_sync. Therefore use
695 * barrier() to force memory access.
696 */
697 barrier();
698 }
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200699 if (sync->in_sync != 1)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100700 /* Didn't work. Clear per-cpu in sync bit again. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200701 disable_sync_clock(NULL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100702 /*
703 * This round of TOD syncing is done. Set the clock comparator
704 * to the next tick and let the processor continue.
705 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200706 fixup_clock_comparator(sync->fixup_cc);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100707}
708
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200709static void clock_sync_cpu_end(void *dummy)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100710{
711}
712
713/*
714 * Sync the TOD clock using the port refered to by aibp. This port
715 * has to be enabled and the other port has to be disabled. The
716 * last eacr update has to be more than 1.6 seconds in the past.
717 */
718static int etr_sync_clock(struct etr_aib *aib, int port)
719{
720 struct etr_aib *sync_port;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200721 struct clock_sync_data etr_sync;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200722 unsigned long long clock, old_clock, delay, delta;
723 int follows;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100724 int rc;
725
726 /* Check if the current aib is adjacent to the sync port aib. */
727 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
728 follows = etr_aib_follows(sync_port, aib, port);
729 memcpy(sync_port, aib, sizeof(*aib));
730 if (!follows)
731 return -EAGAIN;
732
733 /*
734 * Catch all other cpus and make them wait until we have
735 * successfully synced the clock. smp_call_function will
736 * return after all other cpus are in etr_sync_cpu_start.
737 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200738 memset(&etr_sync, 0, sizeof(etr_sync));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100739 preempt_disable();
Ingo Molnar1a781a72008-07-15 21:55:59 +0200740 smp_call_function(clock_sync_cpu_start, &etr_sync, 0);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100741 local_irq_disable();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200742 enable_sync_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100743
744 /* Set clock to next OTE. */
745 __ctl_set_bit(14, 21);
746 __ctl_set_bit(0, 29);
747 clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200748 old_clock = get_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100749 if (set_clock(clock) == 0) {
750 __udelay(1); /* Wait for the clock to start. */
751 __ctl_clear_bit(0, 29);
752 __ctl_clear_bit(14, 21);
753 etr_stetr(aib);
754 /* Adjust Linux timing variables. */
755 delay = (unsigned long long)
756 (aib->edf2.etv - sync_port->edf2.etv) << 32;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200757 delta = adjust_time(old_clock, clock, delay);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200758 etr_sync.fixup_cc = delta;
759 fixup_clock_comparator(delta);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100760 /* Verify that the clock is properly set. */
761 if (!etr_aib_follows(sync_port, aib, port)) {
762 /* Didn't work. */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200763 disable_sync_clock(NULL);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200764 etr_sync.in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100765 rc = -EAGAIN;
766 } else {
Heiko Carstens5a62b192008-04-17 07:46:25 +0200767 etr_sync.in_sync = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100768 rc = 0;
769 }
770 } else {
771 /* Could not set the clock ?!? */
772 __ctl_clear_bit(0, 29);
773 __ctl_clear_bit(14, 21);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200774 disable_sync_clock(NULL);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200775 etr_sync.in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100776 rc = -EAGAIN;
777 }
778 local_irq_enable();
Ingo Molnar1a781a72008-07-15 21:55:59 +0200779 smp_call_function(clock_sync_cpu_end, NULL, 0);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100780 preempt_enable();
781 return rc;
782}
783
784/*
785 * Handle the immediate effects of the different events.
786 * The port change event is used for online/offline changes.
787 */
788static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
789{
790 if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
791 eacr.es = 0;
792 if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
793 eacr.es = eacr.sl = 0;
794 if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
795 etr_port0_uptodate = etr_port1_uptodate = 0;
796
797 if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
798 if (eacr.e0)
799 /*
800 * Port change of an enabled port. We have to
801 * assume that this can have caused an stepping
802 * port switch.
803 */
804 etr_tolec = get_clock();
805 eacr.p0 = etr_port0_online;
806 if (!eacr.p0)
807 eacr.e0 = 0;
808 etr_port0_uptodate = 0;
809 }
810 if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
811 if (eacr.e1)
812 /*
813 * Port change of an enabled port. We have to
814 * assume that this can have caused an stepping
815 * port switch.
816 */
817 etr_tolec = get_clock();
818 eacr.p1 = etr_port1_online;
819 if (!eacr.p1)
820 eacr.e1 = 0;
821 etr_port1_uptodate = 0;
822 }
823 clear_bit(ETR_EVENT_UPDATE, &etr_events);
824 return eacr;
825}
826
827/*
828 * Set up a timer that expires after the etr_tolec + 1.6 seconds if
829 * one of the ports needs an update.
830 */
831static void etr_set_tolec_timeout(unsigned long long now)
832{
833 unsigned long micros;
834
835 if ((!etr_eacr.p0 || etr_port0_uptodate) &&
836 (!etr_eacr.p1 || etr_port1_uptodate))
837 return;
838 micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
839 micros = (micros > 1600000) ? 0 : 1600000 - micros;
840 mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
841}
842
843/*
844 * Set up a time that expires after 1/2 second.
845 */
846static void etr_set_sync_timeout(void)
847{
848 mod_timer(&etr_timer, jiffies + HZ/2);
849}
850
851/*
852 * Update the aib information for one or both ports.
853 */
854static struct etr_eacr etr_handle_update(struct etr_aib *aib,
855 struct etr_eacr eacr)
856{
857 /* With both ports disabled the aib information is useless. */
858 if (!eacr.e0 && !eacr.e1)
859 return eacr;
860
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200861 /* Update port0 or port1 with aib stored in etr_work_fn. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100862 if (aib->esw.q == 0) {
863 /* Information for port 0 stored. */
864 if (eacr.p0 && !etr_port0_uptodate) {
865 etr_port0 = *aib;
866 if (etr_port0_online)
867 etr_port0_uptodate = 1;
868 }
869 } else {
870 /* Information for port 1 stored. */
871 if (eacr.p1 && !etr_port1_uptodate) {
872 etr_port1 = *aib;
873 if (etr_port0_online)
874 etr_port1_uptodate = 1;
875 }
876 }
877
878 /*
879 * Do not try to get the alternate port aib if the clock
880 * is not in sync yet.
881 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200882 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags) && !eacr.es)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100883 return eacr;
884
885 /*
886 * If steai is available we can get the information about
887 * the other port immediately. If only stetr is available the
888 * data-port bit toggle has to be used.
889 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200890 if (etr_steai_available) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100891 if (eacr.p0 && !etr_port0_uptodate) {
892 etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
893 etr_port0_uptodate = 1;
894 }
895 if (eacr.p1 && !etr_port1_uptodate) {
896 etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
897 etr_port1_uptodate = 1;
898 }
899 } else {
900 /*
901 * One port was updated above, if the other
902 * port is not uptodate toggle dp bit.
903 */
904 if ((eacr.p0 && !etr_port0_uptodate) ||
905 (eacr.p1 && !etr_port1_uptodate))
906 eacr.dp ^= 1;
907 else
908 eacr.dp = 0;
909 }
910 return eacr;
911}
912
913/*
914 * Write new etr control register if it differs from the current one.
915 * Return 1 if etr_tolec has been updated as well.
916 */
917static void etr_update_eacr(struct etr_eacr eacr)
918{
919 int dp_changed;
920
921 if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
922 /* No change, return. */
923 return;
924 /*
925 * The disable of an active port of the change of the data port
926 * bit can/will cause a change in the data port.
927 */
928 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
929 (etr_eacr.dp ^ eacr.dp) != 0;
930 etr_eacr = eacr;
931 etr_setr(&etr_eacr);
932 if (dp_changed)
933 etr_tolec = get_clock();
934}
935
936/*
937 * ETR tasklet. In this function you'll find the main logic. In
938 * particular this is the only function that calls etr_update_eacr(),
939 * it "controls" the etr control register.
940 */
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200941static void etr_work_fn(struct work_struct *work)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100942{
943 unsigned long long now;
944 struct etr_eacr eacr;
945 struct etr_aib aib;
946 int sync_port;
947
948 /* Create working copy of etr_eacr. */
949 eacr = etr_eacr;
950
951 /* Check for the different events and their immediate effects. */
952 eacr = etr_handle_events(eacr);
953
954 /* Check if ETR is supposed to be active. */
955 eacr.ea = eacr.p0 || eacr.p1;
956 if (!eacr.ea) {
957 /* Both ports offline. Reset everything. */
958 eacr.dp = eacr.es = eacr.sl = 0;
Ingo Molnar1a781a72008-07-15 21:55:59 +0200959 on_each_cpu(disable_sync_clock, NULL, 1);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100960 del_timer_sync(&etr_timer);
961 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200962 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100963 return;
964 }
965
966 /* Store aib to get the current ETR status word. */
967 BUG_ON(etr_stetr(&aib) != 0);
968 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
969 now = get_clock();
970
971 /*
972 * Update the port information if the last stepping port change
973 * or data port change is older than 1.6 seconds.
974 */
975 if (now >= etr_tolec + (1600000 << 12))
976 eacr = etr_handle_update(&aib, eacr);
977
978 /*
979 * Select ports to enable. The prefered synchronization mode is PPS.
980 * If a port can be enabled depends on a number of things:
981 * 1) The port needs to be online and uptodate. A port is not
982 * disabled just because it is not uptodate, but it is only
983 * enabled if it is uptodate.
984 * 2) The port needs to have the same mode (pps / etr).
985 * 3) The port needs to be usable -> etr_port_valid() == 1
986 * 4) To enable the second port the clock needs to be in sync.
987 * 5) If both ports are useable and are ETR ports, the network id
988 * has to be the same.
989 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
990 */
991 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
992 eacr.sl = 0;
993 eacr.e0 = 1;
994 if (!etr_mode_is_pps(etr_eacr))
995 eacr.es = 0;
996 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
997 eacr.e1 = 0;
998 // FIXME: uptodate checks ?
999 else if (etr_port0_uptodate && etr_port1_uptodate)
1000 eacr.e1 = 1;
1001 sync_port = (etr_port0_uptodate &&
1002 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001003 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1004 eacr.sl = 0;
1005 eacr.e0 = 0;
1006 eacr.e1 = 1;
1007 if (!etr_mode_is_pps(etr_eacr))
1008 eacr.es = 0;
1009 sync_port = (etr_port1_uptodate &&
1010 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001011 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1012 eacr.sl = 1;
1013 eacr.e0 = 1;
1014 if (!etr_mode_is_etr(etr_eacr))
1015 eacr.es = 0;
1016 if (!eacr.es || !eacr.p1 ||
1017 aib.esw.psc1 != etr_lpsc_operational_alt)
1018 eacr.e1 = 0;
1019 else if (etr_port0_uptodate && etr_port1_uptodate &&
1020 etr_compare_network(&etr_port0, &etr_port1))
1021 eacr.e1 = 1;
1022 sync_port = (etr_port0_uptodate &&
1023 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001024 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1025 eacr.sl = 1;
1026 eacr.e0 = 0;
1027 eacr.e1 = 1;
1028 if (!etr_mode_is_etr(etr_eacr))
1029 eacr.es = 0;
1030 sync_port = (etr_port1_uptodate &&
1031 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001032 } else {
1033 /* Both ports not usable. */
1034 eacr.es = eacr.sl = 0;
1035 sync_port = -1;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001036 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001037 }
1038
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001039 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1040 eacr.es = 0;
1041
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001042 /*
1043 * If the clock is in sync just update the eacr and return.
1044 * If there is no valid sync port wait for a port update.
1045 */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001046 if (test_bit(CLOCK_SYNC_STP, &clock_sync_flags) ||
1047 eacr.es || sync_port < 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001048 etr_update_eacr(eacr);
1049 etr_set_tolec_timeout(now);
1050 return;
1051 }
1052
1053 /*
1054 * Prepare control register for clock syncing
1055 * (reset data port bit, set sync check control.
1056 */
1057 eacr.dp = 0;
1058 eacr.es = 1;
1059
1060 /*
1061 * Update eacr and try to synchronize the clock. If the update
1062 * of eacr caused a stepping port switch (or if we have to
1063 * assume that a stepping port switch has occured) or the
1064 * clock syncing failed, reset the sync check control bit
1065 * and set up a timer to try again after 0.5 seconds
1066 */
1067 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001068 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001069 if (now < etr_tolec + (1600000 << 12) ||
1070 etr_sync_clock(&aib, sync_port) != 0) {
1071 /* Sync failed. Try again in 1/2 second. */
1072 eacr.es = 0;
1073 etr_update_eacr(eacr);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001074 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001075 etr_set_sync_timeout();
1076 } else
1077 etr_set_tolec_timeout(now);
1078}
1079
1080/*
1081 * Sysfs interface functions
1082 */
1083static struct sysdev_class etr_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001084 .name = "etr",
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001085};
1086
1087static struct sys_device etr_port0_dev = {
1088 .id = 0,
1089 .cls = &etr_sysclass,
1090};
1091
1092static struct sys_device etr_port1_dev = {
1093 .id = 1,
1094 .cls = &etr_sysclass,
1095};
1096
1097/*
1098 * ETR class attributes
1099 */
1100static ssize_t etr_stepping_port_show(struct sysdev_class *class, char *buf)
1101{
1102 return sprintf(buf, "%i\n", etr_port0.esw.p);
1103}
1104
1105static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1106
1107static ssize_t etr_stepping_mode_show(struct sysdev_class *class, char *buf)
1108{
1109 char *mode_str;
1110
1111 if (etr_mode_is_pps(etr_eacr))
1112 mode_str = "pps";
1113 else if (etr_mode_is_etr(etr_eacr))
1114 mode_str = "etr";
1115 else
1116 mode_str = "local";
1117 return sprintf(buf, "%s\n", mode_str);
1118}
1119
1120static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1121
1122/*
1123 * ETR port attributes
1124 */
1125static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1126{
1127 if (dev == &etr_port0_dev)
1128 return etr_port0_online ? &etr_port0 : NULL;
1129 else
1130 return etr_port1_online ? &etr_port1 : NULL;
1131}
1132
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001133static ssize_t etr_online_show(struct sys_device *dev,
1134 struct sysdev_attribute *attr,
1135 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001136{
1137 unsigned int online;
1138
1139 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1140 return sprintf(buf, "%i\n", online);
1141}
1142
1143static ssize_t etr_online_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001144 struct sysdev_attribute *attr,
1145 const char *buf, size_t count)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001146{
1147 unsigned int value;
1148
1149 value = simple_strtoul(buf, NULL, 0);
1150 if (value != 0 && value != 1)
1151 return -EINVAL;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001152 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1153 return -EOPNOTSUPP;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001154 if (dev == &etr_port0_dev) {
1155 if (etr_port0_online == value)
1156 return count; /* Nothing to do. */
1157 etr_port0_online = value;
1158 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +02001159 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001160 } else {
1161 if (etr_port1_online == value)
1162 return count; /* Nothing to do. */
1163 etr_port1_online = value;
1164 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +02001165 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001166 }
1167 return count;
1168}
1169
1170static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1171
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001172static ssize_t etr_stepping_control_show(struct sys_device *dev,
1173 struct sysdev_attribute *attr,
1174 char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001175{
1176 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1177 etr_eacr.e0 : etr_eacr.e1);
1178}
1179
1180static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1181
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001182static ssize_t etr_mode_code_show(struct sys_device *dev,
1183 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001184{
1185 if (!etr_port0_online && !etr_port1_online)
1186 /* Status word is not uptodate if both ports are offline. */
1187 return -ENODATA;
1188 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1189 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1190}
1191
1192static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1193
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001194static ssize_t etr_untuned_show(struct sys_device *dev,
1195 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001196{
1197 struct etr_aib *aib = etr_aib_from_dev(dev);
1198
1199 if (!aib || !aib->slsw.v1)
1200 return -ENODATA;
1201 return sprintf(buf, "%i\n", aib->edf1.u);
1202}
1203
1204static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1205
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001206static ssize_t etr_network_id_show(struct sys_device *dev,
1207 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001208{
1209 struct etr_aib *aib = etr_aib_from_dev(dev);
1210
1211 if (!aib || !aib->slsw.v1)
1212 return -ENODATA;
1213 return sprintf(buf, "%i\n", aib->edf1.net_id);
1214}
1215
1216static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1217
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001218static ssize_t etr_id_show(struct sys_device *dev,
1219 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001220{
1221 struct etr_aib *aib = etr_aib_from_dev(dev);
1222
1223 if (!aib || !aib->slsw.v1)
1224 return -ENODATA;
1225 return sprintf(buf, "%i\n", aib->edf1.etr_id);
1226}
1227
1228static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1229
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001230static ssize_t etr_port_number_show(struct sys_device *dev,
1231 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001232{
1233 struct etr_aib *aib = etr_aib_from_dev(dev);
1234
1235 if (!aib || !aib->slsw.v1)
1236 return -ENODATA;
1237 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1238}
1239
1240static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1241
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001242static ssize_t etr_coupled_show(struct sys_device *dev,
1243 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001244{
1245 struct etr_aib *aib = etr_aib_from_dev(dev);
1246
1247 if (!aib || !aib->slsw.v3)
1248 return -ENODATA;
1249 return sprintf(buf, "%i\n", aib->edf3.c);
1250}
1251
1252static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1253
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001254static ssize_t etr_local_time_show(struct sys_device *dev,
1255 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001256{
1257 struct etr_aib *aib = etr_aib_from_dev(dev);
1258
1259 if (!aib || !aib->slsw.v3)
1260 return -ENODATA;
1261 return sprintf(buf, "%i\n", aib->edf3.blto);
1262}
1263
1264static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1265
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001266static ssize_t etr_utc_offset_show(struct sys_device *dev,
1267 struct sysdev_attribute *attr, char *buf)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001268{
1269 struct etr_aib *aib = etr_aib_from_dev(dev);
1270
1271 if (!aib || !aib->slsw.v3)
1272 return -ENODATA;
1273 return sprintf(buf, "%i\n", aib->edf3.buo);
1274}
1275
1276static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1277
1278static struct sysdev_attribute *etr_port_attributes[] = {
1279 &attr_online,
1280 &attr_stepping_control,
1281 &attr_state_code,
1282 &attr_untuned,
1283 &attr_network,
1284 &attr_id,
1285 &attr_port,
1286 &attr_coupled,
1287 &attr_local_time,
1288 &attr_utc_offset,
1289 NULL
1290};
1291
1292static int __init etr_register_port(struct sys_device *dev)
1293{
1294 struct sysdev_attribute **attr;
1295 int rc;
1296
1297 rc = sysdev_register(dev);
1298 if (rc)
1299 goto out;
1300 for (attr = etr_port_attributes; *attr; attr++) {
1301 rc = sysdev_create_file(dev, *attr);
1302 if (rc)
1303 goto out_unreg;
1304 }
1305 return 0;
1306out_unreg:
1307 for (; attr >= etr_port_attributes; attr--)
1308 sysdev_remove_file(dev, *attr);
1309 sysdev_unregister(dev);
1310out:
1311 return rc;
1312}
1313
1314static void __init etr_unregister_port(struct sys_device *dev)
1315{
1316 struct sysdev_attribute **attr;
1317
1318 for (attr = etr_port_attributes; *attr; attr++)
1319 sysdev_remove_file(dev, *attr);
1320 sysdev_unregister(dev);
1321}
1322
1323static int __init etr_init_sysfs(void)
1324{
1325 int rc;
1326
1327 rc = sysdev_class_register(&etr_sysclass);
1328 if (rc)
1329 goto out;
1330 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1331 if (rc)
1332 goto out_unreg_class;
1333 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1334 if (rc)
1335 goto out_remove_stepping_port;
1336 rc = etr_register_port(&etr_port0_dev);
1337 if (rc)
1338 goto out_remove_stepping_mode;
1339 rc = etr_register_port(&etr_port1_dev);
1340 if (rc)
1341 goto out_remove_port0;
1342 return 0;
1343
1344out_remove_port0:
1345 etr_unregister_port(&etr_port0_dev);
1346out_remove_stepping_mode:
1347 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1348out_remove_stepping_port:
1349 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1350out_unreg_class:
1351 sysdev_class_unregister(&etr_sysclass);
1352out:
1353 return rc;
1354}
1355
1356device_initcall(etr_init_sysfs);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001357
1358/*
1359 * Server Time Protocol (STP) code.
1360 */
1361static int stp_online;
1362static struct stp_sstpi stp_info;
1363static void *stp_page;
1364
1365static void stp_work_fn(struct work_struct *work);
1366static DECLARE_WORK(stp_work, stp_work_fn);
1367
1368static int __init early_parse_stp(char *p)
1369{
1370 if (strncmp(p, "off", 3) == 0)
1371 stp_online = 0;
1372 else if (strncmp(p, "on", 2) == 0)
1373 stp_online = 1;
1374 return 0;
1375}
1376early_param("stp", early_parse_stp);
1377
1378/*
1379 * Reset STP attachment.
1380 */
Heiko Carstens8f847002008-08-01 16:39:19 +02001381static void __init stp_reset(void)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001382{
1383 int rc;
1384
1385 stp_page = alloc_bootmem_pages(PAGE_SIZE);
1386 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
Martin Schwidefsky4a672cf2008-10-10 21:33:29 +02001387 if (rc == 0)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001388 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1389 else if (stp_online) {
1390 printk(KERN_WARNING "Running on non STP capable machine.\n");
1391 free_bootmem((unsigned long) stp_page, PAGE_SIZE);
1392 stp_page = NULL;
1393 stp_online = 0;
1394 }
1395}
1396
1397static int __init stp_init(void)
1398{
1399 if (test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags) && stp_online)
1400 schedule_work(&stp_work);
1401 return 0;
1402}
1403
1404arch_initcall(stp_init);
1405
1406/*
1407 * STP timing alert. There are three causes:
1408 * 1) timing status change
1409 * 2) link availability change
1410 * 3) time control parameter change
1411 * In all three cases we are only interested in the clock source state.
1412 * If a STP clock source is now available use it.
1413 */
1414static void stp_timing_alert(struct stp_irq_parm *intparm)
1415{
1416 if (intparm->tsc || intparm->lac || intparm->tcpc)
1417 schedule_work(&stp_work);
1418}
1419
1420/*
1421 * STP sync check machine check. This is called when the timing state
1422 * changes from the synchronized state to the unsynchronized state.
1423 * After a STP sync check the clock is not in sync. The machine check
1424 * is broadcasted to all cpus at the same time.
1425 */
1426void stp_sync_check(void)
1427{
1428 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1429 return;
1430 disable_sync_clock(NULL);
1431 schedule_work(&stp_work);
1432}
1433
1434/*
1435 * STP island condition machine check. This is called when an attached
1436 * server attempts to communicate over an STP link and the servers
1437 * have matching CTN ids and have a valid stratum-1 configuration
1438 * but the configurations do not match.
1439 */
1440void stp_island_check(void)
1441{
1442 if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1443 return;
1444 disable_sync_clock(NULL);
1445 schedule_work(&stp_work);
1446}
1447
1448/*
1449 * STP tasklet. Check for the STP state and take over the clock
1450 * synchronization if the STP clock source is usable.
1451 */
1452static void stp_work_fn(struct work_struct *work)
1453{
1454 struct clock_sync_data stp_sync;
1455 unsigned long long old_clock, delta;
1456 int rc;
1457
1458 if (!stp_online) {
1459 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1460 return;
1461 }
1462
1463 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1464 if (rc)
1465 return;
1466
1467 rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1468 if (rc || stp_info.c == 0)
1469 return;
1470
1471 /*
1472 * Catch all other cpus and make them wait until we have
1473 * successfully synced the clock. smp_call_function will
1474 * return after all other cpus are in clock_sync_cpu_start.
1475 */
1476 memset(&stp_sync, 0, sizeof(stp_sync));
1477 preempt_disable();
Ingo Molnarf6f88e92008-07-15 22:08:52 +02001478 smp_call_function(clock_sync_cpu_start, &stp_sync, 0);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001479 local_irq_disable();
1480 enable_sync_clock();
1481
1482 set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1483 if (test_and_clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1484 schedule_work(&etr_work);
1485
1486 rc = 0;
1487 if (stp_info.todoff[0] || stp_info.todoff[1] ||
1488 stp_info.todoff[2] || stp_info.todoff[3] ||
1489 stp_info.tmd != 2) {
1490 old_clock = get_clock();
1491 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1492 if (rc == 0) {
1493 delta = adjust_time(old_clock, get_clock(), 0);
1494 fixup_clock_comparator(delta);
1495 rc = chsc_sstpi(stp_page, &stp_info,
1496 sizeof(struct stp_sstpi));
1497 if (rc == 0 && stp_info.tmd != 2)
1498 rc = -EAGAIN;
1499 }
1500 }
1501 if (rc) {
1502 disable_sync_clock(NULL);
1503 stp_sync.in_sync = -EAGAIN;
1504 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1505 if (etr_port0_online || etr_port1_online)
1506 schedule_work(&etr_work);
1507 } else
1508 stp_sync.in_sync = 1;
1509
1510 local_irq_enable();
Ingo Molnarf6f88e92008-07-15 22:08:52 +02001511 smp_call_function(clock_sync_cpu_end, NULL, 0);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001512 preempt_enable();
1513}
1514
1515/*
1516 * STP class sysfs interface functions
1517 */
1518static struct sysdev_class stp_sysclass = {
1519 .name = "stp",
1520};
1521
1522static ssize_t stp_ctn_id_show(struct sysdev_class *class, char *buf)
1523{
1524 if (!stp_online)
1525 return -ENODATA;
1526 return sprintf(buf, "%016llx\n",
1527 *(unsigned long long *) stp_info.ctnid);
1528}
1529
1530static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1531
1532static ssize_t stp_ctn_type_show(struct sysdev_class *class, char *buf)
1533{
1534 if (!stp_online)
1535 return -ENODATA;
1536 return sprintf(buf, "%i\n", stp_info.ctn);
1537}
1538
1539static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1540
1541static ssize_t stp_dst_offset_show(struct sysdev_class *class, char *buf)
1542{
1543 if (!stp_online || !(stp_info.vbits & 0x2000))
1544 return -ENODATA;
1545 return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1546}
1547
1548static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1549
1550static ssize_t stp_leap_seconds_show(struct sysdev_class *class, char *buf)
1551{
1552 if (!stp_online || !(stp_info.vbits & 0x8000))
1553 return -ENODATA;
1554 return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1555}
1556
1557static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1558
1559static ssize_t stp_stratum_show(struct sysdev_class *class, char *buf)
1560{
1561 if (!stp_online)
1562 return -ENODATA;
1563 return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1564}
1565
1566static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1567
1568static ssize_t stp_time_offset_show(struct sysdev_class *class, char *buf)
1569{
1570 if (!stp_online || !(stp_info.vbits & 0x0800))
1571 return -ENODATA;
1572 return sprintf(buf, "%i\n", (int) stp_info.tto);
1573}
1574
1575static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1576
1577static ssize_t stp_time_zone_offset_show(struct sysdev_class *class, char *buf)
1578{
1579 if (!stp_online || !(stp_info.vbits & 0x4000))
1580 return -ENODATA;
1581 return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1582}
1583
1584static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1585 stp_time_zone_offset_show, NULL);
1586
1587static ssize_t stp_timing_mode_show(struct sysdev_class *class, char *buf)
1588{
1589 if (!stp_online)
1590 return -ENODATA;
1591 return sprintf(buf, "%i\n", stp_info.tmd);
1592}
1593
1594static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1595
1596static ssize_t stp_timing_state_show(struct sysdev_class *class, char *buf)
1597{
1598 if (!stp_online)
1599 return -ENODATA;
1600 return sprintf(buf, "%i\n", stp_info.tst);
1601}
1602
1603static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1604
1605static ssize_t stp_online_show(struct sysdev_class *class, char *buf)
1606{
1607 return sprintf(buf, "%i\n", stp_online);
1608}
1609
1610static ssize_t stp_online_store(struct sysdev_class *class,
1611 const char *buf, size_t count)
1612{
1613 unsigned int value;
1614
1615 value = simple_strtoul(buf, NULL, 0);
1616 if (value != 0 && value != 1)
1617 return -EINVAL;
1618 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1619 return -EOPNOTSUPP;
1620 stp_online = value;
1621 schedule_work(&stp_work);
1622 return count;
1623}
1624
1625/*
1626 * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1627 * stp/online but attr_online already exists in this file ..
1628 */
1629static struct sysdev_class_attribute attr_stp_online = {
1630 .attr = { .name = "online", .mode = 0600 },
1631 .show = stp_online_show,
1632 .store = stp_online_store,
1633};
1634
1635static struct sysdev_class_attribute *stp_attributes[] = {
1636 &attr_ctn_id,
1637 &attr_ctn_type,
1638 &attr_dst_offset,
1639 &attr_leap_seconds,
1640 &attr_stp_online,
1641 &attr_stratum,
1642 &attr_time_offset,
1643 &attr_time_zone_offset,
1644 &attr_timing_mode,
1645 &attr_timing_state,
1646 NULL
1647};
1648
1649static int __init stp_init_sysfs(void)
1650{
1651 struct sysdev_class_attribute **attr;
1652 int rc;
1653
1654 rc = sysdev_class_register(&stp_sysclass);
1655 if (rc)
1656 goto out;
1657 for (attr = stp_attributes; *attr; attr++) {
1658 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1659 if (rc)
1660 goto out_unreg;
1661 }
1662 return 0;
1663out_unreg:
1664 for (; attr >= stp_attributes; attr--)
1665 sysdev_class_remove_file(&stp_sysclass, *attr);
1666 sysdev_class_unregister(&stp_sysclass);
1667out:
1668 return rc;
1669}
1670
1671device_initcall(stp_init_sysfs);