Greg Kroah-Hartman | a17ae4c | 2017-11-24 15:00:32 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Time of day based timer functions. |
| 4 | * |
| 5 | * S390 version |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 6 | * Copyright IBM Corp. 1999, 2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Martin Schwidefsky | feab650 | 2008-12-25 13:39:38 +0100 | [diff] [blame] | 15 | #define KMSG_COMPONENT "time" |
| 16 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 17 | |
Heiko Carstens | 052ff46 | 2011-01-05 12:47:28 +0100 | [diff] [blame] | 18 | #include <linux/kernel_stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/errno.h> |
Paul Gortmaker | 3994a52 | 2017-02-09 15:20:23 -0500 | [diff] [blame] | 20 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/sched.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 22 | #include <linux/sched/clock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/param.h> |
| 25 | #include <linux/string.h> |
| 26 | #include <linux/mm.h> |
| 27 | #include <linux/interrupt.h> |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 28 | #include <linux/cpu.h> |
| 29 | #include <linux/stop_machine.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/time.h> |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 31 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/smp.h> |
| 35 | #include <linux/types.h> |
| 36 | #include <linux/profile.h> |
| 37 | #include <linux/timex.h> |
| 38 | #include <linux/notifier.h> |
John Stultz | 189374a | 2012-09-04 15:27:48 -0400 | [diff] [blame] | 39 | #include <linux/timekeeper_internal.h> |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 40 | #include <linux/clockchips.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 41 | #include <linux/gfp.h> |
Martin Schwidefsky | 860dba4 | 2011-01-05 12:47:25 +0100 | [diff] [blame] | 42 | #include <linux/kprobes.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 43 | #include <linux/uaccess.h> |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 44 | #include <asm/facility.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/div64.h> |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 47 | #include <asm/vdso.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <asm/irq.h> |
Heiko Carstens | 5a489b98 | 2006-10-06 16:38:35 +0200 | [diff] [blame] | 49 | #include <asm/irq_regs.h> |
Martin Schwidefsky | 27f6b41 | 2012-07-20 11:15:08 +0200 | [diff] [blame] | 50 | #include <asm/vtimer.h> |
Martin Schwidefsky | fd5ada0 | 2016-05-31 15:06:51 +0200 | [diff] [blame] | 51 | #include <asm/stp.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 52 | #include <asm/cio.h> |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 53 | #include "entry.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 55 | unsigned char tod_clock_base[16] __aligned(8) = { |
| 56 | /* Force to data section. */ |
| 57 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
| 58 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
| 59 | }; |
| 60 | EXPORT_SYMBOL_GPL(tod_clock_base); |
| 61 | |
| 62 | u64 clock_comparator_max = -1ULL; |
| 63 | EXPORT_SYMBOL_GPL(clock_comparator_max); |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 64 | |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 65 | static DEFINE_PER_CPU(struct clock_event_device, comparators); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Fan Zhang | fdf0365 | 2015-05-13 10:58:41 +0200 | [diff] [blame] | 67 | ATOMIC_NOTIFIER_HEAD(s390_epoch_delta_notifier); |
| 68 | EXPORT_SYMBOL(s390_epoch_delta_notifier); |
| 69 | |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 70 | unsigned char ptff_function_mask[16]; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 71 | |
| 72 | static unsigned long long lpar_offset; |
| 73 | static unsigned long long initial_leap_seconds; |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 74 | static unsigned long long tod_steering_end; |
Martin Schwidefsky | 191ce9d | 2016-11-16 16:36:26 +0100 | [diff] [blame] | 75 | static long long tod_steering_delta; |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * Get time offsets with PTFF |
| 79 | */ |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 80 | void __init time_early_init(void) |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 81 | { |
| 82 | struct ptff_qto qto; |
Martin Schwidefsky | 936cc85 | 2016-05-31 12:47:03 +0200 | [diff] [blame] | 83 | struct ptff_qui qui; |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 84 | |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 85 | /* Initialize TOD steering parameters */ |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 86 | tod_steering_end = *(unsigned long long *) &tod_clock_base[1]; |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 87 | vdso_data->ts_end = tod_steering_end; |
| 88 | |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 89 | if (!test_facility(28)) |
| 90 | return; |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 91 | |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 92 | ptff(&ptff_function_mask, sizeof(ptff_function_mask), PTFF_QAF); |
| 93 | |
| 94 | /* get LPAR offset */ |
| 95 | if (ptff_query(PTFF_QTO) && ptff(&qto, sizeof(qto), PTFF_QTO) == 0) |
| 96 | lpar_offset = qto.tod_epoch_difference; |
Martin Schwidefsky | 936cc85 | 2016-05-31 12:47:03 +0200 | [diff] [blame] | 97 | |
| 98 | /* get initial leap seconds */ |
| 99 | if (ptff_query(PTFF_QUI) && ptff(&qui, sizeof(qui), PTFF_QUI) == 0) |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 100 | initial_leap_seconds = (unsigned long long) |
Martin Schwidefsky | 936cc85 | 2016-05-31 12:47:03 +0200 | [diff] [blame] | 101 | ((long) qui.old_leap * 4096000000L); |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 102 | } |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | /* |
| 105 | * Scheduler clock - returns current time in nanosec units. |
| 106 | */ |
Heiko Carstens | 7a5388d | 2014-10-22 12:42:38 +0200 | [diff] [blame] | 107 | unsigned long long notrace sched_clock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 109 | return tod_to_ns(get_tod_clock_monotonic()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
Heiko Carstens | 7a5388d | 2014-10-22 12:42:38 +0200 | [diff] [blame] | 111 | NOKPROBE_SYMBOL(sched_clock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Jan Glauber | 32f65f2 | 2006-02-01 03:06:33 -0800 | [diff] [blame] | 113 | /* |
| 114 | * Monotonic_clock - returns # of nanoseconds passed since time_init() |
| 115 | */ |
| 116 | unsigned long long monotonic_clock(void) |
| 117 | { |
| 118 | return sched_clock(); |
| 119 | } |
| 120 | EXPORT_SYMBOL(monotonic_clock); |
| 121 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 122 | static void ext_to_timespec64(unsigned char *clk, struct timespec64 *xt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 124 | unsigned long long high, low, rem, sec, nsec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 126 | /* Split extendnd TOD clock to micro-seconds and sub-micro-seconds */ |
| 127 | high = (*(unsigned long long *) clk) >> 4; |
| 128 | low = (*(unsigned long long *)&clk[7]) << 4; |
| 129 | /* Calculate seconds and nano-seconds */ |
| 130 | sec = high; |
| 131 | rem = do_div(sec, 1000000); |
| 132 | nsec = (((low >> 32) + (rem << 32)) * 1000) >> 32; |
| 133 | |
John Stultz | b1e2ba8 | 2010-03-08 12:25:19 +0100 | [diff] [blame] | 134 | xt->tv_sec = sec; |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 135 | xt->tv_nsec = nsec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 138 | void clock_comparator_work(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 140 | struct clock_event_device *cd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 142 | S390_lowcore.clock_comparator = clock_comparator_max; |
Christoph Lameter | eb7e7d7 | 2014-08-17 12:30:45 -0500 | [diff] [blame] | 143 | cd = this_cpu_ptr(&comparators); |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 144 | cd->event_handler(cd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Martin Schwidefsky | 8adbf78 | 2013-11-22 12:04:18 +0100 | [diff] [blame] | 147 | static int s390_next_event(unsigned long delta, |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 148 | struct clock_event_device *evt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Martin Schwidefsky | 8adbf78 | 2013-11-22 12:04:18 +0100 | [diff] [blame] | 150 | S390_lowcore.clock_comparator = get_tod_clock() + delta; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 151 | set_clock_comparator(S390_lowcore.clock_comparator); |
| 152 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 155 | /* |
| 156 | * Set up lowcore and control register of the current cpu to |
| 157 | * enable TOD clock and clock comparator interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | */ |
| 159 | void init_cpu_timer(void) |
| 160 | { |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 161 | struct clock_event_device *cd; |
| 162 | int cpu; |
| 163 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 164 | S390_lowcore.clock_comparator = clock_comparator_max; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 165 | set_clock_comparator(S390_lowcore.clock_comparator); |
| 166 | |
| 167 | cpu = smp_processor_id(); |
| 168 | cd = &per_cpu(comparators, cpu); |
| 169 | cd->name = "comparator"; |
Martin Schwidefsky | 8adbf78 | 2013-11-22 12:04:18 +0100 | [diff] [blame] | 170 | cd->features = CLOCK_EVT_FEAT_ONESHOT; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 171 | cd->mult = 16777; |
| 172 | cd->shift = 12; |
| 173 | cd->min_delta_ns = 1; |
Nicolai Stange | 06c5461 | 2017-03-30 21:54:55 +0200 | [diff] [blame] | 174 | cd->min_delta_ticks = 1; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 175 | cd->max_delta_ns = LONG_MAX; |
Nicolai Stange | 06c5461 | 2017-03-30 21:54:55 +0200 | [diff] [blame] | 176 | cd->max_delta_ticks = ULONG_MAX; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 177 | cd->rating = 400; |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 178 | cd->cpumask = cpumask_of(cpu); |
Martin Schwidefsky | 8adbf78 | 2013-11-22 12:04:18 +0100 | [diff] [blame] | 179 | cd->set_next_event = s390_next_event; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 180 | |
| 181 | clockevents_register_device(cd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 183 | /* Enable clock comparator timer interrupt. */ |
| 184 | __ctl_set_bit(0,11); |
| 185 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 186 | /* Always allow the timing alert external interrupt. */ |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 187 | __ctl_set_bit(0, 4); |
| 188 | } |
| 189 | |
Heiko Carstens | fde15c3 | 2012-03-11 11:59:31 -0400 | [diff] [blame] | 190 | static void clock_comparator_interrupt(struct ext_code ext_code, |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame] | 191 | unsigned int param32, |
| 192 | unsigned long param64) |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 193 | { |
Heiko Carstens | 420f42e | 2013-01-02 15:18:18 +0100 | [diff] [blame] | 194 | inc_irq_stat(IRQEXT_CLK); |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 195 | if (S390_lowcore.clock_comparator == clock_comparator_max) |
Heiko Carstens | d3d238c | 2008-10-03 21:54:59 +0200 | [diff] [blame] | 196 | set_clock_comparator(S390_lowcore.clock_comparator); |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 199 | static void stp_timing_alert(struct stp_irq_parm *); |
| 200 | |
Heiko Carstens | fde15c3 | 2012-03-11 11:59:31 -0400 | [diff] [blame] | 201 | static void timing_alert_interrupt(struct ext_code ext_code, |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame] | 202 | unsigned int param32, unsigned long param64) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 203 | { |
Heiko Carstens | 420f42e | 2013-01-02 15:18:18 +0100 | [diff] [blame] | 204 | inc_irq_stat(IRQEXT_TLA); |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame] | 205 | if (param32 & 0x00038000) |
| 206 | stp_timing_alert((struct stp_irq_parm *) ¶m32); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 209 | static void stp_reset(void); |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 210 | |
Xunlei Pang | 689911c | 2015-04-09 09:04:41 +0800 | [diff] [blame] | 211 | void read_persistent_clock64(struct timespec64 *ts) |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 212 | { |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 213 | unsigned char clk[STORE_CLOCK_EXT_SIZE]; |
| 214 | __u64 delta; |
Martin Schwidefsky | 936cc85 | 2016-05-31 12:47:03 +0200 | [diff] [blame] | 215 | |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 216 | delta = initial_leap_seconds + TOD_UNIX_EPOCH; |
| 217 | get_tod_clock_ext(clk); |
| 218 | *(__u64 *) &clk[1] -= delta; |
| 219 | if (*(__u64 *) &clk[1] > delta) |
| 220 | clk[0]--; |
| 221 | ext_to_timespec64(clk, ts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Pavel Tatashin | be2e0e4 | 2018-07-19 16:55:33 -0400 | [diff] [blame] | 224 | void __init read_persistent_wall_and_boot_offset(struct timespec64 *wall_time, |
| 225 | struct timespec64 *boot_offset) |
| 226 | { |
| 227 | unsigned char clk[STORE_CLOCK_EXT_SIZE]; |
| 228 | struct timespec64 boot_time; |
| 229 | __u64 delta; |
| 230 | |
| 231 | delta = initial_leap_seconds + TOD_UNIX_EPOCH; |
| 232 | memcpy(clk, tod_clock_base, STORE_CLOCK_EXT_SIZE); |
| 233 | *(__u64 *)&clk[1] -= delta; |
| 234 | if (*(__u64 *)&clk[1] > delta) |
| 235 | clk[0]--; |
| 236 | ext_to_timespec64(clk, &boot_time); |
| 237 | |
| 238 | read_persistent_clock64(wall_time); |
| 239 | *boot_offset = timespec64_sub(*wall_time, boot_time); |
| 240 | } |
| 241 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 242 | static u64 read_tod_clock(struct clocksource *cs) |
Martin Schwidefsky | dc64bef | 2006-10-06 16:38:48 +0200 | [diff] [blame] | 243 | { |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 244 | unsigned long long now, adj; |
| 245 | |
| 246 | preempt_disable(); /* protect from changes to steering parameters */ |
| 247 | now = get_tod_clock(); |
| 248 | adj = tod_steering_end - now; |
| 249 | if (unlikely((s64) adj >= 0)) |
| 250 | /* |
| 251 | * manually steer by 1 cycle every 2^16 cycles. This |
| 252 | * corresponds to shifting the tod delta by 15. 1s is |
| 253 | * therefore steered in ~9h. The adjust will decrease |
| 254 | * over time, until it finally reaches 0. |
| 255 | */ |
Martin Schwidefsky | 191ce9d | 2016-11-16 16:36:26 +0100 | [diff] [blame] | 256 | now += (tod_steering_delta < 0) ? (adj >> 15) : -(adj >> 15); |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 257 | preempt_enable(); |
| 258 | return now; |
Martin Schwidefsky | dc64bef | 2006-10-06 16:38:48 +0200 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | static struct clocksource clocksource_tod = { |
| 262 | .name = "tod", |
Christian Borntraeger | d2cb0e6 | 2007-11-05 11:10:14 +0100 | [diff] [blame] | 263 | .rating = 400, |
Martin Schwidefsky | dc64bef | 2006-10-06 16:38:48 +0200 | [diff] [blame] | 264 | .read = read_tod_clock, |
| 265 | .mask = -1ULL, |
| 266 | .mult = 1000, |
| 267 | .shift = 12, |
Thomas Gleixner | cc02d80 | 2007-02-16 01:27:39 -0800 | [diff] [blame] | 268 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Martin Schwidefsky | dc64bef | 2006-10-06 16:38:48 +0200 | [diff] [blame] | 269 | }; |
| 270 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 271 | struct clocksource * __init clocksource_default_clock(void) |
| 272 | { |
| 273 | return &clocksource_tod; |
| 274 | } |
Martin Schwidefsky | dc64bef | 2006-10-06 16:38:48 +0200 | [diff] [blame] | 275 | |
Martin Schwidefsky | 79c74ec | 2013-11-22 10:04:53 +0100 | [diff] [blame] | 276 | void update_vsyscall(struct timekeeper *tk) |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 277 | { |
Martin Schwidefsky | 79c74ec | 2013-11-22 10:04:53 +0100 | [diff] [blame] | 278 | u64 nsecps; |
| 279 | |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 280 | if (tk->tkr_mono.clock != &clocksource_tod) |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 281 | return; |
| 282 | |
| 283 | /* Make userspace gettimeofday spin until we're done. */ |
| 284 | ++vdso_data->tb_update_count; |
| 285 | smp_wmb(); |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 286 | vdso_data->xtime_tod_stamp = tk->tkr_mono.cycle_last; |
Martin Schwidefsky | 79c74ec | 2013-11-22 10:04:53 +0100 | [diff] [blame] | 287 | vdso_data->xtime_clock_sec = tk->xtime_sec; |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 288 | vdso_data->xtime_clock_nsec = tk->tkr_mono.xtime_nsec; |
Martin Schwidefsky | 79c74ec | 2013-11-22 10:04:53 +0100 | [diff] [blame] | 289 | vdso_data->wtom_clock_sec = |
| 290 | tk->xtime_sec + tk->wall_to_monotonic.tv_sec; |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 291 | vdso_data->wtom_clock_nsec = tk->tkr_mono.xtime_nsec + |
| 292 | + ((u64) tk->wall_to_monotonic.tv_nsec << tk->tkr_mono.shift); |
| 293 | nsecps = (u64) NSEC_PER_SEC << tk->tkr_mono.shift; |
Martin Schwidefsky | 79c74ec | 2013-11-22 10:04:53 +0100 | [diff] [blame] | 294 | while (vdso_data->wtom_clock_nsec >= nsecps) { |
| 295 | vdso_data->wtom_clock_nsec -= nsecps; |
| 296 | vdso_data->wtom_clock_sec++; |
| 297 | } |
Martin Schwidefsky | b7eacb5 | 2014-08-29 12:31:45 +0200 | [diff] [blame] | 298 | |
| 299 | vdso_data->xtime_coarse_sec = tk->xtime_sec; |
| 300 | vdso_data->xtime_coarse_nsec = |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 301 | (long)(tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift); |
Martin Schwidefsky | b7eacb5 | 2014-08-29 12:31:45 +0200 | [diff] [blame] | 302 | vdso_data->wtom_coarse_sec = |
| 303 | vdso_data->xtime_coarse_sec + tk->wall_to_monotonic.tv_sec; |
| 304 | vdso_data->wtom_coarse_nsec = |
| 305 | vdso_data->xtime_coarse_nsec + tk->wall_to_monotonic.tv_nsec; |
| 306 | while (vdso_data->wtom_coarse_nsec >= NSEC_PER_SEC) { |
| 307 | vdso_data->wtom_coarse_nsec -= NSEC_PER_SEC; |
| 308 | vdso_data->wtom_coarse_sec++; |
| 309 | } |
| 310 | |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 311 | vdso_data->tk_mult = tk->tkr_mono.mult; |
| 312 | vdso_data->tk_shift = tk->tkr_mono.shift; |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 313 | smp_wmb(); |
| 314 | ++vdso_data->tb_update_count; |
| 315 | } |
| 316 | |
| 317 | extern struct timezone sys_tz; |
| 318 | |
| 319 | void update_vsyscall_tz(void) |
| 320 | { |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 321 | vdso_data->tz_minuteswest = sys_tz.tz_minuteswest; |
| 322 | vdso_data->tz_dsttime = sys_tz.tz_dsttime; |
Martin Schwidefsky | b020632 | 2008-12-25 13:38:36 +0100 | [diff] [blame] | 323 | } |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | /* |
| 326 | * Initialize the TOD clock and the CPU timer of |
| 327 | * the boot cpu. |
| 328 | */ |
| 329 | void __init time_init(void) |
| 330 | { |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 331 | /* Reset time synchronization interfaces. */ |
Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 332 | stp_reset(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* request the clock comparator external interrupt */ |
Thomas Huth | 1dad093 | 2014-03-31 15:24:08 +0200 | [diff] [blame] | 335 | if (register_external_irq(EXT_IRQ_CLK_COMP, clock_comparator_interrupt)) |
| 336 | panic("Couldn't request external interrupt 0x1004"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 338 | /* request the timing alert external interrupt */ |
Thomas Huth | 1dad093 | 2014-03-31 15:24:08 +0200 | [diff] [blame] | 339 | if (register_external_irq(EXT_IRQ_TIMING_ALERT, timing_alert_interrupt)) |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 340 | panic("Couldn't request external interrupt 0x1406"); |
| 341 | |
John Stultz | f893598 | 2015-03-11 21:16:37 -0700 | [diff] [blame] | 342 | if (__clocksource_register(&clocksource_tod) != 0) |
Martin Schwidefsky | ab96e79 | 2009-04-14 15:36:29 +0200 | [diff] [blame] | 343 | panic("Could not register TOD clock source"); |
| 344 | |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 345 | /* Enable TOD clock interrupts on the boot cpu. */ |
| 346 | init_cpu_timer(); |
Martin Schwidefsky | ab96e79 | 2009-04-14 15:36:29 +0200 | [diff] [blame] | 347 | |
Martin Schwidefsky | c185b78 | 2008-12-25 13:39:25 +0100 | [diff] [blame] | 348 | /* Enable cpu timer interrupts on the boot cpu. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | vtime_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 352 | static DEFINE_PER_CPU(atomic_t, clock_sync_word); |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 353 | static DEFINE_MUTEX(clock_sync_mutex); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 354 | static unsigned long clock_sync_flags; |
| 355 | |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 356 | #define CLOCK_SYNC_HAS_STP 0 |
| 357 | #define CLOCK_SYNC_STP 1 |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 358 | |
| 359 | /* |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 360 | * The get_clock function for the physical clock. It will get the current |
| 361 | * TOD clock, subtract the LPAR offset and write the result to *clock. |
| 362 | * The function returns 0 if the clock is in sync with the external time |
| 363 | * source. If the clock mode is local it will return -EOPNOTSUPP and |
| 364 | * -EAGAIN if the clock is not in sync with the external reference. |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 365 | */ |
Jan Höppner | 7bf76f01 | 2017-08-15 16:40:18 +0200 | [diff] [blame] | 366 | int get_phys_clock(unsigned long *clock) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 367 | { |
| 368 | atomic_t *sw_ptr; |
| 369 | unsigned int sw0, sw1; |
| 370 | |
| 371 | sw_ptr = &get_cpu_var(clock_sync_word); |
| 372 | sw0 = atomic_read(sw_ptr); |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 373 | *clock = get_tod_clock() - lpar_offset; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 374 | sw1 = atomic_read(sw_ptr); |
Heiko Carstens | bd119ee | 2009-12-07 12:52:14 +0100 | [diff] [blame] | 375 | put_cpu_var(clock_sync_word); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 376 | if (sw0 == sw1 && (sw0 & 0x80000000U)) |
| 377 | /* Success: time is in sync. */ |
| 378 | return 0; |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 379 | if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) |
Heiko Carstens | a8f6db4 | 2012-09-06 15:13:34 +0200 | [diff] [blame] | 380 | return -EOPNOTSUPP; |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 381 | if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags)) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 382 | return -EACCES; |
| 383 | return -EAGAIN; |
| 384 | } |
Martin Schwidefsky | 4027789 | 2016-05-31 10:16:24 +0200 | [diff] [blame] | 385 | EXPORT_SYMBOL(get_phys_clock); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 386 | |
| 387 | /* |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 388 | * Make get_phys_clock() return -EAGAIN. |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 389 | */ |
| 390 | static void disable_sync_clock(void *dummy) |
| 391 | { |
Christoph Lameter | eb7e7d7 | 2014-08-17 12:30:45 -0500 | [diff] [blame] | 392 | atomic_t *sw_ptr = this_cpu_ptr(&clock_sync_word); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 393 | /* |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 394 | * Clear the in-sync bit 2^31. All get_phys_clock calls will |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 395 | * fail until the sync bit is turned back on. In addition |
| 396 | * increase the "sequence" counter to avoid the race of an |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 397 | * stp event and the complete recovery against get_phys_clock. |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 398 | */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 399 | atomic_andnot(0x80000000, sw_ptr); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 400 | atomic_inc(sw_ptr); |
| 401 | } |
| 402 | |
| 403 | /* |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 404 | * Make get_phys_clock() return 0 again. |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 405 | * Needs to be called from a context disabled for preemption. |
| 406 | */ |
| 407 | static void enable_sync_clock(void) |
| 408 | { |
Christoph Lameter | eb7e7d7 | 2014-08-17 12:30:45 -0500 | [diff] [blame] | 409 | atomic_t *sw_ptr = this_cpu_ptr(&clock_sync_word); |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 410 | atomic_or(0x80000000, sw_ptr); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 411 | } |
| 412 | |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 413 | /* |
| 414 | * Function to check if the clock is in sync. |
| 415 | */ |
| 416 | static inline int check_sync_clock(void) |
| 417 | { |
| 418 | atomic_t *sw_ptr; |
| 419 | int rc; |
| 420 | |
| 421 | sw_ptr = &get_cpu_var(clock_sync_word); |
| 422 | rc = (atomic_read(sw_ptr) & 0x80000000U) != 0; |
Heiko Carstens | bd119ee | 2009-12-07 12:52:14 +0100 | [diff] [blame] | 423 | put_cpu_var(clock_sync_word); |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 424 | return rc; |
| 425 | } |
| 426 | |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 427 | /* |
| 428 | * Apply clock delta to the global data structures. |
| 429 | * This is called once on the CPU that performed the clock sync. |
| 430 | */ |
| 431 | static void clock_sync_global(unsigned long long delta) |
| 432 | { |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 433 | unsigned long now, adj; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 434 | struct ptff_qto qto; |
| 435 | |
| 436 | /* Fixup the monotonic sched clock. */ |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 437 | *(unsigned long long *) &tod_clock_base[1] += delta; |
| 438 | if (*(unsigned long long *) &tod_clock_base[1] < delta) |
| 439 | /* Epoch overflow */ |
| 440 | tod_clock_base[0]++; |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 441 | /* Adjust TOD steering parameters. */ |
| 442 | vdso_data->tb_update_count++; |
| 443 | now = get_tod_clock(); |
| 444 | adj = tod_steering_end - now; |
| 445 | if (unlikely((s64) adj >= 0)) |
| 446 | /* Calculate how much of the old adjustment is left. */ |
Martin Schwidefsky | 191ce9d | 2016-11-16 16:36:26 +0100 | [diff] [blame] | 447 | tod_steering_delta = (tod_steering_delta < 0) ? |
Martin Schwidefsky | 75c7b6f | 2016-10-11 12:49:50 +0200 | [diff] [blame] | 448 | -(adj >> 15) : (adj >> 15); |
| 449 | tod_steering_delta += delta; |
| 450 | if ((abs(tod_steering_delta) >> 48) != 0) |
| 451 | panic("TOD clock sync offset %lli is too large to drift\n", |
| 452 | tod_steering_delta); |
| 453 | tod_steering_end = now + (abs(tod_steering_delta) << 15); |
| 454 | vdso_data->ts_dir = (tod_steering_delta < 0) ? 0 : 1; |
| 455 | vdso_data->ts_end = tod_steering_end; |
| 456 | vdso_data->tb_update_count++; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 457 | /* Update LPAR offset. */ |
| 458 | if (ptff_query(PTFF_QTO) && ptff(&qto, sizeof(qto), PTFF_QTO) == 0) |
| 459 | lpar_offset = qto.tod_epoch_difference; |
| 460 | /* Call the TOD clock change notifier. */ |
| 461 | atomic_notifier_call_chain(&s390_epoch_delta_notifier, 0, &delta); |
| 462 | } |
| 463 | |
| 464 | /* |
| 465 | * Apply clock delta to the per-CPU data structures of this CPU. |
| 466 | * This is called for each online CPU after the call to clock_sync_global. |
| 467 | */ |
| 468 | static void clock_sync_local(unsigned long long delta) |
| 469 | { |
| 470 | /* Add the delta to the clock comparator. */ |
Martin Schwidefsky | 6e2ef5e | 2016-10-27 12:41:39 +0200 | [diff] [blame] | 471 | if (S390_lowcore.clock_comparator != clock_comparator_max) { |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 472 | S390_lowcore.clock_comparator += delta; |
| 473 | set_clock_comparator(S390_lowcore.clock_comparator); |
| 474 | } |
Martin Schwidefsky | 2ace06e | 2016-10-10 12:14:32 +0200 | [diff] [blame] | 475 | /* Adjust the last_update_clock time-stamp. */ |
| 476 | S390_lowcore.last_update_clock += delta; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 477 | } |
| 478 | |
David Hildenbrand | ca64f63 | 2016-07-14 13:38:06 +0200 | [diff] [blame] | 479 | /* Single threaded workqueue used for stp sync events */ |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 480 | static struct workqueue_struct *time_sync_wq; |
| 481 | |
| 482 | static void __init time_init_wq(void) |
| 483 | { |
Heiko Carstens | 179cb81 | 2009-01-23 16:40:26 +0100 | [diff] [blame] | 484 | if (time_sync_wq) |
| 485 | return; |
| 486 | time_sync_wq = create_singlethread_workqueue("timesync"); |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 489 | struct clock_sync_data { |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 490 | atomic_t cpus; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 491 | int in_sync; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 492 | unsigned long long clock_delta; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 493 | }; |
Heiko Carstens | 5a62b19 | 2008-04-17 07:46:25 +0200 | [diff] [blame] | 494 | |
Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 495 | /* |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 496 | * Server Time Protocol (STP) code. |
| 497 | */ |
Kees Cook | 4cc7ecb7 | 2016-03-17 14:23:00 -0700 | [diff] [blame] | 498 | static bool stp_online; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 499 | static struct stp_sstpi stp_info; |
| 500 | static void *stp_page; |
| 501 | |
| 502 | static void stp_work_fn(struct work_struct *work); |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 503 | static DEFINE_MUTEX(stp_work_mutex); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 504 | static DECLARE_WORK(stp_work, stp_work_fn); |
Martin Schwidefsky | 0436230 | 2009-04-14 15:36:19 +0200 | [diff] [blame] | 505 | static struct timer_list stp_timer; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 506 | |
| 507 | static int __init early_parse_stp(char *p) |
| 508 | { |
Kees Cook | 4cc7ecb7 | 2016-03-17 14:23:00 -0700 | [diff] [blame] | 509 | return kstrtobool(p, &stp_online); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 510 | } |
| 511 | early_param("stp", early_parse_stp); |
| 512 | |
| 513 | /* |
| 514 | * Reset STP attachment. |
| 515 | */ |
Heiko Carstens | 8f84700 | 2008-08-01 16:39:19 +0200 | [diff] [blame] | 516 | static void __init stp_reset(void) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 517 | { |
| 518 | int rc; |
| 519 | |
Heiko Carstens | d7d1104 | 2009-06-22 12:08:03 +0200 | [diff] [blame] | 520 | stp_page = (void *) get_zeroed_page(GFP_ATOMIC); |
Martin Schwidefsky | 2f82f57 | 2016-05-31 09:09:57 +0200 | [diff] [blame] | 521 | rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000, NULL); |
Martin Schwidefsky | 4a672cf | 2008-10-10 21:33:29 +0200 | [diff] [blame] | 522 | if (rc == 0) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 523 | set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags); |
| 524 | else if (stp_online) { |
Joe Perches | baebc70 | 2016-03-03 20:49:57 -0800 | [diff] [blame] | 525 | pr_warn("The real or virtual hardware system does not provide an STP interface\n"); |
Heiko Carstens | d7d1104 | 2009-06-22 12:08:03 +0200 | [diff] [blame] | 526 | free_page((unsigned long) stp_page); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 527 | stp_page = NULL; |
Heiko Carstens | 970ba6ac | 2017-01-02 09:59:40 +0100 | [diff] [blame] | 528 | stp_online = false; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 529 | } |
| 530 | } |
| 531 | |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 532 | static void stp_timeout(struct timer_list *unused) |
Martin Schwidefsky | 0436230 | 2009-04-14 15:36:19 +0200 | [diff] [blame] | 533 | { |
| 534 | queue_work(time_sync_wq, &stp_work); |
| 535 | } |
| 536 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 537 | static int __init stp_init(void) |
| 538 | { |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 539 | if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) |
| 540 | return 0; |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 541 | timer_setup(&stp_timer, stp_timeout, 0); |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 542 | time_init_wq(); |
| 543 | if (!stp_online) |
| 544 | return 0; |
| 545 | queue_work(time_sync_wq, &stp_work); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 546 | return 0; |
| 547 | } |
| 548 | |
| 549 | arch_initcall(stp_init); |
| 550 | |
| 551 | /* |
| 552 | * STP timing alert. There are three causes: |
| 553 | * 1) timing status change |
| 554 | * 2) link availability change |
| 555 | * 3) time control parameter change |
| 556 | * In all three cases we are only interested in the clock source state. |
| 557 | * If a STP clock source is now available use it. |
| 558 | */ |
| 559 | static void stp_timing_alert(struct stp_irq_parm *intparm) |
| 560 | { |
| 561 | if (intparm->tsc || intparm->lac || intparm->tcpc) |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 562 | queue_work(time_sync_wq, &stp_work); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | /* |
| 566 | * STP sync check machine check. This is called when the timing state |
| 567 | * changes from the synchronized state to the unsynchronized state. |
| 568 | * After a STP sync check the clock is not in sync. The machine check |
| 569 | * is broadcasted to all cpus at the same time. |
| 570 | */ |
Heiko Carstens | 29b0a82 | 2015-10-09 13:48:03 +0200 | [diff] [blame] | 571 | int stp_sync_check(void) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 572 | { |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 573 | disable_sync_clock(NULL); |
Heiko Carstens | 29b0a82 | 2015-10-09 13:48:03 +0200 | [diff] [blame] | 574 | return 1; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | /* |
| 578 | * STP island condition machine check. This is called when an attached |
| 579 | * server attempts to communicate over an STP link and the servers |
| 580 | * have matching CTN ids and have a valid stratum-1 configuration |
| 581 | * but the configurations do not match. |
| 582 | */ |
Heiko Carstens | 29b0a82 | 2015-10-09 13:48:03 +0200 | [diff] [blame] | 583 | int stp_island_check(void) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 584 | { |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 585 | disable_sync_clock(NULL); |
Heiko Carstens | 29b0a82 | 2015-10-09 13:48:03 +0200 | [diff] [blame] | 586 | return 1; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 587 | } |
| 588 | |
Heiko Carstens | 29b0a82 | 2015-10-09 13:48:03 +0200 | [diff] [blame] | 589 | void stp_queue_work(void) |
| 590 | { |
| 591 | queue_work(time_sync_wq, &stp_work); |
| 592 | } |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 593 | |
| 594 | static int stp_sync_clock(void *data) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 595 | { |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 596 | struct clock_sync_data *sync = data; |
David Hildenbrand | 41ad022 | 2016-07-14 13:09:57 +0200 | [diff] [blame] | 597 | unsigned long long clock_delta; |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 598 | static int first; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 599 | int rc; |
| 600 | |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 601 | enable_sync_clock(); |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 602 | if (xchg(&first, 1) == 0) { |
| 603 | /* Wait until all other cpus entered the sync function. */ |
| 604 | while (atomic_read(&sync->cpus) != 0) |
| 605 | cpu_relax(); |
| 606 | rc = 0; |
| 607 | if (stp_info.todoff[0] || stp_info.todoff[1] || |
| 608 | stp_info.todoff[2] || stp_info.todoff[3] || |
| 609 | stp_info.tmd != 2) { |
| 610 | rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0, |
| 611 | &clock_delta); |
| 612 | if (rc == 0) { |
| 613 | sync->clock_delta = clock_delta; |
| 614 | clock_sync_global(clock_delta); |
| 615 | rc = chsc_sstpi(stp_page, &stp_info, |
| 616 | sizeof(struct stp_sstpi)); |
| 617 | if (rc == 0 && stp_info.tmd != 2) |
| 618 | rc = -EAGAIN; |
| 619 | } |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 620 | } |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 621 | sync->in_sync = rc ? -EAGAIN : 1; |
| 622 | xchg(&first, 0); |
| 623 | } else { |
| 624 | /* Slave */ |
| 625 | atomic_dec(&sync->cpus); |
| 626 | /* Wait for in_sync to be set. */ |
| 627 | while (READ_ONCE(sync->in_sync) == 0) |
| 628 | __udelay(1); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 629 | } |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 630 | if (sync->in_sync != 1) |
| 631 | /* Didn't work. Clear per-cpu in sync bit again. */ |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 632 | disable_sync_clock(NULL); |
Martin Schwidefsky | b1c0854 | 2016-10-10 09:43:41 +0200 | [diff] [blame] | 633 | /* Apply clock delta to per-CPU fields of this CPU. */ |
| 634 | clock_sync_local(sync->clock_delta); |
| 635 | |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 636 | return 0; |
| 637 | } |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 638 | |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 639 | /* |
| 640 | * STP work. Check for the STP state and take over the clock |
| 641 | * synchronization if the STP clock source is usable. |
| 642 | */ |
| 643 | static void stp_work_fn(struct work_struct *work) |
| 644 | { |
| 645 | struct clock_sync_data stp_sync; |
| 646 | int rc; |
| 647 | |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 648 | /* prevent multiple execution. */ |
| 649 | mutex_lock(&stp_work_mutex); |
| 650 | |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 651 | if (!stp_online) { |
Martin Schwidefsky | 2f82f57 | 2016-05-31 09:09:57 +0200 | [diff] [blame] | 652 | chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000, NULL); |
Martin Schwidefsky | 0436230 | 2009-04-14 15:36:19 +0200 | [diff] [blame] | 653 | del_timer_sync(&stp_timer); |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 654 | goto out_unlock; |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 655 | } |
| 656 | |
Martin Schwidefsky | 2f82f57 | 2016-05-31 09:09:57 +0200 | [diff] [blame] | 657 | rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0, NULL); |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 658 | if (rc) |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 659 | goto out_unlock; |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 660 | |
| 661 | rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi)); |
| 662 | if (rc || stp_info.c == 0) |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 663 | goto out_unlock; |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 664 | |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 665 | /* Skip synchronization if the clock is already in sync. */ |
| 666 | if (check_sync_clock()) |
| 667 | goto out_unlock; |
| 668 | |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 669 | memset(&stp_sync, 0, sizeof(stp_sync)); |
Sebastian Andrzej Siewior | 2337e87 | 2017-05-24 10:15:26 +0200 | [diff] [blame] | 670 | cpus_read_lock(); |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 671 | atomic_set(&stp_sync.cpus, num_online_cpus() - 1); |
Sebastian Andrzej Siewior | 2337e87 | 2017-05-24 10:15:26 +0200 | [diff] [blame] | 672 | stop_machine_cpuslocked(stp_sync_clock, &stp_sync, cpu_online_mask); |
| 673 | cpus_read_unlock(); |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 674 | |
Martin Schwidefsky | 0436230 | 2009-04-14 15:36:19 +0200 | [diff] [blame] | 675 | if (!check_sync_clock()) |
| 676 | /* |
| 677 | * There is a usable clock but the synchonization failed. |
| 678 | * Retry after a second. |
| 679 | */ |
| 680 | mod_timer(&stp_timer, jiffies + HZ); |
| 681 | |
Martin Schwidefsky | 0b3016b | 2008-12-25 13:38:38 +0100 | [diff] [blame] | 682 | out_unlock: |
| 683 | mutex_unlock(&stp_work_mutex); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | /* |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 687 | * STP subsys sysfs interface functions |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 688 | */ |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 689 | static struct bus_type stp_subsys = { |
| 690 | .name = "stp", |
| 691 | .dev_name = "stp", |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 692 | }; |
| 693 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 694 | static ssize_t stp_ctn_id_show(struct device *dev, |
| 695 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 696 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 697 | { |
| 698 | if (!stp_online) |
| 699 | return -ENODATA; |
| 700 | return sprintf(buf, "%016llx\n", |
| 701 | *(unsigned long long *) stp_info.ctnid); |
| 702 | } |
| 703 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 704 | static DEVICE_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 705 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 706 | static ssize_t stp_ctn_type_show(struct device *dev, |
| 707 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 708 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 709 | { |
| 710 | if (!stp_online) |
| 711 | return -ENODATA; |
| 712 | return sprintf(buf, "%i\n", stp_info.ctn); |
| 713 | } |
| 714 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 715 | static DEVICE_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 716 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 717 | static ssize_t stp_dst_offset_show(struct device *dev, |
| 718 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 719 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 720 | { |
| 721 | if (!stp_online || !(stp_info.vbits & 0x2000)) |
| 722 | return -ENODATA; |
| 723 | return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto); |
| 724 | } |
| 725 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 726 | static DEVICE_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 727 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 728 | static ssize_t stp_leap_seconds_show(struct device *dev, |
| 729 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 730 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 731 | { |
| 732 | if (!stp_online || !(stp_info.vbits & 0x8000)) |
| 733 | return -ENODATA; |
| 734 | return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps); |
| 735 | } |
| 736 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 737 | static DEVICE_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 738 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 739 | static ssize_t stp_stratum_show(struct device *dev, |
| 740 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 741 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 742 | { |
| 743 | if (!stp_online) |
| 744 | return -ENODATA; |
| 745 | return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum); |
| 746 | } |
| 747 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 748 | static DEVICE_ATTR(stratum, 0400, stp_stratum_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 749 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 750 | static ssize_t stp_time_offset_show(struct device *dev, |
| 751 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 752 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 753 | { |
| 754 | if (!stp_online || !(stp_info.vbits & 0x0800)) |
| 755 | return -ENODATA; |
| 756 | return sprintf(buf, "%i\n", (int) stp_info.tto); |
| 757 | } |
| 758 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 759 | static DEVICE_ATTR(time_offset, 0400, stp_time_offset_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 760 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 761 | static ssize_t stp_time_zone_offset_show(struct device *dev, |
| 762 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 763 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 764 | { |
| 765 | if (!stp_online || !(stp_info.vbits & 0x4000)) |
| 766 | return -ENODATA; |
| 767 | return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo); |
| 768 | } |
| 769 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 770 | static DEVICE_ATTR(time_zone_offset, 0400, |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 771 | stp_time_zone_offset_show, NULL); |
| 772 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 773 | static ssize_t stp_timing_mode_show(struct device *dev, |
| 774 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 775 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 776 | { |
| 777 | if (!stp_online) |
| 778 | return -ENODATA; |
| 779 | return sprintf(buf, "%i\n", stp_info.tmd); |
| 780 | } |
| 781 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 782 | static DEVICE_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 783 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 784 | static ssize_t stp_timing_state_show(struct device *dev, |
| 785 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 786 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 787 | { |
| 788 | if (!stp_online) |
| 789 | return -ENODATA; |
| 790 | return sprintf(buf, "%i\n", stp_info.tst); |
| 791 | } |
| 792 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 793 | static DEVICE_ATTR(timing_state, 0400, stp_timing_state_show, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 794 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 795 | static ssize_t stp_online_show(struct device *dev, |
| 796 | struct device_attribute *attr, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 797 | char *buf) |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 798 | { |
| 799 | return sprintf(buf, "%i\n", stp_online); |
| 800 | } |
| 801 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 802 | static ssize_t stp_online_store(struct device *dev, |
| 803 | struct device_attribute *attr, |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 804 | const char *buf, size_t count) |
| 805 | { |
| 806 | unsigned int value; |
| 807 | |
| 808 | value = simple_strtoul(buf, NULL, 0); |
| 809 | if (value != 0 && value != 1) |
| 810 | return -EINVAL; |
| 811 | if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) |
| 812 | return -EOPNOTSUPP; |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 813 | mutex_lock(&clock_sync_mutex); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 814 | stp_online = value; |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 815 | if (stp_online) |
| 816 | set_bit(CLOCK_SYNC_STP, &clock_sync_flags); |
| 817 | else |
| 818 | clear_bit(CLOCK_SYNC_STP, &clock_sync_flags); |
Heiko Carstens | 750887d | 2008-12-25 13:38:37 +0100 | [diff] [blame] | 819 | queue_work(time_sync_wq, &stp_work); |
Martin Schwidefsky | 8283cb4 | 2009-03-26 15:24:21 +0100 | [diff] [blame] | 820 | mutex_unlock(&clock_sync_mutex); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 821 | return count; |
| 822 | } |
| 823 | |
| 824 | /* |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 825 | * Can't use DEVICE_ATTR because the attribute should be named |
| 826 | * stp/online but dev_attr_online already exists in this file .. |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 827 | */ |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 828 | static struct device_attribute dev_attr_stp_online = { |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 829 | .attr = { .name = "online", .mode = 0600 }, |
| 830 | .show = stp_online_show, |
| 831 | .store = stp_online_store, |
| 832 | }; |
| 833 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 834 | static struct device_attribute *stp_attributes[] = { |
| 835 | &dev_attr_ctn_id, |
| 836 | &dev_attr_ctn_type, |
| 837 | &dev_attr_dst_offset, |
| 838 | &dev_attr_leap_seconds, |
| 839 | &dev_attr_stp_online, |
| 840 | &dev_attr_stratum, |
| 841 | &dev_attr_time_offset, |
| 842 | &dev_attr_time_zone_offset, |
| 843 | &dev_attr_timing_mode, |
| 844 | &dev_attr_timing_state, |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 845 | NULL |
| 846 | }; |
| 847 | |
| 848 | static int __init stp_init_sysfs(void) |
| 849 | { |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 850 | struct device_attribute **attr; |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 851 | int rc; |
| 852 | |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 853 | rc = subsys_system_register(&stp_subsys, NULL); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 854 | if (rc) |
| 855 | goto out; |
| 856 | for (attr = stp_attributes; *attr; attr++) { |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 857 | rc = device_create_file(stp_subsys.dev_root, *attr); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 858 | if (rc) |
| 859 | goto out_unreg; |
| 860 | } |
| 861 | return 0; |
| 862 | out_unreg: |
| 863 | for (; attr >= stp_attributes; attr--) |
Kay Sievers | 3fbacff | 2011-12-21 15:09:50 -0800 | [diff] [blame] | 864 | device_remove_file(stp_subsys.dev_root, *attr); |
| 865 | bus_unregister(&stp_subsys); |
Martin Schwidefsky | d2fec59 | 2008-07-14 09:58:56 +0200 | [diff] [blame] | 866 | out: |
| 867 | return rc; |
| 868 | } |
| 869 | |
| 870 | device_initcall(stp_init_sysfs); |