cregit-Linux how code gets into the kernel

Release 4.14 arch/s390/kernel/time.c

Directory: arch/s390/kernel
/*
 *    Time of day based timer functions.
 *
 *  S390 version
 *    Copyright IBM Corp. 1999, 2008
 *    Author(s): Hartmut Penner (hp@de.ibm.com),
 *               Martin Schwidefsky (schwidefsky@de.ibm.com),
 *               Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
 *
 *  Derived from "arch/i386/kernel/time.c"
 *    Copyright (C) 1991, 1992, 1995  Linus Torvalds
 */


#define KMSG_COMPONENT "time"

#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

#include <linux/kernel_stat.h>
#include <linux/errno.h>
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/sched/clock.h>
#include <linux/kernel.h>
#include <linux/param.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/cpu.h>
#include <linux/stop_machine.h>
#include <linux/time.h>
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/smp.h>
#include <linux/types.h>
#include <linux/profile.h>
#include <linux/timex.h>
#include <linux/notifier.h>
#include <linux/timekeeper_internal.h>
#include <linux/clockchips.h>
#include <linux/gfp.h>
#include <linux/kprobes.h>
#include <linux/uaccess.h>
#include <asm/facility.h>
#include <asm/delay.h>
#include <asm/div64.h>
#include <asm/vdso.h>
#include <asm/irq.h>
#include <asm/irq_regs.h>
#include <asm/vtimer.h>
#include <asm/stp.h>
#include <asm/cio.h>
#include "entry.h"

unsigned char tod_clock_base[16] __aligned(8) = {
	/* Force to data section. */
	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};

EXPORT_SYMBOL_GPL(tod_clock_base);


u64 clock_comparator_max = -1ULL;

EXPORT_SYMBOL_GPL(clock_comparator_max);

static DEFINE_PER_CPU(struct clock_event_device, comparators);


ATOMIC_NOTIFIER_HEAD(s390_epoch_delta_notifier);

EXPORT_SYMBOL(s390_epoch_delta_notifier);


unsigned char ptff_function_mask[16];


static unsigned long long lpar_offset;

static unsigned long long initial_leap_seconds;

static unsigned long long tod_steering_end;

static long long tod_steering_delta;

/*
 * Get time offsets with PTFF
 */

