blob: 17c4de9e1b6bb2df5852884d806aa7b591d74db8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/time.c
3 * Time of day based timer functions.
4 *
5 * S390 version
6 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/param.h>
20#include <linux/string.h>
21#include <linux/mm.h>
22#include <linux/interrupt.h>
23#include <linux/time.h>
Ralf Baechle3367b992007-05-08 00:27:52 -070024#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/init.h>
27#include <linux/smp.h>
28#include <linux/types.h>
29#include <linux/profile.h>
30#include <linux/timex.h>
31#include <linux/notifier.h>
Martin Schwidefskydc64bef2006-10-06 16:38:48 +020032#include <linux/clocksource.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020033#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35#include <asm/delay.h>
36#include <asm/s390_ext.h>
37#include <asm/div64.h>
38#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020039#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/timer.h>
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010041#include <asm/etr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* change this if you have some constant time drift */
44#define USECS_PER_JIFFY ((unsigned long) 1000000/HZ)
45#define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
46
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010047/* The value of the TOD clock for 1.1.1970. */
48#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Create a small time difference between the timer interrupts
52 * on the different cpus to avoid lock contention.
53 */
54#define CPU_DEVIATION (smp_processor_id() << 12)
55
56#define TICK_SIZE tick
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static ext_int_info_t ext_int_info_cc;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010059static ext_int_info_t ext_int_etr_cc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static u64 jiffies_timer_cc;
Heiko Carstens5a62b192008-04-17 07:46:25 +020061
62static DEFINE_PER_CPU(struct clock_event_device, comparators);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Scheduler clock - returns current time in nanosec units.
66 */
67unsigned long long sched_clock(void)
68{
Jan Glauberc0015f92008-04-17 07:46:16 +020069 return ((get_clock_xt() - jiffies_timer_cc) * 125) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Jan Glauber32f65f22006-02-01 03:06:33 -080072/*
73 * Monotonic_clock - returns # of nanoseconds passed since time_init()
74 */
75unsigned long long monotonic_clock(void)
76{
77 return sched_clock();
78}
79EXPORT_SYMBOL(monotonic_clock);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081void tod_to_timeval(__u64 todval, struct timespec *xtime)
82{
83 unsigned long long sec;
84
85 sec = todval >> 12;
86 do_div(sec, 1000000);
87 xtime->tv_sec = sec;
88 todval -= (sec * 1000000) << 12;
89 xtime->tv_nsec = ((todval * 1000) >> 12);
90}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#ifdef CONFIG_PROFILING
Heiko Carstens5a489b92006-10-06 16:38:35 +020093#define s390_do_profile() profile_tick(CPU_PROFILING)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#else
Heiko Carstens5a489b92006-10-06 16:38:35 +020095#define s390_do_profile() do { ; } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#endif /* CONFIG_PROFILING */
97
Heiko Carstens5a62b192008-04-17 07:46:25 +020098void clock_comparator_work(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200100 struct clock_event_device *cd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Heiko Carstens5a62b192008-04-17 07:46:25 +0200102 S390_lowcore.clock_comparator = -1ULL;
103 set_clock_comparator(S390_lowcore.clock_comparator);
104 cd = &__get_cpu_var(comparators);
105 cd->event_handler(cd);
Heiko Carstens5a489b92006-10-06 16:38:35 +0200106 s390_do_profile();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
Heiko Carstens5a62b192008-04-17 07:46:25 +0200110 * Fixup the clock comparator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200112static void fixup_clock_comparator(unsigned long long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200114 /* If nobody is waiting there's nothing to fix. */
115 if (S390_lowcore.clock_comparator == -1ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200117 S390_lowcore.clock_comparator += delta;
118 set_clock_comparator(S390_lowcore.clock_comparator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Heiko Carstens5a62b192008-04-17 07:46:25 +0200121static int s390_next_event(unsigned long delta,
122 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200124 S390_lowcore.clock_comparator = get_clock() + delta;
125 set_clock_comparator(S390_lowcore.clock_comparator);
126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Heiko Carstens5a62b192008-04-17 07:46:25 +0200129static void s390_set_mode(enum clock_event_mode mode,
130 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100132}
133
134/*
135 * Set up lowcore and control register of the current cpu to
136 * enable TOD clock and clock comparator interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
138void init_cpu_timer(void)
139{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200140 struct clock_event_device *cd;
141 int cpu;
142
143 S390_lowcore.clock_comparator = -1ULL;
144 set_clock_comparator(S390_lowcore.clock_comparator);
145
146 cpu = smp_processor_id();
147 cd = &per_cpu(comparators, cpu);
148 cd->name = "comparator";
149 cd->features = CLOCK_EVT_FEAT_ONESHOT;
150 cd->mult = 16777;
151 cd->shift = 12;
152 cd->min_delta_ns = 1;
153 cd->max_delta_ns = LONG_MAX;
154 cd->rating = 400;
155 cd->cpumask = cpumask_of_cpu(cpu);
156 cd->set_next_event = s390_next_event;
157 cd->set_mode = s390_set_mode;
158
159 clockevents_register_device(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100161 /* Enable clock comparator timer interrupt. */
162 __ctl_set_bit(0,11);
163
164 /* Always allow ETR external interrupts, even without an ETR. */
165 __ctl_set_bit(0, 4);
166}
167
168static void clock_comparator_interrupt(__u16 code)
169{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100170}
171
172static void etr_reset(void);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100173static void etr_ext_handler(__u16);
174
175/*
176 * Get the TOD clock running.
177 */
178static u64 __init reset_tod_clock(void)
179{
180 u64 time;
181
182 etr_reset();
183 if (store_clock(&time) == 0)
184 return time;
185 /* TOD clock not running. Set the clock to Unix Epoch. */
186 if (set_clock(TOD_UNIX_EPOCH) != 0 || store_clock(&time) != 0)
187 panic("TOD clock not operational.");
188
189 return TOD_UNIX_EPOCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200192static cycle_t read_tod_clock(void)
193{
194 return get_clock();
195}
196
197static struct clocksource clocksource_tod = {
198 .name = "tod",
Christian Borntraegerd2cb0e62007-11-05 11:10:14 +0100199 .rating = 400,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200200 .read = read_tod_clock,
201 .mask = -1ULL,
202 .mult = 1000,
203 .shift = 12,
Thomas Gleixnercc02d802007-02-16 01:27:39 -0800204 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200205};
206
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
209 * Initialize the TOD clock and the CPU timer of
210 * the boot cpu.
211 */
212void __init time_init(void)
213{
Heiko Carstens5a62b192008-04-17 07:46:25 +0200214 u64 init_timer_cc;
215
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100216 init_timer_cc = reset_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 jiffies_timer_cc = init_timer_cc - jiffies_64 * CLK_TICKS_PER_JIFFY;
218
219 /* set xtime */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100220 tod_to_timeval(init_timer_cc - TOD_UNIX_EPOCH, &xtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 set_normalized_timespec(&wall_to_monotonic,
222 -xtime.tv_sec, -xtime.tv_nsec);
223
224 /* request the clock comparator external interrupt */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100225 if (register_early_external_interrupt(0x1004,
226 clock_comparator_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 &ext_int_info_cc) != 0)
228 panic("Couldn't request external interrupt 0x1004");
229
Martin Schwidefskydc64bef2006-10-06 16:38:48 +0200230 if (clocksource_register(&clocksource_tod) != 0)
231 panic("Could not register TOD clock source");
232
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100233 /* request the etr external interrupt */
234 if (register_early_external_interrupt(0x1406, etr_ext_handler,
235 &ext_int_etr_cc) != 0)
236 panic("Couldn't request external interrupt 0x1406");
237
238 /* Enable TOD clock interrupts on the boot cpu. */
239 init_cpu_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#ifdef CONFIG_VIRT_TIMER
242 vtime_init();
243#endif
244}
245
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100246/*
247 * External Time Reference (ETR) code.
248 */
249static int etr_port0_online;
250static int etr_port1_online;
251
252static int __init early_parse_etr(char *p)
253{
254 if (strncmp(p, "off", 3) == 0)
255 etr_port0_online = etr_port1_online = 0;
256 else if (strncmp(p, "port0", 5) == 0)
257 etr_port0_online = 1;
258 else if (strncmp(p, "port1", 5) == 0)
259 etr_port1_online = 1;
260 else if (strncmp(p, "on", 2) == 0)
261 etr_port0_online = etr_port1_online = 1;
262 return 0;
263}
264early_param("etr", early_parse_etr);
265
266enum etr_event {
267 ETR_EVENT_PORT0_CHANGE,
268 ETR_EVENT_PORT1_CHANGE,
269 ETR_EVENT_PORT_ALERT,
270 ETR_EVENT_SYNC_CHECK,
271 ETR_EVENT_SWITCH_LOCAL,
272 ETR_EVENT_UPDATE,
273};
274
275enum etr_flags {
276 ETR_FLAG_ENOSYS,
277 ETR_FLAG_EACCES,
278 ETR_FLAG_STEAI,
279};
280
281/*
282 * Valid bit combinations of the eacr register are (x = don't care):
283 * e0 e1 dp p0 p1 ea es sl
284 * 0 0 x 0 0 0 0 0 initial, disabled state
285 * 0 0 x 0 1 1 0 0 port 1 online
286 * 0 0 x 1 0 1 0 0 port 0 online
287 * 0 0 x 1 1 1 0 0 both ports online
288 * 0 1 x 0 1 1 0 0 port 1 online and usable, ETR or PPS mode
289 * 0 1 x 0 1 1 0 1 port 1 online, usable and ETR mode
290 * 0 1 x 0 1 1 1 0 port 1 online, usable, PPS mode, in-sync
291 * 0 1 x 0 1 1 1 1 port 1 online, usable, ETR mode, in-sync
292 * 0 1 x 1 1 1 0 0 both ports online, port 1 usable
293 * 0 1 x 1 1 1 1 0 both ports online, port 1 usable, PPS mode, in-sync
294 * 0 1 x 1 1 1 1 1 both ports online, port 1 usable, ETR mode, in-sync
295 * 1 0 x 1 0 1 0 0 port 0 online and usable, ETR or PPS mode
296 * 1 0 x 1 0 1 0 1 port 0 online, usable and ETR mode
297 * 1 0 x 1 0 1 1 0 port 0 online, usable, PPS mode, in-sync
298 * 1 0 x 1 0 1 1 1 port 0 online, usable, ETR mode, in-sync
299 * 1 0 x 1 1 1 0 0 both ports online, port 0 usable
300 * 1 0 x 1 1 1 1 0 both ports online, port 0 usable, PPS mode, in-sync
301 * 1 0 x 1 1 1 1 1 both ports online, port 0 usable, ETR mode, in-sync
302 * 1 1 x 1 1 1 1 0 both ports online & usable, ETR, in-sync
303 * 1 1 x 1 1 1 1 1 both ports online & usable, ETR, in-sync
304 */
305static struct etr_eacr etr_eacr;
306static u64 etr_tolec; /* time of last eacr update */
307static unsigned long etr_flags;
308static struct etr_aib etr_port0;
309static int etr_port0_uptodate;
310static struct etr_aib etr_port1;
311static int etr_port1_uptodate;
312static unsigned long etr_events;
313static struct timer_list etr_timer;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100314static DEFINE_PER_CPU(atomic_t, etr_sync_word);
315
316static void etr_timeout(unsigned long dummy);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200317static void etr_work_fn(struct work_struct *work);
318static DECLARE_WORK(etr_work, etr_work_fn);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100319
320/*
321 * The etr get_clock function. It will write the current clock value
322 * to the clock pointer and return 0 if the clock is in sync with the
323 * external time source. If the clock mode is local it will return
324 * -ENOSYS and -EAGAIN if the clock is not in sync with the external
325 * reference. This function is what ETR is all about..
326 */
327int get_sync_clock(unsigned long long *clock)
328{
329 atomic_t *sw_ptr;
330 unsigned int sw0, sw1;
331
332 sw_ptr = &get_cpu_var(etr_sync_word);
333 sw0 = atomic_read(sw_ptr);
334 *clock = get_clock();
335 sw1 = atomic_read(sw_ptr);
336 put_cpu_var(etr_sync_sync);
337 if (sw0 == sw1 && (sw0 & 0x80000000U))
338 /* Success: time is in sync. */
339 return 0;
340 if (test_bit(ETR_FLAG_ENOSYS, &etr_flags))
341 return -ENOSYS;
342 if (test_bit(ETR_FLAG_EACCES, &etr_flags))
343 return -EACCES;
344 return -EAGAIN;
345}
346EXPORT_SYMBOL(get_sync_clock);
347
348/*
349 * Make get_sync_clock return -EAGAIN.
350 */
351static void etr_disable_sync_clock(void *dummy)
352{
353 atomic_t *sw_ptr = &__get_cpu_var(etr_sync_word);
354 /*
355 * Clear the in-sync bit 2^31. All get_sync_clock calls will
356 * fail until the sync bit is turned back on. In addition
357 * increase the "sequence" counter to avoid the race of an
358 * etr event and the complete recovery against get_sync_clock.
359 */
360 atomic_clear_mask(0x80000000, sw_ptr);
361 atomic_inc(sw_ptr);
362}
363
364/*
365 * Make get_sync_clock return 0 again.
366 * Needs to be called from a context disabled for preemption.
367 */
368static void etr_enable_sync_clock(void)
369{
370 atomic_t *sw_ptr = &__get_cpu_var(etr_sync_word);
371 atomic_set_mask(0x80000000, sw_ptr);
372}
373
374/*
375 * Reset ETR attachment.
376 */
377static void etr_reset(void)
378{
379 etr_eacr = (struct etr_eacr) {
380 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0,
381 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0,
382 .es = 0, .sl = 0 };
383 if (etr_setr(&etr_eacr) == 0)
384 etr_tolec = get_clock();
385 else {
386 set_bit(ETR_FLAG_ENOSYS, &etr_flags);
387 if (etr_port0_online || etr_port1_online) {
388 printk(KERN_WARNING "Running on non ETR capable "
389 "machine, only local mode available.\n");
390 etr_port0_online = etr_port1_online = 0;
391 }
392 }
393}
394
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200395static int __init etr_init(void)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100396{
397 struct etr_aib aib;
398
399 if (test_bit(ETR_FLAG_ENOSYS, &etr_flags))
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200400 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100401 /* Check if this machine has the steai instruction. */
402 if (etr_steai(&aib, ETR_STEAI_STEPPING_PORT) == 0)
403 set_bit(ETR_FLAG_STEAI, &etr_flags);
404 setup_timer(&etr_timer, etr_timeout, 0UL);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100405 if (!etr_port0_online && !etr_port1_online)
406 set_bit(ETR_FLAG_EACCES, &etr_flags);
407 if (etr_port0_online) {
408 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200409 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100410 }
411 if (etr_port1_online) {
412 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200413 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100414 }
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200415 return 0;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100416}
417
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200418arch_initcall(etr_init);
419
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100420/*
421 * Two sorts of ETR machine checks. The architecture reads:
422 * "When a machine-check niterruption occurs and if a switch-to-local or
423 * ETR-sync-check interrupt request is pending but disabled, this pending
424 * disabled interruption request is indicated and is cleared".
425 * Which means that we can get etr_switch_to_local events from the machine
426 * check handler although the interruption condition is disabled. Lovely..
427 */
428
429/*
430 * Switch to local machine check. This is called when the last usable
431 * ETR port goes inactive. After switch to local the clock is not in sync.
432 */
433void etr_switch_to_local(void)
434{
435 if (!etr_eacr.sl)
436 return;
437 etr_disable_sync_clock(NULL);
438 set_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200439 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100440}
441
442/*
443 * ETR sync check machine check. This is called when the ETR OTE and the
444 * local clock OTE are farther apart than the ETR sync check tolerance.
445 * After a ETR sync check the clock is not in sync. The machine check
446 * is broadcasted to all cpus at the same time.
447 */
448void etr_sync_check(void)
449{
450 if (!etr_eacr.es)
451 return;
452 etr_disable_sync_clock(NULL);
453 set_bit(ETR_EVENT_SYNC_CHECK, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200454 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100455}
456
457/*
458 * ETR external interrupt. There are two causes:
459 * 1) port state change, check the usability of the port
460 * 2) port alert, one of the ETR-data-validity bits (v1-v2 bits of the
461 * sldr-status word) or ETR-data word 1 (edf1) or ETR-data word 3 (edf3)
462 * or ETR-data word 4 (edf4) has changed.
463 */
464static void etr_ext_handler(__u16 code)
465{
466 struct etr_interruption_parameter *intparm =
467 (struct etr_interruption_parameter *) &S390_lowcore.ext_params;
468
469 if (intparm->pc0)
470 /* ETR port 0 state change. */
471 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
472 if (intparm->pc1)
473 /* ETR port 1 state change. */
474 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
475 if (intparm->eai)
476 /*
477 * ETR port alert on either port 0, 1 or both.
478 * Both ports are not up-to-date now.
479 */
480 set_bit(ETR_EVENT_PORT_ALERT, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200481 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100482}
483
484static void etr_timeout(unsigned long dummy)
485{
486 set_bit(ETR_EVENT_UPDATE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200487 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100488}
489
490/*
491 * Check if the etr mode is pss.
492 */
493static inline int etr_mode_is_pps(struct etr_eacr eacr)
494{
495 return eacr.es && !eacr.sl;
496}
497
498/*
499 * Check if the etr mode is etr.
500 */
501static inline int etr_mode_is_etr(struct etr_eacr eacr)
502{
503 return eacr.es && eacr.sl;
504}
505
506/*
507 * Check if the port can be used for TOD synchronization.
508 * For PPS mode the port has to receive OTEs. For ETR mode
509 * the port has to receive OTEs, the ETR stepping bit has to
510 * be zero and the validity bits for data frame 1, 2, and 3
511 * have to be 1.
512 */
513static int etr_port_valid(struct etr_aib *aib, int port)
514{
515 unsigned int psc;
516
517 /* Check that this port is receiving OTEs. */
518 if (aib->tsp == 0)
519 return 0;
520
521 psc = port ? aib->esw.psc1 : aib->esw.psc0;
522 if (psc == etr_lpsc_pps_mode)
523 return 1;
524 if (psc == etr_lpsc_operational_step)
525 return !aib->esw.y && aib->slsw.v1 &&
526 aib->slsw.v2 && aib->slsw.v3;
527 return 0;
528}
529
530/*
531 * Check if two ports are on the same network.
532 */
533static int etr_compare_network(struct etr_aib *aib1, struct etr_aib *aib2)
534{
535 // FIXME: any other fields we have to compare?
536 return aib1->edf1.net_id == aib2->edf1.net_id;
537}
538
539/*
540 * Wrapper for etr_stei that converts physical port states
541 * to logical port states to be consistent with the output
542 * of stetr (see etr_psc vs. etr_lpsc).
543 */
544static void etr_steai_cv(struct etr_aib *aib, unsigned int func)
545{
546 BUG_ON(etr_steai(aib, func) != 0);
547 /* Convert port state to logical port state. */
548 if (aib->esw.psc0 == 1)
549 aib->esw.psc0 = 2;
550 else if (aib->esw.psc0 == 0 && aib->esw.p == 0)
551 aib->esw.psc0 = 1;
552 if (aib->esw.psc1 == 1)
553 aib->esw.psc1 = 2;
554 else if (aib->esw.psc1 == 0 && aib->esw.p == 1)
555 aib->esw.psc1 = 1;
556}
557
558/*
559 * Check if the aib a2 is still connected to the same attachment as
560 * aib a1, the etv values differ by one and a2 is valid.
561 */
562static int etr_aib_follows(struct etr_aib *a1, struct etr_aib *a2, int p)
563{
564 int state_a1, state_a2;
565
566 /* Paranoia check: e0/e1 should better be the same. */
567 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 ||
568 a1->esw.eacr.e1 != a2->esw.eacr.e1)
569 return 0;
570
571 /* Still connected to the same etr ? */
572 state_a1 = p ? a1->esw.psc1 : a1->esw.psc0;
573 state_a2 = p ? a2->esw.psc1 : a2->esw.psc0;
574 if (state_a1 == etr_lpsc_operational_step) {
575 if (state_a2 != etr_lpsc_operational_step ||
576 a1->edf1.net_id != a2->edf1.net_id ||
577 a1->edf1.etr_id != a2->edf1.etr_id ||
578 a1->edf1.etr_pn != a2->edf1.etr_pn)
579 return 0;
580 } else if (state_a2 != etr_lpsc_pps_mode)
581 return 0;
582
583 /* The ETV value of a2 needs to be ETV of a1 + 1. */
584 if (a1->edf2.etv + 1 != a2->edf2.etv)
585 return 0;
586
587 if (!etr_port_valid(a2, p))
588 return 0;
589
590 return 1;
591}
592
593/*
Heiko Carstens5a62b192008-04-17 07:46:25 +0200594 * The time is "clock". old is what we think the time is.
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100595 * Adjust the value by a multiple of jiffies and add the delta to ntp.
596 * "delay" is an approximation how long the synchronization took. If
597 * the time correction is positive, then "delay" is subtracted from
598 * the time difference and only the remaining part is passed to ntp.
599 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200600static unsigned long long etr_adjust_time(unsigned long long old,
601 unsigned long long clock,
602 unsigned long long delay)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100603{
604 unsigned long long delta, ticks;
605 struct timex adjust;
606
Heiko Carstens5a62b192008-04-17 07:46:25 +0200607 if (clock > old) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100608 /* It is later than we thought. */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200609 delta = ticks = clock - old;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100610 delta = ticks = (delta < delay) ? 0 : delta - delay;
611 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100612 adjust.offset = ticks * (1000000 / HZ);
613 } else {
614 /* It is earlier than we thought. */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200615 delta = ticks = old - clock;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100616 delta -= do_div(ticks, CLK_TICKS_PER_JIFFY);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200617 delta = -delta;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100618 adjust.offset = -ticks * (1000000 / HZ);
619 }
Heiko Carstens5a62b192008-04-17 07:46:25 +0200620 jiffies_timer_cc += delta;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100621 if (adjust.offset != 0) {
622 printk(KERN_NOTICE "etr: time adjusted by %li micro-seconds\n",
623 adjust.offset);
624 adjust.modes = ADJ_OFFSET_SINGLESHOT;
625 do_adjtimex(&adjust);
626 }
Heiko Carstens5a62b192008-04-17 07:46:25 +0200627 return delta;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100628}
629
Heiko Carstens5a62b192008-04-17 07:46:25 +0200630static struct {
631 int in_sync;
632 unsigned long long fixup_cc;
633} etr_sync;
634
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100635static void etr_sync_cpu_start(void *dummy)
636{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100637 etr_enable_sync_clock();
638 /*
639 * This looks like a busy wait loop but it isn't. etr_sync_cpus
640 * is called on all other cpus while the TOD clocks is stopped.
641 * __udelay will stop the cpu on an enabled wait psw until the
642 * TOD is running again.
643 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200644 while (etr_sync.in_sync == 0) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100645 __udelay(1);
Heiko Carstens6c732de2007-02-21 10:55:15 +0100646 /*
647 * A different cpu changes *in_sync. Therefore use
648 * barrier() to force memory access.
649 */
650 barrier();
651 }
Heiko Carstens5a62b192008-04-17 07:46:25 +0200652 if (etr_sync.in_sync != 1)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100653 /* Didn't work. Clear per-cpu in sync bit again. */
654 etr_disable_sync_clock(NULL);
655 /*
656 * This round of TOD syncing is done. Set the clock comparator
657 * to the next tick and let the processor continue.
658 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200659 fixup_clock_comparator(etr_sync.fixup_cc);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100660}
661
662static void etr_sync_cpu_end(void *dummy)
663{
664}
665
666/*
667 * Sync the TOD clock using the port refered to by aibp. This port
668 * has to be enabled and the other port has to be disabled. The
669 * last eacr update has to be more than 1.6 seconds in the past.
670 */
671static int etr_sync_clock(struct etr_aib *aib, int port)
672{
673 struct etr_aib *sync_port;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200674 unsigned long long clock, old_clock, delay, delta;
675 int follows;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100676 int rc;
677
678 /* Check if the current aib is adjacent to the sync port aib. */
679 sync_port = (port == 0) ? &etr_port0 : &etr_port1;
680 follows = etr_aib_follows(sync_port, aib, port);
681 memcpy(sync_port, aib, sizeof(*aib));
682 if (!follows)
683 return -EAGAIN;
684
685 /*
686 * Catch all other cpus and make them wait until we have
687 * successfully synced the clock. smp_call_function will
688 * return after all other cpus are in etr_sync_cpu_start.
689 */
Heiko Carstens5a62b192008-04-17 07:46:25 +0200690 memset(&etr_sync, 0, sizeof(etr_sync));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100691 preempt_disable();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200692 smp_call_function(etr_sync_cpu_start, NULL, 0, 0);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100693 local_irq_disable();
694 etr_enable_sync_clock();
695
696 /* Set clock to next OTE. */
697 __ctl_set_bit(14, 21);
698 __ctl_set_bit(0, 29);
699 clock = ((unsigned long long) (aib->edf2.etv + 1)) << 32;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200700 old_clock = get_clock();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100701 if (set_clock(clock) == 0) {
702 __udelay(1); /* Wait for the clock to start. */
703 __ctl_clear_bit(0, 29);
704 __ctl_clear_bit(14, 21);
705 etr_stetr(aib);
706 /* Adjust Linux timing variables. */
707 delay = (unsigned long long)
708 (aib->edf2.etv - sync_port->edf2.etv) << 32;
Heiko Carstens5a62b192008-04-17 07:46:25 +0200709 delta = etr_adjust_time(old_clock, clock, delay);
710 etr_sync.fixup_cc = delta;
711 fixup_clock_comparator(delta);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100712 /* Verify that the clock is properly set. */
713 if (!etr_aib_follows(sync_port, aib, port)) {
714 /* Didn't work. */
715 etr_disable_sync_clock(NULL);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200716 etr_sync.in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100717 rc = -EAGAIN;
718 } else {
Heiko Carstens5a62b192008-04-17 07:46:25 +0200719 etr_sync.in_sync = 1;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100720 rc = 0;
721 }
722 } else {
723 /* Could not set the clock ?!? */
724 __ctl_clear_bit(0, 29);
725 __ctl_clear_bit(14, 21);
726 etr_disable_sync_clock(NULL);
Heiko Carstens5a62b192008-04-17 07:46:25 +0200727 etr_sync.in_sync = -EAGAIN;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100728 rc = -EAGAIN;
729 }
730 local_irq_enable();
731 smp_call_function(etr_sync_cpu_end,NULL,0,0);
732 preempt_enable();
733 return rc;
734}
735
736/*
737 * Handle the immediate effects of the different events.
738 * The port change event is used for online/offline changes.
739 */
740static struct etr_eacr etr_handle_events(struct etr_eacr eacr)
741{
742 if (test_and_clear_bit(ETR_EVENT_SYNC_CHECK, &etr_events))
743 eacr.es = 0;
744 if (test_and_clear_bit(ETR_EVENT_SWITCH_LOCAL, &etr_events))
745 eacr.es = eacr.sl = 0;
746 if (test_and_clear_bit(ETR_EVENT_PORT_ALERT, &etr_events))
747 etr_port0_uptodate = etr_port1_uptodate = 0;
748
749 if (test_and_clear_bit(ETR_EVENT_PORT0_CHANGE, &etr_events)) {
750 if (eacr.e0)
751 /*
752 * Port change of an enabled port. We have to
753 * assume that this can have caused an stepping
754 * port switch.
755 */
756 etr_tolec = get_clock();
757 eacr.p0 = etr_port0_online;
758 if (!eacr.p0)
759 eacr.e0 = 0;
760 etr_port0_uptodate = 0;
761 }
762 if (test_and_clear_bit(ETR_EVENT_PORT1_CHANGE, &etr_events)) {
763 if (eacr.e1)
764 /*
765 * Port change of an enabled port. We have to
766 * assume that this can have caused an stepping
767 * port switch.
768 */
769 etr_tolec = get_clock();
770 eacr.p1 = etr_port1_online;
771 if (!eacr.p1)
772 eacr.e1 = 0;
773 etr_port1_uptodate = 0;
774 }
775 clear_bit(ETR_EVENT_UPDATE, &etr_events);
776 return eacr;
777}
778
779/*
780 * Set up a timer that expires after the etr_tolec + 1.6 seconds if
781 * one of the ports needs an update.
782 */
783static void etr_set_tolec_timeout(unsigned long long now)
784{
785 unsigned long micros;
786
787 if ((!etr_eacr.p0 || etr_port0_uptodate) &&
788 (!etr_eacr.p1 || etr_port1_uptodate))
789 return;
790 micros = (now > etr_tolec) ? ((now - etr_tolec) >> 12) : 0;
791 micros = (micros > 1600000) ? 0 : 1600000 - micros;
792 mod_timer(&etr_timer, jiffies + (micros * HZ) / 1000000 + 1);
793}
794
795/*
796 * Set up a time that expires after 1/2 second.
797 */
798static void etr_set_sync_timeout(void)
799{
800 mod_timer(&etr_timer, jiffies + HZ/2);
801}
802
803/*
804 * Update the aib information for one or both ports.
805 */
806static struct etr_eacr etr_handle_update(struct etr_aib *aib,
807 struct etr_eacr eacr)
808{
809 /* With both ports disabled the aib information is useless. */
810 if (!eacr.e0 && !eacr.e1)
811 return eacr;
812
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200813 /* Update port0 or port1 with aib stored in etr_work_fn. */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100814 if (aib->esw.q == 0) {
815 /* Information for port 0 stored. */
816 if (eacr.p0 && !etr_port0_uptodate) {
817 etr_port0 = *aib;
818 if (etr_port0_online)
819 etr_port0_uptodate = 1;
820 }
821 } else {
822 /* Information for port 1 stored. */
823 if (eacr.p1 && !etr_port1_uptodate) {
824 etr_port1 = *aib;
825 if (etr_port0_online)
826 etr_port1_uptodate = 1;
827 }
828 }
829
830 /*
831 * Do not try to get the alternate port aib if the clock
832 * is not in sync yet.
833 */
834 if (!eacr.es)
835 return eacr;
836
837 /*
838 * If steai is available we can get the information about
839 * the other port immediately. If only stetr is available the
840 * data-port bit toggle has to be used.
841 */
842 if (test_bit(ETR_FLAG_STEAI, &etr_flags)) {
843 if (eacr.p0 && !etr_port0_uptodate) {
844 etr_steai_cv(&etr_port0, ETR_STEAI_PORT_0);
845 etr_port0_uptodate = 1;
846 }
847 if (eacr.p1 && !etr_port1_uptodate) {
848 etr_steai_cv(&etr_port1, ETR_STEAI_PORT_1);
849 etr_port1_uptodate = 1;
850 }
851 } else {
852 /*
853 * One port was updated above, if the other
854 * port is not uptodate toggle dp bit.
855 */
856 if ((eacr.p0 && !etr_port0_uptodate) ||
857 (eacr.p1 && !etr_port1_uptodate))
858 eacr.dp ^= 1;
859 else
860 eacr.dp = 0;
861 }
862 return eacr;
863}
864
865/*
866 * Write new etr control register if it differs from the current one.
867 * Return 1 if etr_tolec has been updated as well.
868 */
869static void etr_update_eacr(struct etr_eacr eacr)
870{
871 int dp_changed;
872
873 if (memcmp(&etr_eacr, &eacr, sizeof(eacr)) == 0)
874 /* No change, return. */
875 return;
876 /*
877 * The disable of an active port of the change of the data port
878 * bit can/will cause a change in the data port.
879 */
880 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 ||
881 (etr_eacr.dp ^ eacr.dp) != 0;
882 etr_eacr = eacr;
883 etr_setr(&etr_eacr);
884 if (dp_changed)
885 etr_tolec = get_clock();
886}
887
888/*
889 * ETR tasklet. In this function you'll find the main logic. In
890 * particular this is the only function that calls etr_update_eacr(),
891 * it "controls" the etr control register.
892 */
Martin Schwidefskyecdcc022007-04-27 16:01:58 +0200893static void etr_work_fn(struct work_struct *work)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100894{
895 unsigned long long now;
896 struct etr_eacr eacr;
897 struct etr_aib aib;
898 int sync_port;
899
900 /* Create working copy of etr_eacr. */
901 eacr = etr_eacr;
902
903 /* Check for the different events and their immediate effects. */
904 eacr = etr_handle_events(eacr);
905
906 /* Check if ETR is supposed to be active. */
907 eacr.ea = eacr.p0 || eacr.p1;
908 if (!eacr.ea) {
909 /* Both ports offline. Reset everything. */
910 eacr.dp = eacr.es = eacr.sl = 0;
911 on_each_cpu(etr_disable_sync_clock, NULL, 0, 1);
912 del_timer_sync(&etr_timer);
913 etr_update_eacr(eacr);
914 set_bit(ETR_FLAG_EACCES, &etr_flags);
915 return;
916 }
917
918 /* Store aib to get the current ETR status word. */
919 BUG_ON(etr_stetr(&aib) != 0);
920 etr_port0.esw = etr_port1.esw = aib.esw; /* Copy status word. */
921 now = get_clock();
922
923 /*
924 * Update the port information if the last stepping port change
925 * or data port change is older than 1.6 seconds.
926 */
927 if (now >= etr_tolec + (1600000 << 12))
928 eacr = etr_handle_update(&aib, eacr);
929
930 /*
931 * Select ports to enable. The prefered synchronization mode is PPS.
932 * If a port can be enabled depends on a number of things:
933 * 1) The port needs to be online and uptodate. A port is not
934 * disabled just because it is not uptodate, but it is only
935 * enabled if it is uptodate.
936 * 2) The port needs to have the same mode (pps / etr).
937 * 3) The port needs to be usable -> etr_port_valid() == 1
938 * 4) To enable the second port the clock needs to be in sync.
939 * 5) If both ports are useable and are ETR ports, the network id
940 * has to be the same.
941 * The eacr.sl bit is used to indicate etr mode vs. pps mode.
942 */
943 if (eacr.p0 && aib.esw.psc0 == etr_lpsc_pps_mode) {
944 eacr.sl = 0;
945 eacr.e0 = 1;
946 if (!etr_mode_is_pps(etr_eacr))
947 eacr.es = 0;
948 if (!eacr.es || !eacr.p1 || aib.esw.psc1 != etr_lpsc_pps_mode)
949 eacr.e1 = 0;
950 // FIXME: uptodate checks ?
951 else if (etr_port0_uptodate && etr_port1_uptodate)
952 eacr.e1 = 1;
953 sync_port = (etr_port0_uptodate &&
954 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
955 clear_bit(ETR_FLAG_EACCES, &etr_flags);
956 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_pps_mode) {
957 eacr.sl = 0;
958 eacr.e0 = 0;
959 eacr.e1 = 1;
960 if (!etr_mode_is_pps(etr_eacr))
961 eacr.es = 0;
962 sync_port = (etr_port1_uptodate &&
963 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
964 clear_bit(ETR_FLAG_EACCES, &etr_flags);
965 } else if (eacr.p0 && aib.esw.psc0 == etr_lpsc_operational_step) {
966 eacr.sl = 1;
967 eacr.e0 = 1;
968 if (!etr_mode_is_etr(etr_eacr))
969 eacr.es = 0;
970 if (!eacr.es || !eacr.p1 ||
971 aib.esw.psc1 != etr_lpsc_operational_alt)
972 eacr.e1 = 0;
973 else if (etr_port0_uptodate && etr_port1_uptodate &&
974 etr_compare_network(&etr_port0, &etr_port1))
975 eacr.e1 = 1;
976 sync_port = (etr_port0_uptodate &&
977 etr_port_valid(&etr_port0, 0)) ? 0 : -1;
978 clear_bit(ETR_FLAG_EACCES, &etr_flags);
979 } else if (eacr.p1 && aib.esw.psc1 == etr_lpsc_operational_step) {
980 eacr.sl = 1;
981 eacr.e0 = 0;
982 eacr.e1 = 1;
983 if (!etr_mode_is_etr(etr_eacr))
984 eacr.es = 0;
985 sync_port = (etr_port1_uptodate &&
986 etr_port_valid(&etr_port1, 1)) ? 1 : -1;
987 clear_bit(ETR_FLAG_EACCES, &etr_flags);
988 } else {
989 /* Both ports not usable. */
990 eacr.es = eacr.sl = 0;
991 sync_port = -1;
992 set_bit(ETR_FLAG_EACCES, &etr_flags);
993 }
994
995 /*
996 * If the clock is in sync just update the eacr and return.
997 * If there is no valid sync port wait for a port update.
998 */
999 if (eacr.es || sync_port < 0) {
1000 etr_update_eacr(eacr);
1001 etr_set_tolec_timeout(now);
1002 return;
1003 }
1004
1005 /*
1006 * Prepare control register for clock syncing
1007 * (reset data port bit, set sync check control.
1008 */
1009 eacr.dp = 0;
1010 eacr.es = 1;
1011
1012 /*
1013 * Update eacr and try to synchronize the clock. If the update
1014 * of eacr caused a stepping port switch (or if we have to
1015 * assume that a stepping port switch has occured) or the
1016 * clock syncing failed, reset the sync check control bit
1017 * and set up a timer to try again after 0.5 seconds
1018 */
1019 etr_update_eacr(eacr);
1020 if (now < etr_tolec + (1600000 << 12) ||
1021 etr_sync_clock(&aib, sync_port) != 0) {
1022 /* Sync failed. Try again in 1/2 second. */
1023 eacr.es = 0;
1024 etr_update_eacr(eacr);
1025 etr_set_sync_timeout();
1026 } else
1027 etr_set_tolec_timeout(now);
1028}
1029
1030/*
1031 * Sysfs interface functions
1032 */
1033static struct sysdev_class etr_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001034 .name = "etr",
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001035};
1036
1037static struct sys_device etr_port0_dev = {
1038 .id = 0,
1039 .cls = &etr_sysclass,
1040};
1041
1042static struct sys_device etr_port1_dev = {
1043 .id = 1,
1044 .cls = &etr_sysclass,
1045};
1046
1047/*
1048 * ETR class attributes
1049 */
1050static ssize_t etr_stepping_port_show(struct sysdev_class *class, char *buf)
1051{
1052 return sprintf(buf, "%i\n", etr_port0.esw.p);
1053}
1054
1055static SYSDEV_CLASS_ATTR(stepping_port, 0400, etr_stepping_port_show, NULL);
1056
1057static ssize_t etr_stepping_mode_show(struct sysdev_class *class, char *buf)
1058{
1059 char *mode_str;
1060
1061 if (etr_mode_is_pps(etr_eacr))
1062 mode_str = "pps";
1063 else if (etr_mode_is_etr(etr_eacr))
1064 mode_str = "etr";
1065 else
1066 mode_str = "local";
1067 return sprintf(buf, "%s\n", mode_str);
1068}
1069
1070static SYSDEV_CLASS_ATTR(stepping_mode, 0400, etr_stepping_mode_show, NULL);
1071
1072/*
1073 * ETR port attributes
1074 */
1075static inline struct etr_aib *etr_aib_from_dev(struct sys_device *dev)
1076{
1077 if (dev == &etr_port0_dev)
1078 return etr_port0_online ? &etr_port0 : NULL;
1079 else
1080 return etr_port1_online ? &etr_port1 : NULL;
1081}
1082
1083static ssize_t etr_online_show(struct sys_device *dev, char *buf)
1084{
1085 unsigned int online;
1086
1087 online = (dev == &etr_port0_dev) ? etr_port0_online : etr_port1_online;
1088 return sprintf(buf, "%i\n", online);
1089}
1090
1091static ssize_t etr_online_store(struct sys_device *dev,
1092 const char *buf, size_t count)
1093{
1094 unsigned int value;
1095
1096 value = simple_strtoul(buf, NULL, 0);
1097 if (value != 0 && value != 1)
1098 return -EINVAL;
1099 if (test_bit(ETR_FLAG_ENOSYS, &etr_flags))
1100 return -ENOSYS;
1101 if (dev == &etr_port0_dev) {
1102 if (etr_port0_online == value)
1103 return count; /* Nothing to do. */
1104 etr_port0_online = value;
1105 set_bit(ETR_EVENT_PORT0_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +02001106 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001107 } else {
1108 if (etr_port1_online == value)
1109 return count; /* Nothing to do. */
1110 etr_port1_online = value;
1111 set_bit(ETR_EVENT_PORT1_CHANGE, &etr_events);
Martin Schwidefskyecdcc022007-04-27 16:01:58 +02001112 schedule_work(&etr_work);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001113 }
1114 return count;
1115}
1116
1117static SYSDEV_ATTR(online, 0600, etr_online_show, etr_online_store);
1118
1119static ssize_t etr_stepping_control_show(struct sys_device *dev, char *buf)
1120{
1121 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1122 etr_eacr.e0 : etr_eacr.e1);
1123}
1124
1125static SYSDEV_ATTR(stepping_control, 0400, etr_stepping_control_show, NULL);
1126
1127static ssize_t etr_mode_code_show(struct sys_device *dev, char *buf)
1128{
1129 if (!etr_port0_online && !etr_port1_online)
1130 /* Status word is not uptodate if both ports are offline. */
1131 return -ENODATA;
1132 return sprintf(buf, "%i\n", (dev == &etr_port0_dev) ?
1133 etr_port0.esw.psc0 : etr_port0.esw.psc1);
1134}
1135
1136static SYSDEV_ATTR(state_code, 0400, etr_mode_code_show, NULL);
1137
1138static ssize_t etr_untuned_show(struct sys_device *dev, char *buf)
1139{
1140 struct etr_aib *aib = etr_aib_from_dev(dev);
1141
1142 if (!aib || !aib->slsw.v1)
1143 return -ENODATA;
1144 return sprintf(buf, "%i\n", aib->edf1.u);
1145}
1146
1147static SYSDEV_ATTR(untuned, 0400, etr_untuned_show, NULL);
1148
1149static ssize_t etr_network_id_show(struct sys_device *dev, char *buf)
1150{
1151 struct etr_aib *aib = etr_aib_from_dev(dev);
1152
1153 if (!aib || !aib->slsw.v1)
1154 return -ENODATA;
1155 return sprintf(buf, "%i\n", aib->edf1.net_id);
1156}
1157
1158static SYSDEV_ATTR(network, 0400, etr_network_id_show, NULL);
1159
1160static ssize_t etr_id_show(struct sys_device *dev, char *buf)
1161{
1162 struct etr_aib *aib = etr_aib_from_dev(dev);
1163
1164 if (!aib || !aib->slsw.v1)
1165 return -ENODATA;
1166 return sprintf(buf, "%i\n", aib->edf1.etr_id);
1167}
1168
1169static SYSDEV_ATTR(id, 0400, etr_id_show, NULL);
1170
1171static ssize_t etr_port_number_show(struct sys_device *dev, char *buf)
1172{
1173 struct etr_aib *aib = etr_aib_from_dev(dev);
1174
1175 if (!aib || !aib->slsw.v1)
1176 return -ENODATA;
1177 return sprintf(buf, "%i\n", aib->edf1.etr_pn);
1178}
1179
1180static SYSDEV_ATTR(port, 0400, etr_port_number_show, NULL);
1181
1182static ssize_t etr_coupled_show(struct sys_device *dev, char *buf)
1183{
1184 struct etr_aib *aib = etr_aib_from_dev(dev);
1185
1186 if (!aib || !aib->slsw.v3)
1187 return -ENODATA;
1188 return sprintf(buf, "%i\n", aib->edf3.c);
1189}
1190
1191static SYSDEV_ATTR(coupled, 0400, etr_coupled_show, NULL);
1192
1193static ssize_t etr_local_time_show(struct sys_device *dev, char *buf)
1194{
1195 struct etr_aib *aib = etr_aib_from_dev(dev);
1196
1197 if (!aib || !aib->slsw.v3)
1198 return -ENODATA;
1199 return sprintf(buf, "%i\n", aib->edf3.blto);
1200}
1201
1202static SYSDEV_ATTR(local_time, 0400, etr_local_time_show, NULL);
1203
1204static ssize_t etr_utc_offset_show(struct sys_device *dev, char *buf)
1205{
1206 struct etr_aib *aib = etr_aib_from_dev(dev);
1207
1208 if (!aib || !aib->slsw.v3)
1209 return -ENODATA;
1210 return sprintf(buf, "%i\n", aib->edf3.buo);
1211}
1212
1213static SYSDEV_ATTR(utc_offset, 0400, etr_utc_offset_show, NULL);
1214
1215static struct sysdev_attribute *etr_port_attributes[] = {
1216 &attr_online,
1217 &attr_stepping_control,
1218 &attr_state_code,
1219 &attr_untuned,
1220 &attr_network,
1221 &attr_id,
1222 &attr_port,
1223 &attr_coupled,
1224 &attr_local_time,
1225 &attr_utc_offset,
1226 NULL
1227};
1228
1229static int __init etr_register_port(struct sys_device *dev)
1230{
1231 struct sysdev_attribute **attr;
1232 int rc;
1233
1234 rc = sysdev_register(dev);
1235 if (rc)
1236 goto out;
1237 for (attr = etr_port_attributes; *attr; attr++) {
1238 rc = sysdev_create_file(dev, *attr);
1239 if (rc)
1240 goto out_unreg;
1241 }
1242 return 0;
1243out_unreg:
1244 for (; attr >= etr_port_attributes; attr--)
1245 sysdev_remove_file(dev, *attr);
1246 sysdev_unregister(dev);
1247out:
1248 return rc;
1249}
1250
1251static void __init etr_unregister_port(struct sys_device *dev)
1252{
1253 struct sysdev_attribute **attr;
1254
1255 for (attr = etr_port_attributes; *attr; attr++)
1256 sysdev_remove_file(dev, *attr);
1257 sysdev_unregister(dev);
1258}
1259
1260static int __init etr_init_sysfs(void)
1261{
1262 int rc;
1263
1264 rc = sysdev_class_register(&etr_sysclass);
1265 if (rc)
1266 goto out;
1267 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_port);
1268 if (rc)
1269 goto out_unreg_class;
1270 rc = sysdev_class_create_file(&etr_sysclass, &attr_stepping_mode);
1271 if (rc)
1272 goto out_remove_stepping_port;
1273 rc = etr_register_port(&etr_port0_dev);
1274 if (rc)
1275 goto out_remove_stepping_mode;
1276 rc = etr_register_port(&etr_port1_dev);
1277 if (rc)
1278 goto out_remove_port0;
1279 return 0;
1280
1281out_remove_port0:
1282 etr_unregister_port(&etr_port0_dev);
1283out_remove_stepping_mode:
1284 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_mode);
1285out_remove_stepping_port:
1286 sysdev_class_remove_file(&etr_sysclass, &attr_stepping_port);
1287out_unreg_class:
1288 sysdev_class_unregister(&etr_sysclass);
1289out:
1290 return rc;
1291}
1292
1293device_initcall(etr_init_sysfs);