agp: kill agp_flush_chipset and corresponding ioctl
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / s390 / kernel / time.c
blobf754a6dc4f944104d09fdb8d21acdd12e4f28161
1 /*
2 * arch/s390/kernel/time.c
3 * Time of day based timer functions.
5 * S390 version
6 * Copyright IBM Corp. 1999, 2008
7 * 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)
11 * Derived from "arch/i386/kernel/time.c"
12 * Copyright (C) 1991, 1992, 1995 Linus Torvalds
15 #define KMSG_COMPONENT "time"
16 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
18 #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>
26 #include <linux/cpu.h>
27 #include <linux/stop_machine.h>
28 #include <linux/time.h>
29 #include <linux/sysdev.h>
30 #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>
37 #include <linux/clocksource.h>
38 #include <linux/clockchips.h>
39 #include <linux/gfp.h>
40 #include <asm/uaccess.h>
41 #include <asm/delay.h>
42 #include <asm/s390_ext.h>
43 #include <asm/div64.h>
44 #include <asm/vdso.h>
45 #include <asm/irq.h>
46 #include <asm/irq_regs.h>
47 #include <asm/timer.h>
48 #include <asm/etr.h>
49 #include <asm/cio.h>
51 /* change this if you have some constant time drift */
52 #define USECS_PER_JIFFY ((unsigned long) 1000000/HZ)
53 #define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
55 u64 sched_clock_base_cc = -1; /* Force to data section. */
56 EXPORT_SYMBOL_GPL(sched_clock_base_cc);
58 static DEFINE_PER_CPU(struct clock_event_device, comparators);
61 * Scheduler clock - returns current time in nanosec units.
63 unsigned long long notrace sched_clock(void)
65 return (get_clock_monotonic() * 125) >> 9;
69 * Monotonic_clock - returns # of nanoseconds passed since time_init()
71 unsigned long long monotonic_clock(void)
73 return sched_clock();
75 EXPORT_SYMBOL(monotonic_clock);
77 void tod_to_timeval(__u64 todval, struct timespec *xt)
79 unsigned long long sec;
81 sec = todval >> 12;
82 do_div(sec, 1000000);
83 xt->tv_sec = sec;
84 todval -= (sec * 1000000) << 12;
85 xt->tv_nsec = ((todval * 1000) >> 12);
87 EXPORT_SYMBOL(tod_to_timeval);
89 void clock_comparator_work(void)
91 struct clock_event_device *cd;
93 S390_lowcore.clock_comparator = -1ULL;
94 set_clock_comparator(S390_lowcore.clock_comparator);
95 cd = &__get_cpu_var(comparators);
96 cd->event_handler(cd);
100 * Fixup the clock comparator.
102 static void fixup_clock_comparator(unsigned long long delta)
104 /* If nobody is waiting there's nothing to fix. */
105 if (S390_lowcore.clock_comparator == -1ULL)
106 return;
107 S390_lowcore.clock_comparator += delta;
108 set_clock_comparator(S390_lowcore.clock_comparator);
111 static int s390_next_event(unsigned long delta,
112 struct clock_event_device *evt)
114 S390_lowcore.clock_comparator = get_clock() + delta;
115 set_clock_comparator(S390_lowcore.clock_comparator);
116 return 0;
119 static void s390_set_mode(enum clock_event_mode mode,
120 struct clock_event_device *evt)
125 * Set up lowcore and control register of the current cpu to
126 * enable TOD clock and clock comparator interrupts.
128 void init_cpu_timer(void)
130 struct clock_event_device *cd;
131 int cpu;
133 S390_lowcore.clock_comparator = -1ULL;
134 set_clock_comparator(S390_lowcore.clock_comparator);
136 cpu = smp_processor_id();
137 cd = &per_cpu(comparators, cpu);
138 cd->name = "comparator";
139 cd->features = CLOCK_EVT_FEAT_ONESHOT;
140 cd->mult = 16777;
141 cd->shift = 12;
142 cd->min_delta_ns = 1;
143 cd->max_delta_ns = LONG_MAX;
144 cd->rating = 400;
145 cd->cpumask = cpumask_of(cpu);
146 cd->set_next_event = s390_next_event;
147 cd->set_mode = s390_set_mode;
149 clockevents_register_device(cd);
151 /* Enable clock comparator timer interrupt. */
152 __ctl_set_bit(0,11);
154 /* Always allow the timing alert external interrupt. */
155 __ctl_set_bit(0, 4);
158 static void clock_comparator_interrupt(unsigned int ext_int_code,
159 unsigned int param32,
160 unsigned long param64)
162 if (S390_lowcore.clock_comparator == -1ULL)
163 set_clock_comparator(S390_lowcore.clock_comparator);
166 static void etr_timing_alert(struct etr_irq_parm *);
167 static void stp_timing_alert(struct stp_irq_parm *);
169 static void timing_alert_interrupt(unsigned int ext_int_code,
170 unsigned int param32, unsigned long param64)
172 if (param32 & 0x00c40000)
173 etr_timing_alert((struct etr_irq_parm *) &param32);
174 if (param32 & 0x00038000)
175 stp_timing_alert((struct stp_irq_parm *) &param32);
178 static void etr_reset(void);
179 static void stp_reset(void);
181 void read_persistent_clock(struct timespec *ts)
183 tod_to_timeval(get_clock() - TOD_UNIX_EPOCH, ts);
186 void read_boot_clock(struct timespec *ts)
188 tod_to_timeval(sched_clock_base_cc - TOD_UNIX_EPOCH, ts);
191 static cycle_t read_tod_clock(struct clocksource *cs)
193 return get_clock();
196 static struct clocksource clocksource_tod = {
197 .name = "tod",
198 .rating = 400,
199 .read = read_tod_clock,
200 .mask = -1ULL,
201 .mult = 1000,
202 .shift = 12,
203 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
206 struct clocksource * __init clocksource_default_clock(void)
208 return &clocksource_tod;
211 void update_vsyscall(struct timespec *wall_time, struct timespec *wtm,
212 struct clocksource *clock, u32 mult)
214 if (clock != &clocksource_tod)
215 return;
217 /* Make userspace gettimeofday spin until we're done. */
218 ++vdso_data->tb_update_count;
219 smp_wmb();
220 vdso_data->xtime_tod_stamp = clock->cycle_last;
221 vdso_data->xtime_clock_sec = wall_time->tv_sec;
222 vdso_data->xtime_clock_nsec = wall_time->tv_nsec;
223 vdso_data->wtom_clock_sec = wtm->tv_sec;
224 vdso_data->wtom_clock_nsec = wtm->tv_nsec;
225 vdso_data->ntp_mult = mult;
226 smp_wmb();
227 ++vdso_data->tb_update_count;
230 extern struct timezone sys_tz;
232 void update_vsyscall_tz(void)
234 /* Make userspace gettimeofday spin until we're done. */
235 ++vdso_data->tb_update_count;
236 smp_wmb();
237 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
238 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
239 smp_wmb();
240 ++vdso_data->tb_update_count;
244 * Initialize the TOD clock and the CPU timer of
245 * the boot cpu.
247 void __init time_init(void)
249 /* Reset time synchronization interfaces. */
250 etr_reset();
251 stp_reset();
253 /* request the clock comparator external interrupt */
254 if (register_external_interrupt(0x1004, clock_comparator_interrupt))
255 panic("Couldn't request external interrupt 0x1004");
257 /* request the timing alert external interrupt */
258 if (register_external_interrupt(0x1406, timing_alert_interrupt))
259 panic("Couldn't request external interrupt 0x1406");
261 if (clocksource_register(&clocksource_tod) != 0)
262 panic("Could not register TOD clock source");
264 /* Enable TOD clock interrupts on the boot cpu. */
265 init_cpu_timer();
267 /* Enable cpu timer interrupts on the boot cpu. */
268 vtime_init();
272 * The time is "clock". old is what we think the time is.
273 * Adjust the value by a multiple of jiffies and add the delta to ntp.
274 * "delay" is an approximation how long the synchronization took. If
275 * the time correction is positive, then "delay" is subtracted from
276 * the time difference and only the remaining part is passed to ntp.
278 static unsigned long long adjust_time(unsigned long long old,
279 unsigned long long clock,
280 unsigned long long delay)
282 unsigned long long delta, ticks;
283 struct timex adjust;
285 if (clock > old) {
286 /* It is later than we thought. */
287 delta = ticks = clock - old;
288 delta = ticks = (delta < delay) ? 0 : delta - delay;
289 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
290 adjust.offset = ticks * (1000000 / HZ);
291 } else {
292 /* It is earlier than we thought. */
293 delta = ticks = old - clock;
294 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
295 delta = -delta;
296 adjust.offset = -ticks * (1000000 / HZ);
298 sched_clock_base_cc += delta;
299 if (adjust.offset != 0) {
300 pr_notice("The ETR interface has adjusted the clock "
301 "by %li microseconds\n", adjust.offset);
302 adjust.modes = ADJ_OFFSET_SINGLESHOT;
303 do_adjtimex(&adjust);
305 return delta;
308 static DEFINE_PER_CPU(atomic_t, clock_sync_word);
309 static DEFINE_MUTEX(clock_sync_mutex);
310 static unsigned long clock_sync_flags;
312 #define CLOCK_SYNC_HAS_ETR 0
313 #define CLOCK_SYNC_HAS_STP 1
314 #define CLOCK_SYNC_ETR 2
315 #define CLOCK_SYNC_STP 3
318 * The synchronous get_clock function. It will write the current clock
319 * value to the clock pointer and return 0 if the clock is in sync with
320 * the external time source. If the clock mode is local it will return
321 * -ENOSYS and -EAGAIN if the clock is not in sync with the external
322 * reference.
324 int get_sync_clock(unsigned long long *clock)
326 atomic_t *sw_ptr;
327 unsigned int sw0, sw1;
329 sw_ptr = &get_cpu_var(clock_sync_word);
330 sw0 = atomic_read(sw_ptr);
331 *clock = get_clock();
332 sw1 = atomic_read(sw_ptr);
333 put_cpu_var(clock_sync_word);
334 if (sw0 == sw1 && (sw0 & 0x80000000U))
335 /* Success: time is in sync. */
336 return 0;
337 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags) &&
338 !test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
339 return -ENOSYS;
340 if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags) &&
341 !test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
342 return -EACCES;
343 return -EAGAIN;
345 EXPORT_SYMBOL(get_sync_clock);
348 * Make get_sync_clock return -EAGAIN.
350 static void disable_sync_clock(void *dummy)
352 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
354 * Clear the in-sync bit 2^31. All get_sync_clock calls will
355 * fail until the sync bit is turned back on. In addition
356 * increase the "sequence" counter to avoid the race of an
357 * etr event and the complete recovery against get_sync_clock.
359 atomic_clear_mask(0x80000000, sw_ptr);
360 atomic_inc(sw_ptr);
364 * Make get_sync_clock return 0 again.
365 * Needs to be called from a context disabled for preemption.
367 static void enable_sync_clock(void)
369 atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
370 atomic_set_mask(0x80000000, sw_ptr);
374 * Function to check if the clock is in sync.
376 static inline int check_sync_clock(void)
378 atomic_t *sw_ptr;
379 int rc;
381 sw_ptr = &get_cpu_var(clock_sync_word);
382 rc = (atomic_read(sw_ptr) & 0x80000000U) != 0;
383 put_cpu_var(clock_sync_word);
384 return rc;
387 /* Single threaded workqueue used for etr and stp sync events */
388 static struct workqueue_struct *time_sync_wq;
390 static void __init time_init_wq(void)
392 if (time_sync_wq)
393 return;
394 time_sync_wq = create_singlethread_workqueue("timesync");
398 * External Time Reference (ETR) code.
400 static int etr_port0_online;
401 static int etr_port1_online;
402 static int etr_steai_available;
404 static int __init early_parse_etr(char *p)
406 if (strncmp(p, "off", 3) == 0)
407 etr_port0_online = etr_port1_online = 0;
408 else if (strncmp(p, "port0", 5) == 0)
409 etr_port0_online = 1;
410 else if (strncmp(p, "port1", 5) == 0)
411 etr_port1_online = 1;
412 else if (strncmp(p, "on", 2) == 0)
413 etr_port0_online = etr_port1_online = 1;
414 return 0;
416 early_param("etr", early_parse_etr);
418 enum etr_event {
419 ETR_EVENT_PORT0_CHANGE,
420 ETR_EVENT_PORT1_CHANGE,
421 ETR_EVENT_PORT_ALERT,
422 ETR_EVENT_SYNC_CHECK,
423 ETR_EVENT_SWITCH_LOCAL,
424 ETR_EVENT_UPDATE,
428 * Valid bit combinations of the eacr register are (x = don't care):
429 * e0 e1 dp p0 p1 ea es sl
430 * 0 0 x 0 0 0 0 0 initial, disabled state
431 * 0 0 x 0 1 1 0 0 port 1 online
432 * 0 0 x 1 0 1 0 0 port 0 online
433 * 0 0 x 1 1 1 0 0 both ports online
434 * 0 1 x 0 1 1 0 0 port 1 online and usable, ETR or PPS mode
435 * 0 1 x 0 1 1 0 1 port 1 online, usable and ETR mode
436 * 0 1 x 0 1 1 1 0 port 1 online, usable, PPS mode, in-sync
437 * 0 1 x 0 1 1 1 1 port 1 online, usable, ETR mode, in-sync
438 * 0 1 x 1 1 1 0 0 both ports online, port 1 usable
439 * 0 1 x 1 1 1 1 0 both ports online, port 1 usable, PPS mode, in-sync
440 * 0 1 x 1 1 1 1 1 both ports online, port 1 usable, ETR mode, in-sync
441 * 1 0 x 1 0 1 0 0 port 0 online and usable, ETR or PPS mode
442 * 1 0 x 1 0 1 0 1 port 0 online, usable and ETR mode
443 * 1 0 x 1 0 1 1 0 port 0 online, usable, PPS mode, in-sync
444 * 1 0 x 1 0 1 1 1 port 0 online, usable, ETR mode, in-sync
445 * 1 0 x 1 1 1 0 0 both ports online, port 0 usable
446 * 1 0 x 1 1 1 1 0 both ports online, port 0 usable, PPS mode, in-sync
447 * 1 0 x 1 1 1 1 1 both ports online, port 0 usable, ETR mode, in-sync
448 * 1 1 x 1 1 1 1 0 both ports online & usable, ETR, in-sync
449 * 1 1 x 1 1 1 1 1 both ports online & usable, ETR, in-sync
451 static struct etr_eacr etr_eacr;
452 static u64 etr_tolec; /* time of last eacr update */
453 static struct etr_aib etr_port0;
454 static int etr_port0_uptodate;
455 static struct etr_aib etr_port1;
456 static int etr_port1_uptodate;
457 static unsigned long etr_events;
458 static struct timer_list etr_timer;
460 static void etr_timeout(unsigned long dummy);
461 static void etr_work_fn(struct work_struct *work);
462 static DEFINE_MUTEX(etr_work_mutex);
463 static DECLARE_WORK(etr_work, etr_work_fn);
466 * Reset ETR attachment.
468 static void etr_reset(void)
470 etr_eacr = (struct etr_eacr) {
471 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
472 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
473 .es = 0, .sl = 0 };
474 if (etr_setr(&etr_eacr) == 0) {
475 etr_tolec = get_clock();
476 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
477 if (etr_port0_online && etr_port1_online)
478 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
479 } else if (etr_port0_online || etr_port1_online) {
480 pr_warning("The real or virtual hardware system does "
481 "not provide an ETR interface\n");
482 etr_port0_online = etr_port1_online = 0;
486 static int __init etr_init(void)
488 struct etr_aib aib;
490 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
491 return 0;
492 time_init_wq();
493 /* Check if this machine has the steai instruction. */
494 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
495 etr_steai_available = 1;
496 setup_timer(&etr_timer, etr_timeout, 0UL);
497 if (etr_port0_online) {
498 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
499 queue_work(time_sync_wq, &etr_work);
501 if (etr_port1_online) {
502 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
503 queue_work(time_sync_wq, &etr_work);
505 return 0;
508 arch_initcall(etr_init);
511 * Two sorts of ETR machine checks. The architecture reads:
512 * "When a machine-check niterruption occurs and if a switch-to-local or
513 * ETR-sync-check interrupt request is pending but disabled, this pending
514 * disabled interruption request is indicated and is cleared".
515 * Which means that we can get etr_switch_to_local events from the machine
516 * check handler although the interruption condition is disabled. Lovely..
520 * Switch to local machine check. This is called when the last usable
521 * ETR port goes inactive. After switch to local the clock is not in sync.
523 void etr_switch_to_local(void)
525 if (!etr_eacr.sl)
526 return;
527 disable_sync_clock(NULL);
528 if (!test_and_set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events)) {
529 etr_eacr.es = etr_eacr.sl = 0;
530 etr_setr(&etr_eacr);
531 queue_work(time_sync_wq, &etr_work);
536 * ETR sync check machine check. This is called when the ETR OTE and the
537 * local clock OTE are farther apart than the ETR sync check tolerance.
538 * After a ETR sync check the clock is not in sync. The machine check
539 * is broadcasted to all cpus at the same time.
541 void etr_sync_check(void)
543 if (!etr_eacr.es)
544 return;
545 disable_sync_clock(NULL);
546 if (!test_and_set_bit(ETR_EVENT_SYNC_CHECK, &etr_events)) {
547 etr_eacr.es = 0;
548 etr_setr(&etr_eacr);
549 queue_work(time_sync_wq, &etr_work);
554 * ETR timing alert. There are two causes:
555 * 1) port state change, check the usability of the port
556 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
557 * sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
558 * or ETR-data word 4 (edf4) has changed.
560 static void etr_timing_alert(struct etr_irq_parm *intparm)
562 if (intparm->pc0)
563 /* ETR port 0 state change. */
564 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
565 if (intparm->pc1)
566 /* ETR port 1 state change. */
567 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
568 if (intparm->eai)
570 * ETR port alert on either port 0, 1 or both.
571 * Both ports are not up-to-date now.
573 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
574 queue_work(time_sync_wq, &etr_work);
577 static void etr_timeout(unsigned long dummy)
579 set_bit(ETR_EVENT_UPDATE, &etr_events);
580 queue_work(time_sync_wq, &etr_work);
584 * Check if the etr mode is pss.
586 static inline int etr_mode_is_pps(struct etr_eacr eacr)
588 return eacr.es && !eacr.sl;
592 * Check if the etr mode is etr.
594 static inline int etr_mode_is_etr(struct etr_eacr eacr)
596 return eacr.es && eacr.sl;
600 * Check if the port can be used for TOD synchronization.
601 * For PPS mode the port has to receive OTEs. For ETR mode
602 * the port has to receive OTEs, the ETR stepping bit has to
603 * be zero and the validity bits for data frame 1, 2, and 3
604 * have to be 1.
606 static int etr_port_valid(struct etr_aib *aib, int port)
608 unsigned int psc;
610 /* Check that this port is receiving OTEs. */
611 if (aib->tsp == 0)
612 return 0;
614 psc = port ? aib->esw.psc1 : aib->esw.psc0;
615 if (psc == etr_lpsc_pps_mode)
616 return 1;
617 if (psc == etr_lpsc_operational_step)
618 return !aib->esw.y && aib->slsw.v1 &&
619 aib->slsw.v2 && aib->slsw.v3;
620 return 0;
624 * Check if two ports are on the same network.
626 static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
628 // FIXME: any other fields we have to compare?
629 return aib1->edf1.net_id == aib2->edf1.net_id;
633 * Wrapper for etr_stei that converts physical port states
634 * to logical port states to be consistent with the output
635 * of stetr (see etr_psc vs. etr_lpsc).
637 static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
639 BUG_ON(etr_steai(aib, func) != 0);
640 /* Convert port state to logical port state. */
641 if (aib->esw.psc0 == 1)
642 aib->esw.psc0 = 2;
643 else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
644 aib->esw.psc0 = 1;
645 if (aib->esw.psc1 == 1)
646 aib->esw.psc1 = 2;
647 else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
648 aib->esw.psc1 = 1;
652 * Check if the aib a2 is still connected to the same attachment as
653 * aib a1, the etv values differ by one and a2 is valid.
655 static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
657 int state_a1, state_a2;
659 /* Paranoia check: e0/e1 should better be the same. */
660 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
661 a1->esw.eacr.e1 != a2->esw.eacr.e1)
662 return 0;
664 /* Still connected to the same etr ? */
665 state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
666 state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
667 if (state_a1 == etr_lpsc_operational_step) {
668 if (state_a2 != etr_lpsc_operational_step ||
669 a1->edf1.net_id != a2->edf1.net_id ||
670 a1->edf1.etr_id != a2->edf1.etr_id ||
671 a1->edf1.etr_pn != a2->edf1.etr_pn)
672 return 0;
673 } else if (state_a2 != etr_lpsc_pps_mode)
674 return 0;
676 /* The ETV value of a2 needs to be ETV of a1 + 1. */
677 if (a1->edf2.etv + 1 != a2->edf2.etv)
678 return 0;
680 if (!etr_port_valid(a2, p))
681 return 0;
683 return 1;
686 struct clock_sync_data {
687 atomic_t cpus;
688 int in_sync;
689 unsigned long long fixup_cc;
690 int etr_port;
691 struct etr_aib *etr_aib;
694 static void clock_sync_cpu(struct clock_sync_data *sync)
696 atomic_dec(&sync->cpus);
697 enable_sync_clock();
699 * This looks like a busy wait loop but it isn't. etr_sync_cpus
700 * is called on all other cpus while the TOD clocks is stopped.
701 * __udelay will stop the cpu on an enabled wait psw until the
702 * TOD is running again.
704 while (sync->in_sync == 0) {
705 __udelay(1);
707 * A different cpu changes *in_sync. Therefore use
708 * barrier() to force memory access.
710 barrier();
712 if (sync->in_sync != 1)
713 /* Didn't work. Clear per-cpu in sync bit again. */
714 disable_sync_clock(NULL);
716 * This round of TOD syncing is done. Set the clock comparator
717 * to the next tick and let the processor continue.
719 fixup_clock_comparator(sync->fixup_cc);
723 * Sync the TOD clock using the port refered to by aibp. This port
724 * has to be enabled and the other port has to be disabled. The
725 * last eacr update has to be more than 1.6 seconds in the past.
727 static int etr_sync_clock(void *data)
729 static int first;
730 unsigned long long clock, old_clock, delay, delta;
731 struct clock_sync_data *etr_sync;
732 struct etr_aib *sync_port, *aib;
733 int port;
734 int rc;
736 etr_sync = data;
738 if (xchg(&first, 1) == 1) {
739 /* Slave */
740 clock_sync_cpu(etr_sync);
741 return 0;
744 /* Wait until all other cpus entered the sync function. */
745 while (atomic_read(&etr_sync->cpus) != 0)
746 cpu_relax();
748 port = etr_sync->etr_port;
749 aib = etr_sync->etr_aib;
750 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
751 enable_sync_clock();
753 /* Set clock to next OTE. */
754 __ctl_set_bit(14, 21);
755 __ctl_set_bit(0, 29);
756 clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
757 old_clock = get_clock();
758 if (set_clock(clock) == 0) {
759 __udelay(1); /* Wait for the clock to start. */
760 __ctl_clear_bit(0, 29);
761 __ctl_clear_bit(14, 21);
762 etr_stetr(aib);
763 /* Adjust Linux timing variables. */
764 delay = (unsigned long long)
765 (aib->edf2.etv - sync_port->edf2.etv) << 32;
766 delta = adjust_time(old_clock, clock, delay);
767 etr_sync->fixup_cc = delta;
768 fixup_clock_comparator(delta);
769 /* Verify that the clock is properly set. */
770 if (!etr_aib_follows(sync_port, aib, port)) {
771 /* Didn't work. */
772 disable_sync_clock(NULL);
773 etr_sync->in_sync = -EAGAIN;
774 rc = -EAGAIN;
775 } else {
776 etr_sync->in_sync = 1;
777 rc = 0;
779 } else {
780 /* Could not set the clock ?!? */
781 __ctl_clear_bit(0, 29);
782 __ctl_clear_bit(14, 21);
783 disable_sync_clock(NULL);
784 etr_sync->in_sync = -EAGAIN;
785 rc = -EAGAIN;
787 xchg(&first, 0);
788 return rc;
791 static int etr_sync_clock_stop(struct etr_aib *aib, int port)
793 struct clock_sync_data etr_sync;
794 struct etr_aib *sync_port;
795 int follows;
796 int rc;
798 /* Check if the current aib is adjacent to the sync port aib. */
799 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
800 follows = etr_aib_follows(sync_port, aib, port);
801 memcpy(sync_port, aib, sizeof(*aib));
802 if (!follows)
803 return -EAGAIN;
804 memset(&etr_sync, 0, sizeof(etr_sync));
805 etr_sync.etr_aib = aib;
806 etr_sync.etr_port = port;
807 get_online_cpus();
808 atomic_set(&etr_sync.cpus, num_online_cpus() - 1);
809 rc = stop_machine(etr_sync_clock, &etr_sync, &cpu_online_map);
810 put_online_cpus();
811 return rc;
815 * Handle the immediate effects of the different events.
816 * The port change event is used for online/offline changes.
818 static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
820 if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
821 eacr.es = 0;
822 if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
823 eacr.es = eacr.sl = 0;
824 if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
825 etr_port0_uptodate = etr_port1_uptodate = 0;
827 if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
828 if (eacr.e0)
830 * Port change of an enabled port. We have to
831 * assume that this can have caused an stepping
832 * port switch.
834 etr_tolec = get_clock();
835 eacr.p0 = etr_port0_online;
836 if (!eacr.p0)
837 eacr.e0 = 0;
838 etr_port0_uptodate = 0;
840 if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
841 if (eacr.e1)
843 * Port change of an enabled port. We have to
844 * assume that this can have caused an stepping
845 * port switch.
847 etr_tolec = get_clock();
848 eacr.p1 = etr_port1_online;
849 if (!eacr.p1)
850 eacr.e1 = 0;
851 etr_port1_uptodate = 0;
853 clear_bit(ETR_EVENT_UPDATE, &etr_events);
854 return eacr;
858 * Set up a timer that expires after the etr_tolec + 1.6 seconds if
859 * one of the ports needs an update.
861 static void etr_set_tolec_timeout(unsigned long long now)
863 unsigned long micros;
865 if ((!etr_eacr.p0 || etr_port0_uptodate) &&
866 (!etr_eacr.p1 || etr_port1_uptodate))
867 return;
868 micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
869 micros = (micros > 1600000) ? 0 : 1600000 - micros;
870 mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
874 * Set up a time that expires after 1/2 second.
876 static void etr_set_sync_timeout(void)
878 mod_timer(&etr_timer, jiffies + HZ/2);
882 * Update the aib information for one or both ports.
884 static struct etr_eacr etr_handle_update(struct etr_aib *aib,
885 struct etr_eacr eacr)
887 /* With both ports disabled the aib information is useless. */
888 if (!eacr.e0 && !eacr.e1)
889 return eacr;
891 /* Update port0 or port1 with aib stored in etr_work_fn. */
892 if (aib->esw.q == 0) {
893 /* Information for port 0 stored. */
894 if (eacr.p0 && !etr_port0_uptodate) {
895 etr_port0 = *aib;
896 if (etr_port0_online)
897 etr_port0_uptodate = 1;
899 } else {
900 /* Information for port 1 stored. */
901 if (eacr.p1 && !etr_port1_uptodate) {
902 etr_port1 = *aib;
903 if (etr_port0_online)
904 etr_port1_uptodate = 1;
909 * Do not try to get the alternate port aib if the clock
910 * is not in sync yet.
912 if (!eacr.es || !check_sync_clock())
913 return eacr;
916 * If steai is available we can get the information about
917 * the other port immediately. If only stetr is available the
918 * data-port bit toggle has to be used.
920 if (etr_steai_available) {
921 if (eacr.p0 && !etr_port0_uptodate) {
922 etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
923 etr_port0_uptodate = 1;
925 if (eacr.p1 && !etr_port1_uptodate) {
926 etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
927 etr_port1_uptodate = 1;
929 } else {
931 * One port was updated above, if the other
932 * port is not uptodate toggle dp bit.
934 if ((eacr.p0 && !etr_port0_uptodate) ||
935 (eacr.p1 && !etr_port1_uptodate))
936 eacr.dp ^= 1;
937 else
938 eacr.dp = 0;
940 return eacr;
944 * Write new etr control register if it differs from the current one.
945 * Return 1 if etr_tolec has been updated as well.
947 static void etr_update_eacr(struct etr_eacr eacr)
949 int dp_changed;
951 if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
952 /* No change, return. */
953 return;
955 * The disable of an active port of the change of the data port
956 * bit can/will cause a change in the data port.
958 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
959 (etr_eacr.dp ^ eacr.dp) != 0;
960 etr_eacr = eacr;
961 etr_setr(&etr_eacr);
962 if (dp_changed)
963 etr_tolec = get_clock();
967 * ETR work. In this function you'll find the main logic. In
968 * particular this is the only function that calls etr_update_eacr(),
969 * it "controls" the etr control register.
971 static void etr_work_fn(struct work_struct *work)
973 unsigned long long now;
974 struct etr_eacr eacr;
975 struct etr_aib aib;
976 int sync_port;
978 /* prevent multiple execution. */
979 mutex_lock(&etr_work_mutex);
981 /* Create working copy of etr_eacr. */
982 eacr = etr_eacr;
984 /* Check for the different events and their immediate effects. */
985 eacr = etr_handle_events(eacr);
987 /* Check if ETR is supposed to be active. */
988 eacr.ea = eacr.p0 || eacr.p1;
989 if (!eacr.ea) {
990 /* Both ports offline. Reset everything. */
991 eacr.dp = eacr.es = eacr.sl = 0;
992 on_each_cpu(disable_sync_clock, NULL, 1);
993 del_timer_sync(&etr_timer);
994 etr_update_eacr(eacr);
995 goto out_unlock;
998 /* Store aib to get the current ETR status word. */
999 BUG_ON(etr_stetr(&aib) != 0);
1000 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
1001 now = get_clock();
1004 * Update the port information if the last stepping port change
1005 * or data port change is older than 1.6 seconds.
1007 if (now >= etr_tolec + (1600000 << 12))
1008 eacr = etr_handle_update(&aib, eacr);
1011 * Select ports to enable. The prefered synchronization mode is PPS.
1012 * If a port can be enabled depends on a number of things:
1013 * 1) The port needs to be online and uptodate. A port is not
1014 * disabled just because it is not uptodate, but it is only
1015 * enabled if it is uptodate.
1016 * 2) The port needs to have the same mode (pps / etr).
1017 * 3) The port needs to be usable -> etr_port_valid() == 1
1018 * 4) To enable the second port the clock needs to be in sync.
1019 * 5) If both ports are useable and are ETR ports, the network id
1020 * has to be the same.
1021 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
1023 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
1024 eacr.sl = 0;
1025 eacr.e0 = 1;
1026 if (!etr_mode_is_pps(etr_eacr))
1027 eacr.es = 0;
1028 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
1029 eacr.e1 = 0;
1030 // FIXME: uptodate checks ?
1031 else if (etr_port0_uptodate && etr_port1_uptodate)
1032 eacr.e1 = 1;
1033 sync_port = (etr_port0_uptodate &&
1034 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
1035 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1036 eacr.sl = 0;
1037 eacr.e0 = 0;
1038 eacr.e1 = 1;
1039 if (!etr_mode_is_pps(etr_eacr))
1040 eacr.es = 0;
1041 sync_port = (etr_port1_uptodate &&
1042 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
1043 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1044 eacr.sl = 1;
1045 eacr.e0 = 1;
1046 if (!etr_mode_is_etr(etr_eacr))
1047 eacr.es = 0;
1048 if (!eacr.es || !eacr.p1 ||
1049 aib.esw.psc1 != etr_lpsc_operational_alt)
1050 eacr.e1 = 0;
1051 else if (etr_port0_uptodate && etr_port1_uptodate &&
1052 etr_compare_network(&etr_port0, &etr_port1))
1053 eacr.e1 = 1;
1054 sync_port = (etr_port0_uptodate &&
1055 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
1056 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1057 eacr.sl = 1;
1058 eacr.e0 = 0;
1059 eacr.e1 = 1;
1060 if (!etr_mode_is_etr(etr_eacr))
1061 eacr.es = 0;
1062 sync_port = (etr_port1_uptodate &&
1063 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
1064 } else {
1065 /* Both ports not usable. */
1066 eacr.es = eacr.sl = 0;
1067 sync_port = -1;
1071 * If the clock is in sync just update the eacr and return.
1072 * If there is no valid sync port wait for a port update.
1074 if ((eacr.es && check_sync_clock()) || sync_port < 0) {
1075 etr_update_eacr(eacr);
1076 etr_set_tolec_timeout(now);
1077 goto out_unlock;
1081 * Prepare control register for clock syncing
1082 * (reset data port bit, set sync check control.
1084 eacr.dp = 0;
1085 eacr.es = 1;
1088 * Update eacr and try to synchronize the clock. If the update
1089 * of eacr caused a stepping port switch (or if we have to
1090 * assume that a stepping port switch has occured) or the
1091 * clock syncing failed, reset the sync check control bit
1092 * and set up a timer to try again after 0.5 seconds
1094 etr_update_eacr(eacr);
1095 if (now < etr_tolec + (1600000 << 12) ||
1096 etr_sync_clock_stop(&aib, sync_port) != 0) {
1097 /* Sync failed. Try again in 1/2 second. */
1098 eacr.es = 0;
1099 etr_update_eacr(eacr);
1100 etr_set_sync_timeout();
1101 } else
1102 etr_set_tolec_timeout(now);
1103 out_unlock:
1104 mutex_unlock(&etr_work_mutex);
1108 * Sysfs interface functions
1110 static struct sysdev_class etr_sysclass = {
1111 .name = "etr",
1114 static struct sys_device etr_port0_dev = {
1115 .id = 0,
1116 .cls = &etr_sysclass,
1119 static struct sys_device etr_port1_dev = {
1120 .id = 1,
1121 .cls = &etr_sysclass,
1125 * ETR class attributes
1127 static ssize_t etr_stepping_port_show(struct sysdev_class *class,
1128 struct sysdev_class_attribute *attr,
1129 char *buf)
1131 return sprintf(buf, "%i\n", etr_port0.esw.p);
1134 static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1136 static ssize_t etr_stepping_mode_show(struct sysdev_class *class,
1137 struct sysdev_class_attribute *attr,
1138 char *buf)
1140 char *mode_str;
1142 if (etr_mode_is_pps(etr_eacr))
1143 mode_str = "pps";
1144 else if (etr_mode_is_etr(etr_eacr))
1145 mode_str = "etr";
1146 else
1147 mode_str = "local";
1148 return sprintf(buf, "%s\n", mode_str);
1151 static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1154 * ETR port attributes
1156 static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1158 if (dev == &etr_port0_dev)
1159 return etr_port0_online ? &etr_port0 : NULL;
1160 else
1161 return etr_port1_online ? &etr_port1 : NULL;
1164 static ssize_t etr_online_show(struct sys_device *dev,
1165 struct sysdev_attribute *attr,
1166 char *buf)
1168 unsigned int online;
1170 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1171 return sprintf(buf, "%i\n", online);
1174 static ssize_t etr_online_store(struct sys_device *dev,
1175 struct sysdev_attribute *attr,
1176 const char *buf, size_t count)
1178 unsigned int value;
1180 value = simple_strtoul(buf, NULL, 0);
1181 if (value != 0 && value != 1)
1182 return -EINVAL;
1183 if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1184 return -EOPNOTSUPP;
1185 mutex_lock(&clock_sync_mutex);
1186 if (dev == &etr_port0_dev) {
1187 if (etr_port0_online == value)
1188 goto out; /* Nothing to do. */
1189 etr_port0_online = value;
1190 if (etr_port0_online && etr_port1_online)
1191 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1192 else
1193 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1194 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
1195 queue_work(time_sync_wq, &etr_work);
1196 } else {
1197 if (etr_port1_online == value)
1198 goto out; /* Nothing to do. */
1199 etr_port1_online = value;
1200 if (etr_port0_online && etr_port1_online)
1201 set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1202 else
1203 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1204 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
1205 queue_work(time_sync_wq, &etr_work);
1207 out:
1208 mutex_unlock(&clock_sync_mutex);
1209 return count;
1212 static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1214 static ssize_t etr_stepping_control_show(struct sys_device *dev,
1215 struct sysdev_attribute *attr,
1216 char *buf)
1218 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1219 etr_eacr.e0 : etr_eacr.e1);
1222 static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1224 static ssize_t etr_mode_code_show(struct sys_device *dev,
1225 struct sysdev_attribute *attr, char *buf)
1227 if (!etr_port0_online && !etr_port1_online)
1228 /* Status word is not uptodate if both ports are offline. */
1229 return -ENODATA;
1230 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1231 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1234 static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1236 static ssize_t etr_untuned_show(struct sys_device *dev,
1237 struct sysdev_attribute *attr, char *buf)
1239 struct etr_aib *aib = etr_aib_from_dev(dev);
1241 if (!aib || !aib->slsw.v1)
1242 return -ENODATA;
1243 return sprintf(buf, "%i\n", aib->edf1.u);
1246 static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1248 static ssize_t etr_network_id_show(struct sys_device *dev,
1249 struct sysdev_attribute *attr, char *buf)
1251 struct etr_aib *aib = etr_aib_from_dev(dev);
1253 if (!aib || !aib->slsw.v1)
1254 return -ENODATA;
1255 return sprintf(buf, "%i\n", aib->edf1.net_id);
1258 static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1260 static ssize_t etr_id_show(struct sys_device *dev,
1261 struct sysdev_attribute *attr, char *buf)
1263 struct etr_aib *aib = etr_aib_from_dev(dev);
1265 if (!aib || !aib->slsw.v1)
1266 return -ENODATA;
1267 return sprintf(buf, "%i\n", aib->edf1.etr_id);
1270 static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1272 static ssize_t etr_port_number_show(struct sys_device *dev,
1273 struct sysdev_attribute *attr, char *buf)
1275 struct etr_aib *aib = etr_aib_from_dev(dev);
1277 if (!aib || !aib->slsw.v1)
1278 return -ENODATA;
1279 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1282 static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1284 static ssize_t etr_coupled_show(struct sys_device *dev,
1285 struct sysdev_attribute *attr, char *buf)
1287 struct etr_aib *aib = etr_aib_from_dev(dev);
1289 if (!aib || !aib->slsw.v3)
1290 return -ENODATA;
1291 return sprintf(buf, "%i\n", aib->edf3.c);
1294 static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1296 static ssize_t etr_local_time_show(struct sys_device *dev,
1297 struct sysdev_attribute *attr, char *buf)
1299 struct etr_aib *aib = etr_aib_from_dev(dev);
1301 if (!aib || !aib->slsw.v3)
1302 return -ENODATA;
1303 return sprintf(buf, "%i\n", aib->edf3.blto);
1306 static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1308 static ssize_t etr_utc_offset_show(struct sys_device *dev,
1309 struct sysdev_attribute *attr, char *buf)
1311 struct etr_aib *aib = etr_aib_from_dev(dev);
1313 if (!aib || !aib->slsw.v3)
1314 return -ENODATA;
1315 return sprintf(buf, "%i\n", aib->edf3.buo);
1318 static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1320 static struct sysdev_attribute *etr_port_attributes[] = {
1321 &attr_online,
1322 &attr_stepping_control,
1323 &attr_state_code,
1324 &attr_untuned,
1325 &attr_network,
1326 &attr_id,
1327 &attr_port,
1328 &attr_coupled,
1329 &attr_local_time,
1330 &attr_utc_offset,
1331 NULL
1334 static int __init etr_register_port(struct sys_device *dev)
1336 struct sysdev_attribute **attr;
1337 int rc;
1339 rc = sysdev_register(dev);
1340 if (rc)
1341 goto out;
1342 for (attr = etr_port_attributes; *attr; attr++) {
1343 rc = sysdev_create_file(dev, *attr);
1344 if (rc)
1345 goto out_unreg;
1347 return 0;
1348 out_unreg:
1349 for (; attr >= etr_port_attributes; attr--)
1350 sysdev_remove_file(dev, *attr);
1351 sysdev_unregister(dev);
1352 out:
1353 return rc;
1356 static void __init etr_unregister_port(struct sys_device *dev)
1358 struct sysdev_attribute **attr;
1360 for (attr = etr_port_attributes; *attr; attr++)
1361 sysdev_remove_file(dev, *attr);
1362 sysdev_unregister(dev);
1365 static int __init etr_init_sysfs(void)
1367 int rc;
1369 rc = sysdev_class_register(&etr_sysclass);
1370 if (rc)
1371 goto out;
1372 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1373 if (rc)
1374 goto out_unreg_class;
1375 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1376 if (rc)
1377 goto out_remove_stepping_port;
1378 rc = etr_register_port(&etr_port0_dev);
1379 if (rc)
1380 goto out_remove_stepping_mode;
1381 rc = etr_register_port(&etr_port1_dev);
1382 if (rc)
1383 goto out_remove_port0;
1384 return 0;
1386 out_remove_port0:
1387 etr_unregister_port(&etr_port0_dev);
1388 out_remove_stepping_mode:
1389 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1390 out_remove_stepping_port:
1391 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1392 out_unreg_class:
1393 sysdev_class_unregister(&etr_sysclass);
1394 out:
1395 return rc;
1398 device_initcall(etr_init_sysfs);
1401 * Server Time Protocol (STP) code.
1403 static int stp_online;
1404 static struct stp_sstpi stp_info;
1405 static void *stp_page;
1407 static void stp_work_fn(struct work_struct *work);
1408 static DEFINE_MUTEX(stp_work_mutex);
1409 static DECLARE_WORK(stp_work, stp_work_fn);
1410 static struct timer_list stp_timer;
1412 static int __init early_parse_stp(char *p)
1414 if (strncmp(p, "off", 3) == 0)
1415 stp_online = 0;
1416 else if (strncmp(p, "on", 2) == 0)
1417 stp_online = 1;
1418 return 0;
1420 early_param("stp", early_parse_stp);
1423 * Reset STP attachment.
1425 static void __init stp_reset(void)
1427 int rc;
1429 stp_page = (void *) get_zeroed_page(GFP_ATOMIC);
1430 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1431 if (rc == 0)
1432 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1433 else if (stp_online) {
1434 pr_warning("The real or virtual hardware system does "
1435 "not provide an STP interface\n");
1436 free_page((unsigned long) stp_page);
1437 stp_page = NULL;
1438 stp_online = 0;
1442 static void stp_timeout(unsigned long dummy)
1444 queue_work(time_sync_wq, &stp_work);
1447 static int __init stp_init(void)
1449 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1450 return 0;
1451 setup_timer(&stp_timer, stp_timeout, 0UL);
1452 time_init_wq();
1453 if (!stp_online)
1454 return 0;
1455 queue_work(time_sync_wq, &stp_work);
1456 return 0;
1459 arch_initcall(stp_init);
1462 * STP timing alert. There are three causes:
1463 * 1) timing status change
1464 * 2) link availability change
1465 * 3) time control parameter change
1466 * In all three cases we are only interested in the clock source state.
1467 * If a STP clock source is now available use it.
1469 static void stp_timing_alert(struct stp_irq_parm *intparm)
1471 if (intparm->tsc || intparm->lac || intparm->tcpc)
1472 queue_work(time_sync_wq, &stp_work);
1476 * STP sync check machine check. This is called when the timing state
1477 * changes from the synchronized state to the unsynchronized state.
1478 * After a STP sync check the clock is not in sync. The machine check
1479 * is broadcasted to all cpus at the same time.
1481 void stp_sync_check(void)
1483 disable_sync_clock(NULL);
1484 queue_work(time_sync_wq, &stp_work);
1488 * STP island condition machine check. This is called when an attached
1489 * server attempts to communicate over an STP link and the servers
1490 * have matching CTN ids and have a valid stratum-1 configuration
1491 * but the configurations do not match.
1493 void stp_island_check(void)
1495 disable_sync_clock(NULL);
1496 queue_work(time_sync_wq, &stp_work);
1500 static int stp_sync_clock(void *data)
1502 static int first;
1503 unsigned long long old_clock, delta;
1504 struct clock_sync_data *stp_sync;
1505 int rc;
1507 stp_sync = data;
1509 if (xchg(&first, 1) == 1) {
1510 /* Slave */
1511 clock_sync_cpu(stp_sync);
1512 return 0;
1515 /* Wait until all other cpus entered the sync function. */
1516 while (atomic_read(&stp_sync->cpus) != 0)
1517 cpu_relax();
1519 enable_sync_clock();
1521 rc = 0;
1522 if (stp_info.todoff[0] || stp_info.todoff[1] ||
1523 stp_info.todoff[2] || stp_info.todoff[3] ||
1524 stp_info.tmd != 2) {
1525 old_clock = get_clock();
1526 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1527 if (rc == 0) {
1528 delta = adjust_time(old_clock, get_clock(), 0);
1529 fixup_clock_comparator(delta);
1530 rc = chsc_sstpi(stp_page, &stp_info,
1531 sizeof(struct stp_sstpi));
1532 if (rc == 0 && stp_info.tmd != 2)
1533 rc = -EAGAIN;
1536 if (rc) {
1537 disable_sync_clock(NULL);
1538 stp_sync->in_sync = -EAGAIN;
1539 } else
1540 stp_sync->in_sync = 1;
1541 xchg(&first, 0);
1542 return 0;
1546 * STP work. Check for the STP state and take over the clock
1547 * synchronization if the STP clock source is usable.
1549 static void stp_work_fn(struct work_struct *work)
1551 struct clock_sync_data stp_sync;
1552 int rc;
1554 /* prevent multiple execution. */
1555 mutex_lock(&stp_work_mutex);
1557 if (!stp_online) {
1558 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1559 del_timer_sync(&stp_timer);
1560 goto out_unlock;
1563 rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1564 if (rc)
1565 goto out_unlock;
1567 rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1568 if (rc || stp_info.c == 0)
1569 goto out_unlock;
1571 /* Skip synchronization if the clock is already in sync. */
1572 if (check_sync_clock())
1573 goto out_unlock;
1575 memset(&stp_sync, 0, sizeof(stp_sync));
1576 get_online_cpus();
1577 atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
1578 stop_machine(stp_sync_clock, &stp_sync, &cpu_online_map);
1579 put_online_cpus();
1581 if (!check_sync_clock())
1583 * There is a usable clock but the synchonization failed.
1584 * Retry after a second.
1586 mod_timer(&stp_timer, jiffies + HZ);
1588 out_unlock:
1589 mutex_unlock(&stp_work_mutex);
1593 * STP class sysfs interface functions
1595 static struct sysdev_class stp_sysclass = {
1596 .name = "stp",
1599 static ssize_t stp_ctn_id_show(struct sysdev_class *class,
1600 struct sysdev_class_attribute *attr,
1601 char *buf)
1603 if (!stp_online)
1604 return -ENODATA;
1605 return sprintf(buf, "%016llx\n",
1606 *(unsigned long long *) stp_info.ctnid);
1609 static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1611 static ssize_t stp_ctn_type_show(struct sysdev_class *class,
1612 struct sysdev_class_attribute *attr,
1613 char *buf)
1615 if (!stp_online)
1616 return -ENODATA;
1617 return sprintf(buf, "%i\n", stp_info.ctn);
1620 static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1622 static ssize_t stp_dst_offset_show(struct sysdev_class *class,
1623 struct sysdev_class_attribute *attr,
1624 char *buf)
1626 if (!stp_online || !(stp_info.vbits & 0x2000))
1627 return -ENODATA;
1628 return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1631 static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1633 static ssize_t stp_leap_seconds_show(struct sysdev_class *class,
1634 struct sysdev_class_attribute *attr,
1635 char *buf)
1637 if (!stp_online || !(stp_info.vbits & 0x8000))
1638 return -ENODATA;
1639 return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1642 static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1644 static ssize_t stp_stratum_show(struct sysdev_class *class,
1645 struct sysdev_class_attribute *attr,
1646 char *buf)
1648 if (!stp_online)
1649 return -ENODATA;
1650 return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1653 static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1655 static ssize_t stp_time_offset_show(struct sysdev_class *class,
1656 struct sysdev_class_attribute *attr,
1657 char *buf)
1659 if (!stp_online || !(stp_info.vbits & 0x0800))
1660 return -ENODATA;
1661 return sprintf(buf, "%i\n", (int) stp_info.tto);
1664 static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1666 static ssize_t stp_time_zone_offset_show(struct sysdev_class *class,
1667 struct sysdev_class_attribute *attr,
1668 char *buf)
1670 if (!stp_online || !(stp_info.vbits & 0x4000))
1671 return -ENODATA;
1672 return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1675 static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1676 stp_time_zone_offset_show, NULL);
1678 static ssize_t stp_timing_mode_show(struct sysdev_class *class,
1679 struct sysdev_class_attribute *attr,
1680 char *buf)
1682 if (!stp_online)
1683 return -ENODATA;
1684 return sprintf(buf, "%i\n", stp_info.tmd);
1687 static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1689 static ssize_t stp_timing_state_show(struct sysdev_class *class,
1690 struct sysdev_class_attribute *attr,
1691 char *buf)
1693 if (!stp_online)
1694 return -ENODATA;
1695 return sprintf(buf, "%i\n", stp_info.tst);
1698 static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1700 static ssize_t stp_online_show(struct sysdev_class *class,
1701 struct sysdev_class_attribute *attr,
1702 char *buf)
1704 return sprintf(buf, "%i\n", stp_online);
1707 static ssize_t stp_online_store(struct sysdev_class *class,
1708 struct sysdev_class_attribute *attr,
1709 const char *buf, size_t count)
1711 unsigned int value;
1713 value = simple_strtoul(buf, NULL, 0);
1714 if (value != 0 && value != 1)
1715 return -EINVAL;
1716 if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1717 return -EOPNOTSUPP;
1718 mutex_lock(&clock_sync_mutex);
1719 stp_online = value;
1720 if (stp_online)
1721 set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1722 else
1723 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1724 queue_work(time_sync_wq, &stp_work);
1725 mutex_unlock(&clock_sync_mutex);
1726 return count;
1730 * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1731 * stp/online but attr_online already exists in this file ..
1733 static struct sysdev_class_attribute attr_stp_online = {
1734 .attr = { .name = "online", .mode = 0600 },
1735 .show = stp_online_show,
1736 .store = stp_online_store,
1739 static struct sysdev_class_attribute *stp_attributes[] = {
1740 &attr_ctn_id,
1741 &attr_ctn_type,
1742 &attr_dst_offset,
1743 &attr_leap_seconds,
1744 &attr_stp_online,
1745 &attr_stratum,
1746 &attr_time_offset,
1747 &attr_time_zone_offset,
1748 &attr_timing_mode,
1749 &attr_timing_state,
1750 NULL
1753 static int __init stp_init_sysfs(void)
1755 struct sysdev_class_attribute **attr;
1756 int rc;
1758 rc = sysdev_class_register(&stp_sysclass);
1759 if (rc)
1760 goto out;
1761 for (attr = stp_attributes; *attr; attr++) {
1762 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1763 if (rc)
1764 goto out_unreg;
1766 return 0;
1767 out_unreg:
1768 for (; attr >= stp_attributes; attr--)
1769 sysdev_class_remove_file(&stp_sysclass, *attr);
1770 sysdev_class_unregister(&stp_sysclass);
1771 out:
1772 return rc;
1775 device_initcall(stp_init_sysfs);