void __init time_early_init(void) { struct ptff_qto qto; struct ptff_qui qui; /* Initialize TOD steering parameters */ tod_steering_end = *(unsigned long long *) &tod_clock_base[1]; vdso_data->ts_end = tod_steering_end; if (!test_facility(28)) return; ptff(&ptff_function_mask, sizeof(ptff_function_mask), PTFF_QAF); /* get LPAR offset */ if (ptff_query(PTFF_QTO) && ptff(&qto, sizeof(qto), PTFF_QTO) == 0) lpar_offset = qto.tod_epoch_difference; /* get initial leap seconds */ if (ptff_query(PTFF_QUI) && ptff(&qui, sizeof(qui), PTFF_QUI) == 0) initial_leap_seconds = (unsigned long long) ((long) qui.old_leap * 4096000000L); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky130100.00%5100.00%
Total130100.00%5100.00%

/* * Scheduler clock - returns current time in nanosec units. */
unsigned long long notrace sched_clock(void) { return tod_to_ns(get_tod_clock_monotonic()); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky1270.59%125.00%
Heiko Carstens529.41%375.00%
Total17100.00%4100.00%

NOKPROBE_SYMBOL(sched_clock); /* * Monotonic_clock - returns # of nanoseconds passed since time_init() */
unsigned long long monotonic_clock(void) { return sched_clock(); }

Contributors

PersonTokensPropCommitsCommitProp
Jan Glauber13100.00%1100.00%
Total13100.00%1100.00%

EXPORT_SYMBOL(monotonic_clock);
static void ext_to_timespec64(unsigned char *clk, struct timespec64 *xt) { unsigned long long high, low, rem, sec, nsec; /* Split extendnd TOD clock to micro-seconds and sub-micro-seconds */ high = (*(unsigned long long *) clk) >> 4; low = (*(unsigned long long *)&clk[7]) << 4; /* Calculate seconds and nano-seconds */ sec = high; rem = do_div(sec, 1000000); nsec = (((low >> 32) + (rem << 32)) * 1000) >> 32; xt->tv_sec = sec; xt->tv_nsec = nsec; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky9988.39%350.00%
Linus Torvalds (pre-git)98.04%116.67%
John Stultz32.68%116.67%
Xunlei Pang10.89%116.67%
Total112100.00%6100.00%


void clock_comparator_work(void) { struct clock_event_device *cd; S390_lowcore.clock_comparator = clock_comparator_max; cd = this_cpu_ptr(&comparators); cd->event_handler(cd); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky1339.39%666.67%
Heiko Carstens1339.39%111.11%
Linus Torvalds (pre-git)515.15%111.11%
Christoph Lameter26.06%111.11%
Total33100.00%9100.00%


static int s390_next_event(unsigned long delta, struct clock_event_device *evt) { S390_lowcore.clock_comparator = get_tod_clock() + delta; set_clock_comparator(S390_lowcore.clock_comparator); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky2161.76%350.00%
Heiko Carstens1235.29%233.33%
Andrew Morton12.94%116.67%
Total34100.00%6100.00%

/* * Set up lowcore and control register of the current cpu to * enable TOD clock and clock comparator interrupts. */
void init_cpu_timer(void) { struct clock_event_device *cd; int cpu; S390_lowcore.clock_comparator = clock_comparator_max; set_clock_comparator(S390_lowcore.clock_comparator); cpu = smp_processor_id(); cd = &per_cpu(comparators, cpu); cd->name = "comparator"; cd->features = CLOCK_EVT_FEAT_ONESHOT; cd->mult = 16777; cd->shift = 12; cd->min_delta_ns = 1; cd->min_delta_ticks = 1; cd->max_delta_ns = LONG_MAX; cd->max_delta_ticks = ULONG_MAX; cd->rating = 400; cd->cpumask = cpumask_of(cpu); cd->set_next_event = s390_next_event; clockevents_register_device(cd); /* Enable clock comparator timer interrupt. */ __ctl_set_bit(0,11); /* Always allow the timing alert external interrupt. */ __ctl_set_bit(0, 4); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens9269.17%111.11%
Martin Schwidefsky2619.55%555.56%
Nicolai Stange129.02%111.11%
Andrew Morton21.50%111.11%
Rusty Russell10.75%111.11%
Total133100.00%9100.00%


static void clock_comparator_interrupt(struct ext_code ext_code, unsigned int param32, unsigned long param64) { inc_irq_stat(IRQEXT_CLK); if (S390_lowcore.clock_comparator == clock_comparator_max) set_clock_comparator(S390_lowcore.clock_comparator); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens2463.16%457.14%
Martin Schwidefsky1436.84%342.86%
Total38100.00%7100.00%

static void stp_timing_alert(struct stp_irq_parm *);
static void timing_alert_interrupt(struct ext_code ext_code, unsigned int param32, unsigned long param64) { inc_irq_stat(IRQEXT_TLA); if (param32 & 0x00038000) stp_timing_alert((struct stp_irq_parm *) &param32); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3280.00%240.00%
Heiko Carstens820.00%360.00%
Total40100.00%5100.00%

static void stp_reset(void);
void read_persistent_clock64(struct timespec64 *ts) { unsigned char clk[STORE_CLOCK_EXT_SIZE]; __u64 delta; delta = initial_leap_seconds + TOD_UNIX_EPOCH; get_tod_clock_ext(clk); *(__u64 *) &clk[1] -= delta; if (*(__u64 *) &clk[1] > delta) clk[0]--; ext_to_timespec64(clk, ts); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky6793.06%571.43%
Andrew Morton34.17%114.29%
Xunlei Pang22.78%114.29%
Total72100.00%7100.00%


void read_boot_clock64(struct timespec64 *ts) { unsigned char clk[STORE_CLOCK_EXT_SIZE]; __u64 delta; delta = initial_leap_seconds + TOD_UNIX_EPOCH; memcpy(clk, tod_clock_base, 16); *(__u64 *) &clk[1] -= delta; if (*(__u64 *) &clk[1] > delta) clk[0]--; ext_to_timespec64(clk, ts); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky7396.05%466.67%
Xunlei Pang22.63%116.67%
Andrew Morton11.32%116.67%
Total76100.00%6100.00%


static u64 read_tod_clock(struct clocksource *cs) { unsigned long long now, adj; preempt_disable(); /* protect from changes to steering parameters */ now = get_tod_clock(); adj = tod_steering_end - now; if (unlikely((s64) adj >= 0)) /* * manually steer by 1 cycle every 2^16 cycles. This * corresponds to shifting the tod delta by 15. 1s is * therefore steered in ~9h. The adjust will decrease * over time, until it finally reaches 0. */ now += (tod_steering_delta < 0) ? (adj >> 15) : -(adj >> 15); preempt_enable(); return now; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky6791.78%240.00%
Magnus Damm45.48%120.00%
Thomas Gleixner11.37%120.00%
Heiko Carstens11.37%120.00%
Total73100.00%5100.00%

static struct clocksource clocksource_tod = { .name = "tod", .rating = 400, .read = read_tod_clock, .mask = -1ULL, .mult = 1000, .shift = 12, .flags = CLOCK_SOURCE_IS_CONTINUOUS, };
struct clocksource * __init clocksource_default_clock(void) { return &clocksource_tod; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky14100.00%1100.00%
Total14100.00%1100.00%


void update_vsyscall(struct timekeeper *tk) { u64 nsecps; if (tk->tkr_mono.clock != &clocksource_tod) return; /* Make userspace gettimeofday spin until we're done. */ ++vdso_data->tb_update_count; smp_wmb(); vdso_data->xtime_tod_stamp = tk->tkr_mono.cycle_last; vdso_data->xtime_clock_sec = tk->xtime_sec; vdso_data->xtime_clock_nsec = tk->tkr_mono.xtime_nsec; vdso_data->wtom_clock_sec = tk->xtime_sec + tk->wall_to_monotonic.tv_sec; vdso_data->wtom_clock_nsec = tk->tkr_mono.xtime_nsec + + ((u64) tk->wall_to_monotonic.tv_nsec << tk->tkr_mono.shift); nsecps = (u64) NSEC_PER_SEC << tk->tkr_mono.shift; while (vdso_data->wtom_clock_nsec >= nsecps) { vdso_data->wtom_clock_nsec -= nsecps; vdso_data->wtom_clock_sec++; } vdso_data->xtime_coarse_sec = tk->xtime_sec; vdso_data->xtime_coarse_nsec = (long)(tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift); vdso_data->wtom_coarse_sec = vdso_data->xtime_coarse_sec + tk->wall_to_monotonic.tv_sec; vdso_data->wtom_coarse_nsec = vdso_data->xtime_coarse_nsec + tk->wall_to_monotonic.tv_nsec; while (vdso_data->wtom_coarse_nsec >= NSEC_PER_SEC) { vdso_data->wtom_coarse_nsec -= NSEC_PER_SEC; vdso_data->wtom_coarse_sec++; } vdso_data->tk_mult = tk->tkr_mono.mult; vdso_data->tk_shift = tk->tkr_mono.shift; smp_wmb(); ++vdso_data->tb_update_count; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky21788.93%444.44%
Peter Zijlstra104.10%111.11%
Thomas Gleixner83.28%111.11%
Hendrik Brueckner52.05%111.11%
John Stultz41.64%222.22%
Total244100.00%9100.00%

extern struct timezone sys_tz;
void update_vsyscall_tz(void) { vdso_data->tz_minuteswest = sys_tz.tz_minuteswest; vdso_data->tz_dsttime = sys_tz.tz_dsttime; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky23100.00%1100.00%
Total23100.00%1100.00%

/* * Initialize the TOD clock and the CPU timer of * the boot cpu. */
void __init time_init(void) { /* Reset time synchronization interfaces. */ stp_reset(); /* request the clock comparator external interrupt */ if (register_external_irq(EXT_IRQ_CLK_COMP, clock_comparator_interrupt)) panic("Couldn't request external interrupt 0x1004"); /* request the timing alert external interrupt */ if (register_external_irq(EXT_IRQ_TIMING_ALERT, timing_alert_interrupt)) panic("Couldn't request external interrupt 0x1406"); if (__clocksource_register(&clocksource_tod) != 0) panic("Could not register TOD clock source"); /* Enable TOD clock interrupts on the boot cpu. */ init_cpu_timer(); /* Enable cpu timer interrupts on the boot cpu. */ vtime_init(); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4569.23%666.67%
Andrew Morton1523.08%111.11%
Thomas Huth46.15%111.11%
John Stultz11.54%111.11%
Total65100.00%9100.00%

static DEFINE_PER_CPU(atomic_t, clock_sync_word); static DEFINE_MUTEX(clock_sync_mutex); static unsigned long clock_sync_flags; #define CLOCK_SYNC_HAS_STP 0 #define CLOCK_SYNC_STP 1 /* * The get_clock function for the physical clock. It will get the current * TOD clock, subtract the LPAR offset and write the result to *clock. * The function returns 0 if the clock is in sync with the external time * source. If the clock mode is local it will return -EOPNOTSUPP and * -EAGAIN if the clock is not in sync with the external reference. */
int get_phys_clock(unsigned long *clock) { atomic_t *sw_ptr; unsigned int sw0, sw1; sw_ptr = &get_cpu_var(clock_sync_word); sw0 = atomic_read(sw_ptr); *clock = get_tod_clock() - lpar_offset; sw1 = atomic_read(sw_ptr); put_cpu_var(clock_sync_word); if (sw0 == sw1 && (sw0 & 0x80000000U)) /* Success: time is in sync. */ return 0; if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) return -EOPNOTSUPP; if (!test_bit(CLOCK_SYNC_STP, &clock_sync_flags)) return -EACCES; return -EAGAIN; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky10297.14%350.00%
Heiko Carstens32.86%350.00%
Total105100.00%6100.00%

EXPORT_SYMBOL(get_phys_clock); /* * Make get_phys_clock() return -EAGAIN. */
static void disable_sync_clock(void *dummy) { atomic_t *sw_ptr = this_cpu_ptr(&clock_sync_word); /* * Clear the in-sync bit 2^31. All get_phys_clock calls will * fail until the sync bit is turned back on. In addition * increase the "sequence" counter to avoid the race of an * stp event and the complete recovery against get_phys_clock. */ atomic_andnot(0x80000000, sw_ptr); atomic_inc(sw_ptr); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky2987.88%240.00%
Christoph Lameter26.06%120.00%
Peter Zijlstra13.03%120.00%
David Hildenbrand13.03%120.00%
Total33100.00%5100.00%

/* * Make get_phys_clock() return 0 again. * Needs to be called from a context disabled for preemption. */
static void enable_sync_clock(void) { atomic_t *sw_ptr = this_cpu_ptr(&clock_sync_word); atomic_or(0x80000000, sw_ptr); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky2288.00%250.00%
Christoph Lameter28.00%125.00%
Peter Zijlstra14.00%125.00%
Total25100.00%4100.00%

/* * Function to check if the clock is in sync. */
static inline int check_sync_clock(void) { atomic_t *sw_ptr; int rc; sw_ptr = &get_cpu_var(clock_sync_word); rc = (atomic_read(sw_ptr) & 0x80000000U) != 0; put_cpu_var(clock_sync_word); return rc; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4497.78%150.00%
Heiko Carstens12.22%150.00%
Total45100.00%2100.00%

/* * Apply clock delta to the global data structures. * This is called once on the CPU that performed the clock sync. */
static void clock_sync_global(unsigned long long delta) { unsigned long now, adj; struct ptff_qto qto; /* Fixup the monotonic sched clock. */ *(unsigned long long *) &tod_clock_base[1] += delta; if (*(unsigned long long *) &tod_clock_base[1] < delta) /* Epoch overflow */ tod_clock_base[0]++; /* Adjust TOD steering parameters. */ vdso_data->tb_update_count++; now = get_tod_clock(); adj = tod_steering_end - now; if (unlikely((s64) adj >= 0)) /* Calculate how much of the old adjustment is left. */ tod_steering_delta = (tod_steering_delta < 0) ? -(adj >> 15) : (adj >> 15); tod_steering_delta += delta; if ((abs(tod_steering_delta) >> 48) != 0) panic("TOD clock sync offset %lli is too large to drift\n", tod_steering_delta); tod_steering_end = now + (abs(tod_steering_delta) << 15); vdso_data->ts_dir = (tod_steering_delta < 0) ? 0 : 1; vdso_data->ts_end = tod_steering_end; vdso_data->tb_update_count++; /* Update LPAR offset. */ if (ptff_query(PTFF_QTO) && ptff(&qto, sizeof(qto), PTFF_QTO) == 0) lpar_offset = qto.tod_epoch_difference; /* Call the TOD clock change notifier. */ atomic_notifier_call_chain(&s390_epoch_delta_notifier, 0, &delta); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky215100.00%3100.00%
Total215100.00%3100.00%

/* * Apply clock delta to the per-CPU data structures of this CPU. * This is called for each online CPU after the call to clock_sync_global. */
static void clock_sync_local(unsigned long long delta) { /* Add the delta to the clock comparator. */ if (S390_lowcore.clock_comparator != clock_comparator_max) { S390_lowcore.clock_comparator += delta; set_clock_comparator(S390_lowcore.clock_comparator); } /* Adjust the last_update_clock time-stamp. */ S390_lowcore.last_update_clock += delta; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky42100.00%3100.00%
Total42100.00%3100.00%

/* Single threaded workqueue used for stp sync events */ static struct workqueue_struct *time_sync_wq;
static void __init time_init_wq(void) { if (time_sync_wq) return; time_sync_wq = create_singlethread_workqueue("timesync"); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens21100.00%2100.00%
Total21100.00%2100.00%

struct clock_sync_data { atomic_t cpus; int in_sync; unsigned long long clock_delta; }; /* * Server Time Protocol (STP) code. */ static bool stp_online; static struct stp_sstpi stp_info; static void *stp_page; static void stp_work_fn(struct work_struct *work); static DEFINE_MUTEX(stp_work_mutex); static DECLARE_WORK(stp_work, stp_work_fn); static struct timer_list stp_timer;
static int __init early_parse_stp(char *p) { return kstrtobool(p, &stp_online); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky1785.00%266.67%
Kees Cook315.00%133.33%
Total20100.00%3100.00%

early_param("stp", early_parse_stp); /* * Reset STP attachment. */
static void __init stp_reset(void) { int rc; stp_page = (void *) get_zeroed_page(GFP_ATOMIC); rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000, NULL); if (rc == 0) set_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags); else if (stp_online) { pr_warn("The real or virtual hardware system does not provide an STP interface\n"); free_page((unsigned long) stp_page); stp_page = NULL; stp_online = false; } }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky6886.08%450.00%
Heiko Carstens911.39%337.50%
Joe Perches22.53%112.50%
Total79100.00%8100.00%


static void stp_timeout(unsigned long dummy) { queue_work(time_sync_wq, &stp_work); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky18100.00%1100.00%
Total18100.00%1100.00%


static int __init stp_init(void) { if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) return 0; setup_timer(&stp_timer, stp_timeout, 0UL); time_init_wq(); if (!stp_online) return 0; queue_work(time_sync_wq, &stp_work); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3869.09%375.00%
Heiko Carstens1730.91%125.00%
Total55100.00%4100.00%

arch_initcall(stp_init); /* * STP timing alert. There are three causes: * 1) timing status change * 2) link availability change * 3) time control parameter change * In all three cases we are only interested in the clock source state. * If a STP clock source is now available use it. */
static void stp_timing_alert(struct stp_irq_parm *intparm) { if (intparm->tsc || intparm->lac || intparm->tcpc) queue_work(time_sync_wq, &stp_work); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3090.91%266.67%
Heiko Carstens39.09%133.33%
Total33100.00%3100.00%

/* * STP sync check machine check. This is called when the timing state * changes from the synchronized state to the unsynchronized state. * After a STP sync check the clock is not in sync. The machine check * is broadcasted to all cpus at the same time. */
int stp_sync_check(void) { disable_sync_clock(NULL); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky1173.33%266.67%
Heiko Carstens426.67%133.33%
Total15100.00%3100.00%

/* * STP island condition machine check. This is called when an attached * server attempts to communicate over an STP link and the servers * have matching CTN ids and have a valid stratum-1 configuration * but the configurations do not match. */
int stp_island_check(void) { disable_sync_clock(NULL); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky1066.67%266.67%
Heiko Carstens533.33%133.33%
Total15100.00%3100.00%


void stp_queue_work(void) { queue_work(time_sync_wq, &stp_work); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens960.00%250.00%
Martin Schwidefsky640.00%250.00%
Total15100.00%4100.00%


static int stp_sync_clock(void *data) { struct clock_sync_data *sync = data; unsigned long long clock_delta; static int first; int rc; enable_sync_clock(); if (xchg(&first, 1) == 0) { /* Wait until all other cpus entered the sync function. */ while (atomic_read(&sync->cpus) != 0) cpu_relax(); rc = 0; if (stp_info.todoff[0] || stp_info.todoff[1] || stp_info.todoff[2] || stp_info.todoff[3] || stp_info.tmd != 2) { rc = chsc_sstpc(stp_page, STP_OP_SYNC, 0, &clock_delta); if (rc == 0) { sync->clock_delta = clock_delta; clock_sync_global(clock_delta); rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi)); if (rc == 0 && stp_info.tmd != 2) rc = -EAGAIN; } } sync->in_sync = rc ? -EAGAIN : 1; xchg(&first, 0); } else { /* Slave */ atomic_dec(&sync->cpus); /* Wait for in_sync to be set. */ while (READ_ONCE(sync->in_sync) == 0) __udelay(1); } if (sync->in_sync != 1) /* Didn't work. Clear per-cpu in sync bit again. */ disable_sync_clock(NULL); /* Apply clock delta to per-CPU fields of this CPU. */ clock_sync_local(sync->clock_delta); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky21086.42%555.56%
Heiko Carstens2711.11%111.11%
David Hildenbrand52.06%222.22%
Fan Zhang10.41%111.11%
Total243100.00%9100.00%

/* * STP work. Check for the STP state and take over the clock * synchronization if the STP clock source is usable. */
static void stp_work_fn(struct work_struct *work) { struct clock_sync_data stp_sync; int rc; /* prevent multiple execution. */ mutex_lock(&stp_work_mutex); if (!stp_online) { chsc_sstpc(stp_page, STP_OP_CTRL, 0x0000, NULL); del_timer_sync(&stp_timer); goto out_unlock; } rc = chsc_sstpc(stp_page, STP_OP_CTRL, 0xb0e0, NULL); if (rc) goto out_unlock; rc = chsc_sstpi(stp_page, &stp_info, sizeof(struct stp_sstpi)); if (rc || stp_info.c == 0) goto out_unlock; /* Skip synchronization if the clock is already in sync. */ if (check_sync_clock()) goto out_unlock; memset(&stp_sync, 0, sizeof(stp_sync)); cpus_read_lock(); atomic_set(&stp_sync.cpus, num_online_cpus() - 1); stop_machine_cpuslocked(stp_sync_clock, &stp_sync, cpu_online_mask); cpus_read_unlock(); if (!check_sync_clock()) /* * There is a usable clock but the synchonization failed. * Retry after a second. */ mod_timer(&stp_timer, jiffies + HZ); out_unlock: mutex_unlock(&stp_work_mutex); }

Contributors

PersonTokensPropCommitsCommitProp
Heiko Carstens10358.19%111.11%
Martin Schwidefsky7039.55%666.67%
Sebastian Andrzej Siewior31.69%111.11%
Motohiro Kosaki10.56%111.11%
Total177100.00%9100.00%

/* * STP subsys sysfs interface functions */ static struct bus_type stp_subsys = { .name = "stp", .dev_name = "stp", };
static ssize_t stp_ctn_id_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online) return -ENODATA; return sprintf(buf, "%016llx\n", *(unsigned long long *) stp_info.ctnid); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4185.42%250.00%
Andi Kleen48.33%125.00%
Kay Sievers36.25%125.00%
Total48100.00%4100.00%

static DEVICE_ATTR(ctn_id, 0400, stp_ctn_id_show, NULL);
static ssize_t stp_ctn_type_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online) return -ENODATA; return sprintf(buf, "%i\n", stp_info.ctn); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3482.93%250.00%
Andi Kleen49.76%125.00%
Kay Sievers37.32%125.00%
Total41100.00%4100.00%

static DEVICE_ATTR(ctn_type, 0400, stp_ctn_type_show, NULL);
static ssize_t stp_dst_offset_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online || !(stp_info.vbits & 0x2000)) return -ENODATA; return sprintf(buf, "%i\n", (int)(s16) stp_info.dsto); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4987.50%250.00%
Andi Kleen47.14%125.00%
Kay Sievers35.36%125.00%
Total56100.00%4100.00%

static DEVICE_ATTR(dst_offset, 0400, stp_dst_offset_show, NULL);
static ssize_t stp_leap_seconds_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online || !(stp_info.vbits & 0x8000)) return -ENODATA; return sprintf(buf, "%i\n", (int)(s16) stp_info.leaps); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4987.50%250.00%
Andi Kleen47.14%125.00%
Kay Sievers35.36%125.00%
Total56100.00%4100.00%

static DEVICE_ATTR(leap_seconds, 0400, stp_leap_seconds_show, NULL);
static ssize_t stp_stratum_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online) return -ENODATA; return sprintf(buf, "%i\n", (int)(s16) stp_info.stratum); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4085.11%250.00%
Andi Kleen48.51%125.00%
Kay Sievers36.38%125.00%
Total47100.00%4100.00%

static DEVICE_ATTR(stratum, 0400, stp_stratum_show, NULL);
static ssize_t stp_time_offset_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online || !(stp_info.vbits & 0x0800)) return -ENODATA; return sprintf(buf, "%i\n", (int) stp_info.tto); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4686.79%250.00%
Andi Kleen47.55%125.00%
Kay Sievers35.66%125.00%
Total53100.00%4100.00%

static DEVICE_ATTR(time_offset, 0400, stp_time_offset_show, NULL);
static ssize_t stp_time_zone_offset_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online || !(stp_info.vbits & 0x4000)) return -ENODATA; return sprintf(buf, "%i\n", (int)(s16) stp_info.tzo); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky4987.50%250.00%
Andi Kleen47.14%125.00%
Kay Sievers35.36%125.00%
Total56100.00%4100.00%

static DEVICE_ATTR(time_zone_offset, 0400, stp_time_zone_offset_show, NULL);
static ssize_t stp_timing_mode_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online) return -ENODATA; return sprintf(buf, "%i\n", stp_info.tmd); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3482.93%250.00%
Andi Kleen49.76%125.00%
Kay Sievers37.32%125.00%
Total41100.00%4100.00%

static DEVICE_ATTR(timing_mode, 0400, stp_timing_mode_show, NULL);
static ssize_t stp_timing_state_show(struct device *dev, struct device_attribute *attr, char *buf) { if (!stp_online) return -ENODATA; return sprintf(buf, "%i\n", stp_info.tst); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky3482.93%250.00%
Andi Kleen49.76%125.00%
Kay Sievers37.32%125.00%
Total41100.00%4100.00%

static DEVICE_ATTR(timing_state, 0400, stp_timing_state_show, NULL);
static ssize_t stp_online_show(struct device *dev, struct device_attribute *attr, char *buf) { return sprintf(buf, "%i\n", stp_online); }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky2376.67%250.00%
Andi Kleen413.33%125.00%
Kay Sievers310.00%125.00%
Total30100.00%4100.00%


static ssize_t stp_online_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { unsigned int value; value = simple_strtoul(buf, NULL, 0); if (value != 0 && value != 1) return -EINVAL; if (!test_bit(CLOCK_SYNC_HAS_STP, &clock_sync_flags)) return -EOPNOTSUPP; mutex_lock(&clock_sync_mutex); stp_online = value; if (stp_online) set_bit(CLOCK_SYNC_STP, &clock_sync_flags); else clear_bit(CLOCK_SYNC_STP, &clock_sync_flags); queue_work(time_sync_wq, &stp_work); mutex_unlock(&clock_sync_mutex); return count; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky10691.38%350.00%
Andi Kleen43.45%116.67%
Kay Sievers32.59%116.67%
Heiko Carstens32.59%116.67%
Total116100.00%6100.00%

/* * Can't use DEVICE_ATTR because the attribute should be named * stp/online but dev_attr_online already exists in this file .. */ static struct device_attribute dev_attr_stp_online = { .attr = { .name = "online", .mode = 0600 }, .show = stp_online_show, .store = stp_online_store, }; static struct device_attribute *stp_attributes[] = { &dev_attr_ctn_id, &dev_attr_ctn_type, &dev_attr_dst_offset, &dev_attr_leap_seconds, &dev_attr_stp_online, &dev_attr_stratum, &dev_attr_time_offset, &dev_attr_time_zone_offset, &dev_attr_timing_mode, &dev_attr_timing_state, NULL };
static int __init stp_init_sysfs(void) { struct device_attribute **attr; int rc; rc = subsys_system_register(&stp_subsys, NULL); if (rc) goto out; for (attr = stp_attributes; *attr; attr++) { rc = device_create_file(stp_subsys.dev_root, *attr); if (rc) goto out_unreg; } return 0; out_unreg: for (; attr >= stp_attributes; attr--) device_remove_file(stp_subsys.dev_root, *attr); bus_unregister(&stp_subsys); out: return rc; }

Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky8985.58%266.67%
Kay Sievers1514.42%133.33%
Total104100.00%3100.00%

device_initcall(stp_init_sysfs);

Overall Contributors

PersonTokensPropCommitsCommitProp
Martin Schwidefsky284879.13%3939.39%
Heiko Carstens40311.20%2222.22%
Kay Sievers802.22%11.01%
Linus Torvalds (pre-git)581.61%11.01%
Andi Kleen441.22%11.01%
Andrew Morton300.83%22.02%
Jan Glauber190.53%11.01%
Peter Zijlstra120.33%22.02%
Nicolai Stange120.33%11.01%
David Hildenbrand110.31%33.03%
Thomas Gleixner110.31%33.03%
Fan Zhang110.31%11.01%
John Stultz90.25%44.04%
Christoph Lameter60.17%11.01%
Hendrik Brueckner50.14%11.01%
Xunlei Pang50.14%11.01%
Magnus Damm40.11%11.01%
Thomas Huth40.11%11.01%
Kees Cook40.11%11.01%
Linus Torvalds40.11%22.02%
Sebastian Andrzej Siewior30.08%11.01%
Ingo Molnar30.08%11.01%
Tejun Heo30.08%11.01%
Joe Perches20.06%11.01%
Ralf Bächle20.06%11.01%
Arnaldo Carvalho de Melo20.06%11.01%
Paul Gortmaker10.03%11.01%
Christian Bornträger10.03%11.01%
Rusty Russell10.03%11.01%
Motohiro Kosaki10.03%11.01%
Total3599100.00%99100.00%
Directory: arch/s390/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.