[S390] qdio: fix qeth port count detection
[linux-2.6] / arch / s390 / kernel / time.c
1 /*
2  *  arch/s390/kernel/time.c
3  *    Time of day based timer functions.
4  *
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)
10  *
11  *  Derived from "arch/i386/kernel/time.c"
12  *    Copyright (C) 1991, 1992, 1995  Linus Torvalds
13  */
14
15 #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/cpu.h>
24 #include <linux/stop_machine.h>
25 #include <linux/time.h>
26 #include <linux/sysdev.h>
27 #include <linux/delay.h>
28 #include <linux/init.h>
29 #include <linux/smp.h>
30 #include <linux/types.h>
31 #include <linux/profile.h>
32 #include <linux/timex.h>
33 #include <linux/notifier.h>
34 #include <linux/clocksource.h>
35 #include <linux/clockchips.h>
36 #include <linux/bootmem.h>
37 #include <asm/uaccess.h>
38 #include <asm/delay.h>
39 #include <asm/s390_ext.h>
40 #include <asm/div64.h>
41 #include <asm/vdso.h>
42 #include <asm/irq.h>
43 #include <asm/irq_regs.h>
44 #include <asm/timer.h>
45 #include <asm/etr.h>
46 #include <asm/cio.h>
47
48 /* change this if you have some constant time drift */
49 #define USECS_PER_JIFFY     ((unsigned long) 1000000/HZ)
50 #define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
51
52 /* The value of the TOD clock for 1.1.1970. */
53 #define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
54
55 /*
56  * Create a small time difference between the timer interrupts
57  * on the different cpus to avoid lock contention.
58  */
59 #define CPU_DEVIATION       (smp_processor_id() << 12)
60
61 #define TICK_SIZE tick
62
63 static ext_int_info_t ext_int_info_cc;
64 static ext_int_info_t ext_int_etr_cc;
65 static u64 sched_clock_base_cc;
66
67 static DEFINE_PER_CPU(struct clock_event_device, comparators);
68
69 /*
70  * Scheduler clock - returns current time in nanosec units.
71  */
72 unsigned long long sched_clock(void)
73 {
74         return ((get_clock_xt() - sched_clock_base_cc) * 125) >> 9;
75 }
76
77 /*
78  * Monotonic_clock - returns # of nanoseconds passed since time_init()
79  */
80 unsigned long long monotonic_clock(void)
81 {
82         return sched_clock();
83 }
84 EXPORT_SYMBOL(monotonic_clock);
85
86 void tod_to_timeval(__u64 todval, struct timespec *xtime)
87 {
88         unsigned long long sec;
89
90         sec = todval >> 12;
91         do_div(sec, 1000000);
92         xtime->tv_sec = sec;
93         todval -= (sec * 1000000) << 12;
94         xtime->tv_nsec = ((todval * 1000) >> 12);
95 }
96
97 #ifdef CONFIG_PROFILING
98 #define s390_do_profile()       profile_tick(CPU_PROFILING)
99 #else
100 #define s390_do_profile()       do { ; } while(0)
101 #endif /* CONFIG_PROFILING */
102
103 void clock_comparator_work(void)
104 {
105         struct clock_event_device *cd;
106
107         S390_lowcore.clock_comparator = -1ULL;
108         set_clock_comparator(S390_lowcore.clock_comparator);
109         cd = &__get_cpu_var(comparators);
110         cd->event_handler(cd);
111         s390_do_profile();
112 }
113
114 /*
115  * Fixup the clock comparator.
116  */
117 static void fixup_clock_comparator(unsigned long long delta)
118 {
119         /* If nobody is waiting there's nothing to fix. */
120         if (S390_lowcore.clock_comparator == -1ULL)
121                 return;
122         S390_lowcore.clock_comparator += delta;
123         set_clock_comparator(S390_lowcore.clock_comparator);
124 }
125
126 static int s390_next_event(unsigned long delta,
127                            struct clock_event_device *evt)
128 {
129         S390_lowcore.clock_comparator = get_clock() + delta;
130         set_clock_comparator(S390_lowcore.clock_comparator);
131         return 0;
132 }
133
134 static void s390_set_mode(enum clock_event_mode mode,
135                           struct clock_event_device *evt)
136 {
137 }
138
139 /*
140  * Set up lowcore and control register of the current cpu to
141  * enable TOD clock and clock comparator interrupts.
142  */
143 void init_cpu_timer(void)
144 {
145         struct clock_event_device *cd;
146         int cpu;
147
148         S390_lowcore.clock_comparator = -1ULL;
149         set_clock_comparator(S390_lowcore.clock_comparator);
150
151         cpu = smp_processor_id();
152         cd = &per_cpu(comparators, cpu);
153         cd->name                = "comparator";
154         cd->features            = CLOCK_EVT_FEAT_ONESHOT;
155         cd->mult                = 16777;
156         cd->shift               = 12;
157         cd->min_delta_ns        = 1;
158         cd->max_delta_ns        = LONG_MAX;
159         cd->rating              = 400;
160         cd->cpumask             = cpumask_of_cpu(cpu);
161         cd->set_next_event      = s390_next_event;
162         cd->set_mode            = s390_set_mode;
163
164         clockevents_register_device(cd);
165
166         /* Enable clock comparator timer interrupt. */
167         __ctl_set_bit(0,11);
168
169         /* Always allow the timing alert external interrupt. */
170         __ctl_set_bit(0, 4);
171 }
172
173 static void clock_comparator_interrupt(__u16 code)
174 {
175         if (S390_lowcore.clock_comparator == -1ULL)
176                 set_clock_comparator(S390_lowcore.clock_comparator);
177 }
178
179 static void etr_timing_alert(struct etr_irq_parm *);
180 static void stp_timing_alert(struct stp_irq_parm *);
181
182 static void timing_alert_interrupt(__u16 code)
183 {
184         if (S390_lowcore.ext_params & 0x00c40000)
185                 etr_timing_alert((struct etr_irq_parm *)
186                                  &S390_lowcore.ext_params);
187         if (S390_lowcore.ext_params & 0x00038000)
188                 stp_timing_alert((struct stp_irq_parm *)
189                                  &S390_lowcore.ext_params);
190 }
191
192 static void etr_reset(void);
193 static void stp_reset(void);
194
195 /*
196  * Get the TOD clock running.
197  */
198 static u64 __init reset_tod_clock(void)
199 {
200         u64 time;
201
202         etr_reset();
203         stp_reset();
204         if (store_clock(&time) == 0)
205                 return time;
206         /* TOD clock not running. Set the clock to Unix Epoch. */
207         if (set_clock(TOD_UNIX_EPOCH) != 0 || store_clock(&time) != 0)
208                 panic("TOD clock not operational.");
209
210         return TOD_UNIX_EPOCH;
211 }
212
213 static cycle_t read_tod_clock(void)
214 {
215         return get_clock();
216 }
217
218 static struct clocksource clocksource_tod = {
219         .name           = "tod",
220         .rating         = 400,
221         .read           = read_tod_clock,
222         .mask           = -1ULL,
223         .mult           = 1000,
224         .shift          = 12,
225         .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
226 };
227
228
229 void update_vsyscall(struct timespec *wall_time, struct clocksource *clock)
230 {
231         if (clock != &clocksource_tod)
232                 return;
233
234         /* Make userspace gettimeofday spin until we're done. */
235         ++vdso_data->tb_update_count;
236         smp_wmb();
237         vdso_data->xtime_tod_stamp = clock->cycle_last;
238         vdso_data->xtime_clock_sec = xtime.tv_sec;
239         vdso_data->xtime_clock_nsec = xtime.tv_nsec;
240         vdso_data->wtom_clock_sec = wall_to_monotonic.tv_sec;
241         vdso_data->wtom_clock_nsec = wall_to_monotonic.tv_nsec;
242         smp_wmb();
243         ++vdso_data->tb_update_count;
244 }
245
246 extern struct timezone sys_tz;
247
248 void update_vsyscall_tz(void)
249 {
250         /* Make userspace gettimeofday spin until we're done. */
251         ++vdso_data->tb_update_count;
252         smp_wmb();
253         vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
254         vdso_data->tz_dsttime = sys_tz.tz_dsttime;
255         smp_wmb();
256         ++vdso_data->tb_update_count;
257 }
258
259 /*
260  * Initialize the TOD clock and the CPU timer of
261  * the boot cpu.
262  */
263 void __init time_init(void)
264 {
265         sched_clock_base_cc = reset_tod_clock();
266
267         /* set xtime */
268         tod_to_timeval(sched_clock_base_cc - TOD_UNIX_EPOCH, &xtime);
269         set_normalized_timespec(&wall_to_monotonic,
270                                 -xtime.tv_sec, -xtime.tv_nsec);
271
272         /* request the clock comparator external interrupt */
273         if (register_early_external_interrupt(0x1004,
274                                               clock_comparator_interrupt,
275                                               &ext_int_info_cc) != 0)
276                 panic("Couldn't request external interrupt 0x1004");
277
278         if (clocksource_register(&clocksource_tod) != 0)
279                 panic("Could not register TOD clock source");
280
281         /* request the timing alert external interrupt */
282         if (register_early_external_interrupt(0x1406,
283                                               timing_alert_interrupt,
284                                               &ext_int_etr_cc) != 0)
285                 panic("Couldn't request external interrupt 0x1406");
286
287         /* Enable TOD clock interrupts on the boot cpu. */
288         init_cpu_timer();
289
290 #ifdef CONFIG_VIRT_TIMER
291         vtime_init();
292 #endif
293 }
294
295 /*
296  * The time is "clock". old is what we think the time is.
297  * Adjust the value by a multiple of jiffies and add the delta to ntp.
298  * "delay" is an approximation how long the synchronization took. If
299  * the time correction is positive, then "delay" is subtracted from
300  * the time difference and only the remaining part is passed to ntp.
301  */
302 static unsigned long long adjust_time(unsigned long long old,
303                                       unsigned long long clock,
304                                       unsigned long long delay)
305 {
306         unsigned long long delta, ticks;
307         struct timex adjust;
308
309         if (clock > old) {
310                 /* It is later than we thought. */
311                 delta = ticks = clock - old;
312                 delta = ticks = (delta < delay) ? 0 : delta - delay;
313                 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
314                 adjust.offset = ticks * (1000000 / HZ);
315         } else {
316                 /* It is earlier than we thought. */
317                 delta = ticks = old - clock;
318                 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
319                 delta = -delta;
320                 adjust.offset = -ticks * (1000000 / HZ);
321         }
322         sched_clock_base_cc += delta;
323         if (adjust.offset != 0) {
324                 printk(KERN_NOTICE "etr: time adjusted by %li micro-seconds\n",
325                        adjust.offset);
326                 adjust.modes = ADJ_OFFSET_SINGLESHOT;
327                 do_adjtimex(&adjust);
328         }
329         return delta;
330 }
331
332 static DEFINE_PER_CPU(atomic_t, clock_sync_word);
333 static unsigned long clock_sync_flags;
334
335 #define CLOCK_SYNC_HAS_ETR      0
336 #define CLOCK_SYNC_HAS_STP      1
337 #define CLOCK_SYNC_ETR          2
338 #define CLOCK_SYNC_STP          3
339
340 /*
341  * The synchronous get_clock function. It will write the current clock
342  * value to the clock pointer and return 0 if the clock is in sync with
343  * the external time source. If the clock mode is local it will return
344  * -ENOSYS and -EAGAIN if the clock is not in sync with the external
345  * reference.
346  */
347 int get_sync_clock(unsigned long long *clock)
348 {
349         atomic_t *sw_ptr;
350         unsigned int sw0, sw1;
351
352         sw_ptr = &get_cpu_var(clock_sync_word);
353         sw0 = atomic_read(sw_ptr);
354         *clock = get_clock();
355         sw1 = atomic_read(sw_ptr);
356         put_cpu_var(clock_sync_sync);
357         if (sw0 == sw1 && (sw0 & 0x80000000U))
358                 /* Success: time is in sync. */
359                 return 0;
360         if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags) &&
361             !test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
362                 return -ENOSYS;
363         if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags) &&
364             !test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
365                 return -EACCES;
366         return -EAGAIN;
367 }
368 EXPORT_SYMBOL(get_sync_clock);
369
370 /*
371  * Make get_sync_clock return -EAGAIN.
372  */
373 static void disable_sync_clock(void *dummy)
374 {
375         atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
376         /*
377          * Clear the in-sync bit 2^31. All get_sync_clock calls will
378          * fail until the sync bit is turned back on. In addition
379          * increase the "sequence" counter to avoid the race of an
380          * etr event and the complete recovery against get_sync_clock.
381          */
382         atomic_clear_mask(0x80000000, sw_ptr);
383         atomic_inc(sw_ptr);
384 }
385
386 /*
387  * Make get_sync_clock return 0 again.
388  * Needs to be called from a context disabled for preemption.
389  */
390 static void enable_sync_clock(void)
391 {
392         atomic_t *sw_ptr = &__get_cpu_var(clock_sync_word);
393         atomic_set_mask(0x80000000, sw_ptr);
394 }
395
396 /* Single threaded workqueue used for etr and stp sync events */
397 static struct workqueue_struct *time_sync_wq;
398
399 static void __init time_init_wq(void)
400 {
401         if (!time_sync_wq)
402                 time_sync_wq = create_singlethread_workqueue("timesync");
403 }
404
405 /*
406  * External Time Reference (ETR) code.
407  */
408 static int etr_port0_online;
409 static int etr_port1_online;
410 static int etr_steai_available;
411
412 static int __init early_parse_etr(char *p)
413 {
414         if (strncmp(p, "off", 3) == 0)
415                 etr_port0_online = etr_port1_online = 0;
416         else if (strncmp(p, "port0", 5) == 0)
417                 etr_port0_online = 1;
418         else if (strncmp(p, "port1", 5) == 0)
419                 etr_port1_online = 1;
420         else if (strncmp(p, "on", 2) == 0)
421                 etr_port0_online = etr_port1_online = 1;
422         return 0;
423 }
424 early_param("etr", early_parse_etr);
425
426 enum etr_event {
427         ETR_EVENT_PORT0_CHANGE,
428         ETR_EVENT_PORT1_CHANGE,
429         ETR_EVENT_PORT_ALERT,
430         ETR_EVENT_SYNC_CHECK,
431         ETR_EVENT_SWITCH_LOCAL,
432         ETR_EVENT_UPDATE,
433 };
434
435 /*
436  * Valid bit combinations of the eacr register are (x = don't care):
437  * e0 e1 dp p0 p1 ea es sl
438  *  0  0  x  0  0  0  0  0  initial, disabled state
439  *  0  0  x  0  1  1  0  0  port 1 online
440  *  0  0  x  1  0  1  0  0  port 0 online
441  *  0  0  x  1  1  1  0  0  both ports online
442  *  0  1  x  0  1  1  0  0  port 1 online and usable, ETR or PPS mode
443  *  0  1  x  0  1  1  0  1  port 1 online, usable and ETR mode
444  *  0  1  x  0  1  1  1  0  port 1 online, usable, PPS mode, in-sync
445  *  0  1  x  0  1  1  1  1  port 1 online, usable, ETR mode, in-sync
446  *  0  1  x  1  1  1  0  0  both ports online, port 1 usable
447  *  0  1  x  1  1  1  1  0  both ports online, port 1 usable, PPS mode, in-sync
448  *  0  1  x  1  1  1  1  1  both ports online, port 1 usable, ETR mode, in-sync
449  *  1  0  x  1  0  1  0  0  port 0 online and usable, ETR or PPS mode
450  *  1  0  x  1  0  1  0  1  port 0 online, usable and ETR mode
451  *  1  0  x  1  0  1  1  0  port 0 online, usable, PPS mode, in-sync
452  *  1  0  x  1  0  1  1  1  port 0 online, usable, ETR mode, in-sync
453  *  1  0  x  1  1  1  0  0  both ports online, port 0 usable
454  *  1  0  x  1  1  1  1  0  both ports online, port 0 usable, PPS mode, in-sync
455  *  1  0  x  1  1  1  1  1  both ports online, port 0 usable, ETR mode, in-sync
456  *  1  1  x  1  1  1  1  0  both ports online & usable, ETR, in-sync
457  *  1  1  x  1  1  1  1  1  both ports online & usable, ETR, in-sync
458  */
459 static struct etr_eacr etr_eacr;
460 static u64 etr_tolec;                   /* time of last eacr update */
461 static struct etr_aib etr_port0;
462 static int etr_port0_uptodate;
463 static struct etr_aib etr_port1;
464 static int etr_port1_uptodate;
465 static unsigned long etr_events;
466 static struct timer_list etr_timer;
467
468 static void etr_timeout(unsigned long dummy);
469 static void etr_work_fn(struct work_struct *work);
470 static DEFINE_MUTEX(etr_work_mutex);
471 static DECLARE_WORK(etr_work, etr_work_fn);
472
473 /*
474  * Reset ETR attachment.
475  */
476 static void etr_reset(void)
477 {
478         etr_eacr =  (struct etr_eacr) {
479                 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
480                 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
481                 .es = 0, .sl = 0 };
482         if (etr_setr(&etr_eacr) == 0) {
483                 etr_tolec = get_clock();
484                 set_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags);
485         } else if (etr_port0_online || etr_port1_online) {
486                 printk(KERN_WARNING "Running on non ETR capable "
487                        "machine, only local mode available.\n");
488                 etr_port0_online = etr_port1_online = 0;
489         }
490 }
491
492 static int __init etr_init(void)
493 {
494         struct etr_aib aib;
495
496         if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
497                 return 0;
498         time_init_wq();
499         /* Check if this machine has the steai instruction. */
500         if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
501                 etr_steai_available = 1;
502         setup_timer(&etr_timer, etr_timeout, 0UL);
503         if (etr_port0_online) {
504                 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
505                 queue_work(time_sync_wq, &etr_work);
506         }
507         if (etr_port1_online) {
508                 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
509                 queue_work(time_sync_wq, &etr_work);
510         }
511         return 0;
512 }
513
514 arch_initcall(etr_init);
515
516 /*
517  * Two sorts of ETR machine checks. The architecture reads:
518  * "When a machine-check niterruption occurs and if a switch-to-local or
519  *  ETR-sync-check interrupt request is pending but disabled, this pending
520  *  disabled interruption request is indicated and is cleared".
521  * Which means that we can get etr_switch_to_local events from the machine
522  * check handler although the interruption condition is disabled. Lovely..
523  */
524
525 /*
526  * Switch to local machine check. This is called when the last usable
527  * ETR port goes inactive. After switch to local the clock is not in sync.
528  */
529 void etr_switch_to_local(void)
530 {
531         if (!etr_eacr.sl)
532                 return;
533         if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
534                 disable_sync_clock(NULL);
535         set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events);
536         queue_work(time_sync_wq, &etr_work);
537 }
538
539 /*
540  * ETR sync check machine check. This is called when the ETR OTE and the
541  * local clock OTE are farther apart than the ETR sync check tolerance.
542  * After a ETR sync check the clock is not in sync. The machine check
543  * is broadcasted to all cpus at the same time.
544  */
545 void etr_sync_check(void)
546 {
547         if (!etr_eacr.es)
548                 return;
549         if (test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
550                 disable_sync_clock(NULL);
551         set_bit(ETR_EVENT_SYNC_CHECK, &etr_events);
552         queue_work(time_sync_wq, &etr_work);
553 }
554
555 /*
556  * ETR timing alert. There are two causes:
557  * 1) port state change, check the usability of the port
558  * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
559  *    sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
560  *    or ETR-data word 4 (edf4) has changed.
561  */
562 static void etr_timing_alert(struct etr_irq_parm *intparm)
563 {
564         if (intparm->pc0)
565                 /* ETR port 0 state change. */
566                 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
567         if (intparm->pc1)
568                 /* ETR port 1 state change. */
569                 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
570         if (intparm->eai)
571                 /*
572                  * ETR port alert on either port 0, 1 or both.
573                  * Both ports are not up-to-date now.
574                  */
575                 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
576         queue_work(time_sync_wq, &etr_work);
577 }
578
579 static void etr_timeout(unsigned long dummy)
580 {
581         set_bit(ETR_EVENT_UPDATE, &etr_events);
582         queue_work(time_sync_wq, &etr_work);
583 }
584
585 /*
586  * Check if the etr mode is pss.
587  */
588 static inline int etr_mode_is_pps(struct etr_eacr eacr)
589 {
590         return eacr.es && !eacr.sl;
591 }
592
593 /*
594  * Check if the etr mode is etr.
595  */
596 static inline int etr_mode_is_etr(struct etr_eacr eacr)
597 {
598         return eacr.es && eacr.sl;
599 }
600
601 /*
602  * Check if the port can be used for TOD synchronization.
603  * For PPS mode the port has to receive OTEs. For ETR mode
604  * the port has to receive OTEs, the ETR stepping bit has to
605  * be zero and the validity bits for data frame 1, 2, and 3
606  * have to be 1.
607  */
608 static int etr_port_valid(struct etr_aib *aib, int port)
609 {
610         unsigned int psc;
611
612         /* Check that this port is receiving OTEs. */
613         if (aib->tsp == 0)
614                 return 0;
615
616         psc = port ? aib->esw.psc1 : aib->esw.psc0;
617         if (psc == etr_lpsc_pps_mode)
618                 return 1;
619         if (psc == etr_lpsc_operational_step)
620                 return !aib->esw.y && aib->slsw.v1 &&
621                         aib->slsw.v2 && aib->slsw.v3;
622         return 0;
623 }
624
625 /*
626  * Check if two ports are on the same network.
627  */
628 static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
629 {
630         // FIXME: any other fields we have to compare?
631         return aib1->edf1.net_id == aib2->edf1.net_id;
632 }
633
634 /*
635  * Wrapper for etr_stei that converts physical port states
636  * to logical port states to be consistent with the output
637  * of stetr (see etr_psc vs. etr_lpsc).
638  */
639 static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
640 {
641         BUG_ON(etr_steai(aib, func) != 0);
642         /* Convert port state to logical port state. */
643         if (aib->esw.psc0 == 1)
644                 aib->esw.psc0 = 2;
645         else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
646                 aib->esw.psc0 = 1;
647         if (aib->esw.psc1 == 1)
648                 aib->esw.psc1 = 2;
649         else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
650                 aib->esw.psc1 = 1;
651 }
652
653 /*
654  * Check if the aib a2 is still connected to the same attachment as
655  * aib a1, the etv values differ by one and a2 is valid.
656  */
657 static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
658 {
659         int state_a1, state_a2;
660
661         /* Paranoia check: e0/e1 should better be the same. */
662         if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
663             a1->esw.eacr.e1 != a2->esw.eacr.e1)
664                 return 0;
665
666         /* Still connected to the same etr ? */
667         state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
668         state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
669         if (state_a1 == etr_lpsc_operational_step) {
670                 if (state_a2 != etr_lpsc_operational_step ||
671                     a1->edf1.net_id != a2->edf1.net_id ||
672                     a1->edf1.etr_id != a2->edf1.etr_id ||
673                     a1->edf1.etr_pn != a2->edf1.etr_pn)
674                         return 0;
675         } else if (state_a2 != etr_lpsc_pps_mode)
676                 return 0;
677
678         /* The ETV value of a2 needs to be ETV of a1 + 1. */
679         if (a1->edf2.etv + 1 != a2->edf2.etv)
680                 return 0;
681
682         if (!etr_port_valid(a2, p))
683                 return 0;
684
685         return 1;
686 }
687
688 struct clock_sync_data {
689         atomic_t cpus;
690         int in_sync;
691         unsigned long long fixup_cc;
692         int etr_port;
693         struct etr_aib *etr_aib;
694 };
695
696 static void clock_sync_cpu(struct clock_sync_data *sync)
697 {
698         atomic_dec(&sync->cpus);
699         enable_sync_clock();
700         /*
701          * This looks like a busy wait loop but it isn't. etr_sync_cpus
702          * is called on all other cpus while the TOD clocks is stopped.
703          * __udelay will stop the cpu on an enabled wait psw until the
704          * TOD is running again.
705          */
706         while (sync->in_sync == 0) {
707                 __udelay(1);
708                 /*
709                  * A different cpu changes *in_sync. Therefore use
710                  * barrier() to force memory access.
711                  */
712                 barrier();
713         }
714         if (sync->in_sync != 1)
715                 /* Didn't work. Clear per-cpu in sync bit again. */
716                 disable_sync_clock(NULL);
717         /*
718          * This round of TOD syncing is done. Set the clock comparator
719          * to the next tick and let the processor continue.
720          */
721         fixup_clock_comparator(sync->fixup_cc);
722 }
723
724 /*
725  * Sync the TOD clock using the port refered to by aibp. This port
726  * has to be enabled and the other port has to be disabled. The
727  * last eacr update has to be more than 1.6 seconds in the past.
728  */
729 static int etr_sync_clock(void *data)
730 {
731         static int first;
732         unsigned long long clock, old_clock, delay, delta;
733         struct clock_sync_data *etr_sync;
734         struct etr_aib *sync_port, *aib;
735         int port;
736         int rc;
737
738         etr_sync = data;
739
740         if (xchg(&first, 1) == 1) {
741                 /* Slave */
742                 clock_sync_cpu(etr_sync);
743                 return 0;
744         }
745
746         /* Wait until all other cpus entered the sync function. */
747         while (atomic_read(&etr_sync->cpus) != 0)
748                 cpu_relax();
749
750         port = etr_sync->etr_port;
751         aib = etr_sync->etr_aib;
752         sync_port = (port == 0) ? &etr_port0 : &etr_port1;
753         enable_sync_clock();
754
755         /* Set clock to next OTE. */
756         __ctl_set_bit(14, 21);
757         __ctl_set_bit(0, 29);
758         clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
759         old_clock = get_clock();
760         if (set_clock(clock) == 0) {
761                 __udelay(1);    /* Wait for the clock to start. */
762                 __ctl_clear_bit(0, 29);
763                 __ctl_clear_bit(14, 21);
764                 etr_stetr(aib);
765                 /* Adjust Linux timing variables. */
766                 delay = (unsigned long long)
767                         (aib->edf2.etv - sync_port->edf2.etv) << 32;
768                 delta = adjust_time(old_clock, clock, delay);
769                 etr_sync->fixup_cc = delta;
770                 fixup_clock_comparator(delta);
771                 /* Verify that the clock is properly set. */
772                 if (!etr_aib_follows(sync_port, aib, port)) {
773                         /* Didn't work. */
774                         disable_sync_clock(NULL);
775                         etr_sync->in_sync = -EAGAIN;
776                         rc = -EAGAIN;
777                 } else {
778                         etr_sync->in_sync = 1;
779                         rc = 0;
780                 }
781         } else {
782                 /* Could not set the clock ?!? */
783                 __ctl_clear_bit(0, 29);
784                 __ctl_clear_bit(14, 21);
785                 disable_sync_clock(NULL);
786                 etr_sync->in_sync = -EAGAIN;
787                 rc = -EAGAIN;
788         }
789         xchg(&first, 0);
790         return rc;
791 }
792
793 static int etr_sync_clock_stop(struct etr_aib *aib, int port)
794 {
795         struct clock_sync_data etr_sync;
796         struct etr_aib *sync_port;
797         int follows;
798         int rc;
799
800         /* Check if the current aib is adjacent to the sync port aib. */
801         sync_port = (port == 0) ? &etr_port0 : &etr_port1;
802         follows = etr_aib_follows(sync_port, aib, port);
803         memcpy(sync_port, aib, sizeof(*aib));
804         if (!follows)
805                 return -EAGAIN;
806         memset(&etr_sync, 0, sizeof(etr_sync));
807         etr_sync.etr_aib = aib;
808         etr_sync.etr_port = port;
809         get_online_cpus();
810         atomic_set(&etr_sync.cpus, num_online_cpus() - 1);
811         rc = stop_machine(etr_sync_clock, &etr_sync, &cpu_online_map);
812         put_online_cpus();
813         return rc;
814 }
815
816 /*
817  * Handle the immediate effects of the different events.
818  * The port change event is used for online/offline changes.
819  */
820 static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
821 {
822         if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
823                 eacr.es = 0;
824         if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
825                 eacr.es = eacr.sl = 0;
826         if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
827                 etr_port0_uptodate = etr_port1_uptodate = 0;
828
829         if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
830                 if (eacr.e0)
831                         /*
832                          * Port change of an enabled port. We have to
833                          * assume that this can have caused an stepping
834                          * port switch.
835                          */
836                         etr_tolec = get_clock();
837                 eacr.p0 = etr_port0_online;
838                 if (!eacr.p0)
839                         eacr.e0 = 0;
840                 etr_port0_uptodate = 0;
841         }
842         if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
843                 if (eacr.e1)
844                         /*
845                          * Port change of an enabled port. We have to
846                          * assume that this can have caused an stepping
847                          * port switch.
848                          */
849                         etr_tolec = get_clock();
850                 eacr.p1 = etr_port1_online;
851                 if (!eacr.p1)
852                         eacr.e1 = 0;
853                 etr_port1_uptodate = 0;
854         }
855         clear_bit(ETR_EVENT_UPDATE, &etr_events);
856         return eacr;
857 }
858
859 /*
860  * Set up a timer that expires after the etr_tolec + 1.6 seconds if
861  * one of the ports needs an update.
862  */
863 static void etr_set_tolec_timeout(unsigned long long now)
864 {
865         unsigned long micros;
866
867         if ((!etr_eacr.p0 || etr_port0_uptodate) &&
868             (!etr_eacr.p1 || etr_port1_uptodate))
869                 return;
870         micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
871         micros = (micros > 1600000) ? 0 : 1600000 - micros;
872         mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
873 }
874
875 /*
876  * Set up a time that expires after 1/2 second.
877  */
878 static void etr_set_sync_timeout(void)
879 {
880         mod_timer(&etr_timer, jiffies + HZ/2);
881 }
882
883 /*
884  * Update the aib information for one or both ports.
885  */
886 static struct etr_eacr etr_handle_update(struct etr_aib *aib,
887                                          struct etr_eacr eacr)
888 {
889         /* With both ports disabled the aib information is useless. */
890         if (!eacr.e0 && !eacr.e1)
891                 return eacr;
892
893         /* Update port0 or port1 with aib stored in etr_work_fn. */
894         if (aib->esw.q == 0) {
895                 /* Information for port 0 stored. */
896                 if (eacr.p0 && !etr_port0_uptodate) {
897                         etr_port0 = *aib;
898                         if (etr_port0_online)
899                                 etr_port0_uptodate = 1;
900                 }
901         } else {
902                 /* Information for port 1 stored. */
903                 if (eacr.p1 && !etr_port1_uptodate) {
904                         etr_port1 = *aib;
905                         if (etr_port0_online)
906                                 etr_port1_uptodate = 1;
907                 }
908         }
909
910         /*
911          * Do not try to get the alternate port aib if the clock
912          * is not in sync yet.
913          */
914         if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags) && !eacr.es)
915                 return eacr;
916
917         /*
918          * If steai is available we can get the information about
919          * the other port immediately. If only stetr is available the
920          * data-port bit toggle has to be used.
921          */
922         if (etr_steai_available) {
923                 if (eacr.p0 && !etr_port0_uptodate) {
924                         etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
925                         etr_port0_uptodate = 1;
926                 }
927                 if (eacr.p1 && !etr_port1_uptodate) {
928                         etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
929                         etr_port1_uptodate = 1;
930                 }
931         } else {
932                 /*
933                  * One port was updated above, if the other
934                  * port is not uptodate toggle dp bit.
935                  */
936                 if ((eacr.p0 && !etr_port0_uptodate) ||
937                     (eacr.p1 && !etr_port1_uptodate))
938                         eacr.dp ^= 1;
939                 else
940                         eacr.dp = 0;
941         }
942         return eacr;
943 }
944
945 /*
946  * Write new etr control register if it differs from the current one.
947  * Return 1 if etr_tolec has been updated as well.
948  */
949 static void etr_update_eacr(struct etr_eacr eacr)
950 {
951         int dp_changed;
952
953         if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
954                 /* No change, return. */
955                 return;
956         /*
957          * The disable of an active port of the change of the data port
958          * bit can/will cause a change in the data port.
959          */
960         dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
961                 (etr_eacr.dp ^ eacr.dp) != 0;
962         etr_eacr = eacr;
963         etr_setr(&etr_eacr);
964         if (dp_changed)
965                 etr_tolec = get_clock();
966 }
967
968 /*
969  * ETR work. In this function you'll find the main logic. In
970  * particular this is the only function that calls etr_update_eacr(),
971  * it "controls" the etr control register.
972  */
973 static void etr_work_fn(struct work_struct *work)
974 {
975         unsigned long long now;
976         struct etr_eacr eacr;
977         struct etr_aib aib;
978         int sync_port;
979
980         /* prevent multiple execution. */
981         mutex_lock(&etr_work_mutex);
982
983         /* Create working copy of etr_eacr. */
984         eacr = etr_eacr;
985
986         /* Check for the different events and their immediate effects. */
987         eacr = etr_handle_events(eacr);
988
989         /* Check if ETR is supposed to be active. */
990         eacr.ea = eacr.p0 || eacr.p1;
991         if (!eacr.ea) {
992                 /* Both ports offline. Reset everything. */
993                 eacr.dp = eacr.es = eacr.sl = 0;
994                 on_each_cpu(disable_sync_clock, NULL, 1);
995                 del_timer_sync(&etr_timer);
996                 etr_update_eacr(eacr);
997                 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
998                 goto out_unlock;
999         }
1000
1001         /* Store aib to get the current ETR status word. */
1002         BUG_ON(etr_stetr(&aib) != 0);
1003         etr_port0.esw = etr_port1.esw = aib.esw;        /* Copy status word. */
1004         now = get_clock();
1005
1006         /*
1007          * Update the port information if the last stepping port change
1008          * or data port change is older than 1.6 seconds.
1009          */
1010         if (now >= etr_tolec + (1600000 << 12))
1011                 eacr = etr_handle_update(&aib, eacr);
1012
1013         /*
1014          * Select ports to enable. The prefered synchronization mode is PPS.
1015          * If a port can be enabled depends on a number of things:
1016          * 1) The port needs to be online and uptodate. A port is not
1017          *    disabled just because it is not uptodate, but it is only
1018          *    enabled if it is uptodate.
1019          * 2) The port needs to have the same mode (pps / etr).
1020          * 3) The port needs to be usable -> etr_port_valid() == 1
1021          * 4) To enable the second port the clock needs to be in sync.
1022          * 5) If both ports are useable and are ETR ports, the network id
1023          *    has to be the same.
1024          * The eacr.sl bit is used to indicate etr mode vs. pps mode.
1025          */
1026         if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
1027                 eacr.sl = 0;
1028                 eacr.e0 = 1;
1029                 if (!etr_mode_is_pps(etr_eacr))
1030                         eacr.es = 0;
1031                 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
1032                         eacr.e1 = 0;
1033                 // FIXME: uptodate checks ?
1034                 else if (etr_port0_uptodate && etr_port1_uptodate)
1035                         eacr.e1 = 1;
1036                 sync_port = (etr_port0_uptodate &&
1037                              etr_port_valid(&etr_port0, 0)) ? 0 : -1;
1038         } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
1039                 eacr.sl = 0;
1040                 eacr.e0 = 0;
1041                 eacr.e1 = 1;
1042                 if (!etr_mode_is_pps(etr_eacr))
1043                         eacr.es = 0;
1044                 sync_port = (etr_port1_uptodate &&
1045                              etr_port_valid(&etr_port1, 1)) ? 1 : -1;
1046         } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
1047                 eacr.sl = 1;
1048                 eacr.e0 = 1;
1049                 if (!etr_mode_is_etr(etr_eacr))
1050                         eacr.es = 0;
1051                 if (!eacr.es || !eacr.p1 ||
1052                     aib.esw.psc1 != etr_lpsc_operational_alt)
1053                         eacr.e1 = 0;
1054                 else if (etr_port0_uptodate && etr_port1_uptodate &&
1055                          etr_compare_network(&etr_port0, &etr_port1))
1056                         eacr.e1 = 1;
1057                 sync_port = (etr_port0_uptodate &&
1058                              etr_port_valid(&etr_port0, 0)) ? 0 : -1;
1059         } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
1060                 eacr.sl = 1;
1061                 eacr.e0 = 0;
1062                 eacr.e1 = 1;
1063                 if (!etr_mode_is_etr(etr_eacr))
1064                         eacr.es = 0;
1065                 sync_port = (etr_port1_uptodate &&
1066                              etr_port_valid(&etr_port1, 1)) ? 1 : -1;
1067         } else {
1068                 /* Both ports not usable. */
1069                 eacr.es = eacr.sl = 0;
1070                 sync_port = -1;
1071                 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1072         }
1073
1074         if (!test_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1075                 eacr.es = 0;
1076
1077         /*
1078          * If the clock is in sync just update the eacr and return.
1079          * If there is no valid sync port wait for a port update.
1080          */
1081         if (test_bit(CLOCK_SYNC_STP, &clock_sync_flags) ||
1082             eacr.es || sync_port < 0) {
1083                 etr_update_eacr(eacr);
1084                 etr_set_tolec_timeout(now);
1085                 goto out_unlock;
1086         }
1087
1088         /*
1089          * Prepare control register for clock syncing
1090          * (reset data port bit, set sync check control.
1091          */
1092         eacr.dp = 0;
1093         eacr.es = 1;
1094
1095         /*
1096          * Update eacr and try to synchronize the clock. If the update
1097          * of eacr caused a stepping port switch (or if we have to
1098          * assume that a stepping port switch has occured) or the
1099          * clock syncing failed, reset the sync check control bit
1100          * and set up a timer to try again after 0.5 seconds
1101          */
1102         etr_update_eacr(eacr);
1103         set_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1104         if (now < etr_tolec + (1600000 << 12) ||
1105             etr_sync_clock_stop(&aib, sync_port) != 0) {
1106                 /* Sync failed. Try again in 1/2 second. */
1107                 eacr.es = 0;
1108                 etr_update_eacr(eacr);
1109                 clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags);
1110                 etr_set_sync_timeout();
1111         } else
1112                 etr_set_tolec_timeout(now);
1113 out_unlock:
1114         mutex_unlock(&etr_work_mutex);
1115 }
1116
1117 /*
1118  * Sysfs interface functions
1119  */
1120 static struct sysdev_class etr_sysclass = {
1121         .name   = "etr",
1122 };
1123
1124 static struct sys_device etr_port0_dev = {
1125         .id     = 0,
1126         .cls    = &etr_sysclass,
1127 };
1128
1129 static struct sys_device etr_port1_dev = {
1130         .id     = 1,
1131         .cls    = &etr_sysclass,
1132 };
1133
1134 /*
1135  * ETR class attributes
1136  */
1137 static ssize_t etr_stepping_port_show(struct sysdev_class *class, char *buf)
1138 {
1139         return sprintf(buf, "%i\n", etr_port0.esw.p);
1140 }
1141
1142 static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1143
1144 static ssize_t etr_stepping_mode_show(struct sysdev_class *class, char *buf)
1145 {
1146         char *mode_str;
1147
1148         if (etr_mode_is_pps(etr_eacr))
1149                 mode_str = "pps";
1150         else if (etr_mode_is_etr(etr_eacr))
1151                 mode_str = "etr";
1152         else
1153                 mode_str = "local";
1154         return sprintf(buf, "%s\n", mode_str);
1155 }
1156
1157 static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1158
1159 /*
1160  * ETR port attributes
1161  */
1162 static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1163 {
1164         if (dev == &etr_port0_dev)
1165                 return etr_port0_online ? &etr_port0 : NULL;
1166         else
1167                 return etr_port1_online ? &etr_port1 : NULL;
1168 }
1169
1170 static ssize_t etr_online_show(struct sys_device *dev,
1171                                 struct sysdev_attribute *attr,
1172                                 char *buf)
1173 {
1174         unsigned int online;
1175
1176         online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1177         return sprintf(buf, "%i\n", online);
1178 }
1179
1180 static ssize_t etr_online_store(struct sys_device *dev,
1181                                 struct sysdev_attribute *attr,
1182                                 const char *buf, size_t count)
1183 {
1184         unsigned int value;
1185
1186         value = simple_strtoul(buf, NULL, 0);
1187         if (value != 0 && value != 1)
1188                 return -EINVAL;
1189         if (!test_bit(CLOCK_SYNC_HAS_ETR, &clock_sync_flags))
1190                 return -EOPNOTSUPP;
1191         if (dev == &etr_port0_dev) {
1192                 if (etr_port0_online == value)
1193                         return count;   /* Nothing to do. */
1194                 etr_port0_online = value;
1195                 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
1196                 queue_work(time_sync_wq, &etr_work);
1197         } else {
1198                 if (etr_port1_online == value)
1199                         return count;   /* Nothing to do. */
1200                 etr_port1_online = value;
1201                 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
1202                 queue_work(time_sync_wq, &etr_work);
1203         }
1204         return count;
1205 }
1206
1207 static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1208
1209 static ssize_t etr_stepping_control_show(struct sys_device *dev,
1210                                         struct sysdev_attribute *attr,
1211                                         char *buf)
1212 {
1213         return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1214                        etr_eacr.e0 : etr_eacr.e1);
1215 }
1216
1217 static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1218
1219 static ssize_t etr_mode_code_show(struct sys_device *dev,
1220                                 struct sysdev_attribute *attr, char *buf)
1221 {
1222         if (!etr_port0_online && !etr_port1_online)
1223                 /* Status word is not uptodate if both ports are offline. */
1224                 return -ENODATA;
1225         return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1226                        etr_port0.esw.psc0 : etr_port0.esw.psc1);
1227 }
1228
1229 static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1230
1231 static ssize_t etr_untuned_show(struct sys_device *dev,
1232                                 struct sysdev_attribute *attr, char *buf)
1233 {
1234         struct etr_aib *aib = etr_aib_from_dev(dev);
1235
1236         if (!aib || !aib->slsw.v1)
1237                 return -ENODATA;
1238         return sprintf(buf, "%i\n", aib->edf1.u);
1239 }
1240
1241 static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1242
1243 static ssize_t etr_network_id_show(struct sys_device *dev,
1244                                 struct sysdev_attribute *attr, char *buf)
1245 {
1246         struct etr_aib *aib = etr_aib_from_dev(dev);
1247
1248         if (!aib || !aib->slsw.v1)
1249                 return -ENODATA;
1250         return sprintf(buf, "%i\n", aib->edf1.net_id);
1251 }
1252
1253 static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1254
1255 static ssize_t etr_id_show(struct sys_device *dev,
1256                         struct sysdev_attribute *attr, char *buf)
1257 {
1258         struct etr_aib *aib = etr_aib_from_dev(dev);
1259
1260         if (!aib || !aib->slsw.v1)
1261                 return -ENODATA;
1262         return sprintf(buf, "%i\n", aib->edf1.etr_id);
1263 }
1264
1265 static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1266
1267 static ssize_t etr_port_number_show(struct sys_device *dev,
1268                         struct sysdev_attribute *attr, char *buf)
1269 {
1270         struct etr_aib *aib = etr_aib_from_dev(dev);
1271
1272         if (!aib || !aib->slsw.v1)
1273                 return -ENODATA;
1274         return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1275 }
1276
1277 static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1278
1279 static ssize_t etr_coupled_show(struct sys_device *dev,
1280                         struct sysdev_attribute *attr, char *buf)
1281 {
1282         struct etr_aib *aib = etr_aib_from_dev(dev);
1283
1284         if (!aib || !aib->slsw.v3)
1285                 return -ENODATA;
1286         return sprintf(buf, "%i\n", aib->edf3.c);
1287 }
1288
1289 static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1290
1291 static ssize_t etr_local_time_show(struct sys_device *dev,
1292                         struct sysdev_attribute *attr, char *buf)
1293 {
1294         struct etr_aib *aib = etr_aib_from_dev(dev);
1295
1296         if (!aib || !aib->slsw.v3)
1297                 return -ENODATA;
1298         return sprintf(buf, "%i\n", aib->edf3.blto);
1299 }
1300
1301 static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1302
1303 static ssize_t etr_utc_offset_show(struct sys_device *dev,
1304                         struct sysdev_attribute *attr, char *buf)
1305 {
1306         struct etr_aib *aib = etr_aib_from_dev(dev);
1307
1308         if (!aib || !aib->slsw.v3)
1309                 return -ENODATA;
1310         return sprintf(buf, "%i\n", aib->edf3.buo);
1311 }
1312
1313 static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1314
1315 static struct sysdev_attribute *etr_port_attributes[] = {
1316         &attr_online,
1317         &attr_stepping_control,
1318         &attr_state_code,
1319         &attr_untuned,
1320         &attr_network,
1321         &attr_id,
1322         &attr_port,
1323         &attr_coupled,
1324         &attr_local_time,
1325         &attr_utc_offset,
1326         NULL
1327 };
1328
1329 static int __init etr_register_port(struct sys_device *dev)
1330 {
1331         struct sysdev_attribute **attr;
1332         int rc;
1333
1334         rc = sysdev_register(dev);
1335         if (rc)
1336                 goto out;
1337         for (attr = etr_port_attributes; *attr; attr++) {
1338                 rc = sysdev_create_file(dev, *attr);
1339                 if (rc)
1340                         goto out_unreg;
1341         }
1342         return 0;
1343 out_unreg:
1344         for (; attr >= etr_port_attributes; attr--)
1345                 sysdev_remove_file(dev, *attr);
1346         sysdev_unregister(dev);
1347 out:
1348         return rc;
1349 }
1350
1351 static void __init etr_unregister_port(struct sys_device *dev)
1352 {
1353         struct sysdev_attribute **attr;
1354
1355         for (attr = etr_port_attributes; *attr; attr++)
1356                 sysdev_remove_file(dev, *attr);
1357         sysdev_unregister(dev);
1358 }
1359
1360 static int __init etr_init_sysfs(void)
1361 {
1362         int rc;
1363
1364         rc = sysdev_class_register(&etr_sysclass);
1365         if (rc)
1366                 goto out;
1367         rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1368         if (rc)
1369                 goto out_unreg_class;
1370         rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1371         if (rc)
1372                 goto out_remove_stepping_port;
1373         rc = etr_register_port(&etr_port0_dev);
1374         if (rc)
1375                 goto out_remove_stepping_mode;
1376         rc = etr_register_port(&etr_port1_dev);
1377         if (rc)
1378                 goto out_remove_port0;
1379         return 0;
1380
1381 out_remove_port0:
1382         etr_unregister_port(&etr_port0_dev);
1383 out_remove_stepping_mode:
1384         sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1385 out_remove_stepping_port:
1386         sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1387 out_unreg_class:
1388         sysdev_class_unregister(&etr_sysclass);
1389 out:
1390         return rc;
1391 }
1392
1393 device_initcall(etr_init_sysfs);
1394
1395 /*
1396  * Server Time Protocol (STP) code.
1397  */
1398 static int stp_online;
1399 static struct stp_sstpi stp_info;
1400 static void *stp_page;
1401
1402 static void stp_work_fn(struct work_struct *work);
1403 static DEFINE_MUTEX(stp_work_mutex);
1404 static DECLARE_WORK(stp_work, stp_work_fn);
1405
1406 static int __init early_parse_stp(char *p)
1407 {
1408         if (strncmp(p, "off", 3) == 0)
1409                 stp_online = 0;
1410         else if (strncmp(p, "on", 2) == 0)
1411                 stp_online = 1;
1412         return 0;
1413 }
1414 early_param("stp", early_parse_stp);
1415
1416 /*
1417  * Reset STP attachment.
1418  */
1419 static void __init stp_reset(void)
1420 {
1421         int rc;
1422
1423         stp_page = alloc_bootmem_pages(PAGE_SIZE);
1424         rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1425         if (rc == 0)
1426                 set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags);
1427         else if (stp_online) {
1428                 printk(KERN_WARNING "Running on non STP capable machine.\n");
1429                 free_bootmem((unsigned long) stp_page, PAGE_SIZE);
1430                 stp_page = NULL;
1431                 stp_online = 0;
1432         }
1433 }
1434
1435 static int __init stp_init(void)
1436 {
1437         if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1438                 return 0;
1439         time_init_wq();
1440         if (!stp_online)
1441                 return 0;
1442         queue_work(time_sync_wq, &stp_work);
1443         return 0;
1444 }
1445
1446 arch_initcall(stp_init);
1447
1448 /*
1449  * STP timing alert. There are three causes:
1450  * 1) timing status change
1451  * 2) link availability change
1452  * 3) time control parameter change
1453  * In all three cases we are only interested in the clock source state.
1454  * If a STP clock source is now available use it.
1455  */
1456 static void stp_timing_alert(struct stp_irq_parm *intparm)
1457 {
1458         if (intparm->tsc || intparm->lac || intparm->tcpc)
1459                 queue_work(time_sync_wq, &stp_work);
1460 }
1461
1462 /*
1463  * STP sync check machine check. This is called when the timing state
1464  * changes from the synchronized state to the unsynchronized state.
1465  * After a STP sync check the clock is not in sync. The machine check
1466  * is broadcasted to all cpus at the same time.
1467  */
1468 void stp_sync_check(void)
1469 {
1470         if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1471                 return;
1472         disable_sync_clock(NULL);
1473         queue_work(time_sync_wq, &stp_work);
1474 }
1475
1476 /*
1477  * STP island condition machine check. This is called when an attached
1478  * server  attempts to communicate over an STP link and the servers
1479  * have matching CTN ids and have a valid stratum-1 configuration
1480  * but the configurations do not match.
1481  */
1482 void stp_island_check(void)
1483 {
1484         if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags))
1485                 return;
1486         disable_sync_clock(NULL);
1487         queue_work(time_sync_wq, &stp_work);
1488 }
1489
1490
1491 static int stp_sync_clock(void *data)
1492 {
1493         static int first;
1494         unsigned long long old_clock, delta;
1495         struct clock_sync_data *stp_sync;
1496         int rc;
1497
1498         stp_sync = data;
1499
1500         if (xchg(&first, 1) == 1) {
1501                 /* Slave */
1502                 clock_sync_cpu(stp_sync);
1503                 return 0;
1504         }
1505
1506         /* Wait until all other cpus entered the sync function. */
1507         while (atomic_read(&stp_sync->cpus) != 0)
1508                 cpu_relax();
1509
1510         enable_sync_clock();
1511
1512         set_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1513         if (test_and_clear_bit(CLOCK_SYNC_ETR, &clock_sync_flags))
1514                 queue_work(time_sync_wq, &etr_work);
1515
1516         rc = 0;
1517         if (stp_info.todoff[0] || stp_info.todoff[1] ||
1518             stp_info.todoff[2] || stp_info.todoff[3] ||
1519             stp_info.tmd != 2) {
1520                 old_clock = get_clock();
1521                 rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0);
1522                 if (rc == 0) {
1523                         delta = adjust_time(old_clock, get_clock(), 0);
1524                         fixup_clock_comparator(delta);
1525                         rc = chsc_sstpi(stp_page, &stp_info,
1526                                         sizeof(struct stp_sstpi));
1527                         if (rc == 0 && stp_info.tmd != 2)
1528                                 rc = -EAGAIN;
1529                 }
1530         }
1531         if (rc) {
1532                 disable_sync_clock(NULL);
1533                 stp_sync->in_sync = -EAGAIN;
1534                 clear_bit(CLOCK_SYNC_STP, &clock_sync_flags);
1535                 if (etr_port0_online || etr_port1_online)
1536                         queue_work(time_sync_wq, &etr_work);
1537         } else
1538                 stp_sync->in_sync = 1;
1539         xchg(&first, 0);
1540         return 0;
1541 }
1542
1543 /*
1544  * STP work. Check for the STP state and take over the clock
1545  * synchronization if the STP clock source is usable.
1546  */
1547 static void stp_work_fn(struct work_struct *work)
1548 {
1549         struct clock_sync_data stp_sync;
1550         int rc;
1551
1552         /* prevent multiple execution. */
1553         mutex_lock(&stp_work_mutex);
1554
1555         if (!stp_online) {
1556                 chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000);
1557                 goto out_unlock;
1558         }
1559
1560         rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0);
1561         if (rc)
1562                 goto out_unlock;
1563
1564         rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi));
1565         if (rc || stp_info.c == 0)
1566                 goto out_unlock;
1567
1568         memset(&stp_sync, 0, sizeof(stp_sync));
1569         get_online_cpus();
1570         atomic_set(&stp_sync.cpus, num_online_cpus() - 1);
1571         stop_machine(stp_sync_clock, &stp_sync, &cpu_online_map);
1572         put_online_cpus();
1573
1574 out_unlock:
1575         mutex_unlock(&stp_work_mutex);
1576 }
1577
1578 /*
1579  * STP class sysfs interface functions
1580  */
1581 static struct sysdev_class stp_sysclass = {
1582         .name   = "stp",
1583 };
1584
1585 static ssize_t stp_ctn_id_show(struct sysdev_class *class, char *buf)
1586 {
1587         if (!stp_online)
1588                 return -ENODATA;
1589         return sprintf(buf, "%016llx\n",
1590                        *(unsigned long long *) stp_info.ctnid);
1591 }
1592
1593 static SYSDEV_CLASS_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
1594
1595 static ssize_t stp_ctn_type_show(struct sysdev_class *class, char *buf)
1596 {
1597         if (!stp_online)
1598                 return -ENODATA;
1599         return sprintf(buf, "%i\n", stp_info.ctn);
1600 }
1601
1602 static SYSDEV_CLASS_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
1603
1604 static ssize_t stp_dst_offset_show(struct sysdev_class *class, char *buf)
1605 {
1606         if (!stp_online || !(stp_info.vbits & 0x2000))
1607                 return -ENODATA;
1608         return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto);
1609 }
1610
1611 static SYSDEV_CLASS_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
1612
1613 static ssize_t stp_leap_seconds_show(struct sysdev_class *class, char *buf)
1614 {
1615         if (!stp_online || !(stp_info.vbits & 0x8000))
1616                 return -ENODATA;
1617         return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps);
1618 }
1619
1620 static SYSDEV_CLASS_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
1621
1622 static ssize_t stp_stratum_show(struct sysdev_class *class, char *buf)
1623 {
1624         if (!stp_online)
1625                 return -ENODATA;
1626         return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum);
1627 }
1628
1629 static SYSDEV_CLASS_ATTR(stratum, 0400, stp_stratum_show, NULL);
1630
1631 static ssize_t stp_time_offset_show(struct sysdev_class *class, char *buf)
1632 {
1633         if (!stp_online || !(stp_info.vbits & 0x0800))
1634                 return -ENODATA;
1635         return sprintf(buf, "%i\n", (int) stp_info.tto);
1636 }
1637
1638 static SYSDEV_CLASS_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
1639
1640 static ssize_t stp_time_zone_offset_show(struct sysdev_class *class, char *buf)
1641 {
1642         if (!stp_online || !(stp_info.vbits & 0x4000))
1643                 return -ENODATA;
1644         return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo);
1645 }
1646
1647 static SYSDEV_CLASS_ATTR(time_zone_offset, 0400,
1648                          stp_time_zone_offset_show, NULL);
1649
1650 static ssize_t stp_timing_mode_show(struct sysdev_class *class, char *buf)
1651 {
1652         if (!stp_online)
1653                 return -ENODATA;
1654         return sprintf(buf, "%i\n", stp_info.tmd);
1655 }
1656
1657 static SYSDEV_CLASS_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
1658
1659 static ssize_t stp_timing_state_show(struct sysdev_class *class, char *buf)
1660 {
1661         if (!stp_online)
1662                 return -ENODATA;
1663         return sprintf(buf, "%i\n", stp_info.tst);
1664 }
1665
1666 static SYSDEV_CLASS_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
1667
1668 static ssize_t stp_online_show(struct sysdev_class *class, char *buf)
1669 {
1670         return sprintf(buf, "%i\n", stp_online);
1671 }
1672
1673 static ssize_t stp_online_store(struct sysdev_class *class,
1674                                 const char *buf, size_t count)
1675 {
1676         unsigned int value;
1677
1678         value = simple_strtoul(buf, NULL, 0);
1679         if (value != 0 && value != 1)
1680                 return -EINVAL;
1681         if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags))
1682                 return -EOPNOTSUPP;
1683         stp_online = value;
1684         queue_work(time_sync_wq, &stp_work);
1685         return count;
1686 }
1687
1688 /*
1689  * Can't use SYSDEV_CLASS_ATTR because the attribute should be named
1690  * stp/online but attr_online already exists in this file ..
1691  */
1692 static struct sysdev_class_attribute attr_stp_online = {
1693         .attr = { .name = "online", .mode = 0600 },
1694         .show   = stp_online_show,
1695         .store  = stp_online_store,
1696 };
1697
1698 static struct sysdev_class_attribute *stp_attributes[] = {
1699         &attr_ctn_id,
1700         &attr_ctn_type,
1701         &attr_dst_offset,
1702         &attr_leap_seconds,
1703         &attr_stp_online,
1704         &attr_stratum,
1705         &attr_time_offset,
1706         &attr_time_zone_offset,
1707         &attr_timing_mode,
1708         &attr_timing_state,
1709         NULL
1710 };
1711
1712 static int __init stp_init_sysfs(void)
1713 {
1714         struct sysdev_class_attribute **attr;
1715         int rc;
1716
1717         rc = sysdev_class_register(&stp_sysclass);
1718         if (rc)
1719                 goto out;
1720         for (attr = stp_attributes; *attr; attr++) {
1721                 rc = sysdev_class_create_file(&stp_sysclass, *attr);
1722                 if (rc)
1723                         goto out_unreg;
1724         }
1725         return 0;
1726 out_unreg:
1727         for (; attr >= stp_attributes; attr--)
1728                 sysdev_class_remove_file(&stp_sysclass, *attr);
1729         sysdev_class_unregister(&stp_sysclass);
1730 out:
1731         return rc;
1732 }
1733
1734 device_initcall(stp_init_sysfs);