mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 06:25:08 +07:00
315f28fa3a
With the storage array in place it's now trivial to support CLOCK_TAI in the vdso. Extend the base time storage array and add the update code. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Tested-by: Matt Rickard <matt@softrans.com.au> Acked-by: Andy Lutomirski <luto@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephen Boyd <sboyd@kernel.org> Cc: John Stultz <john.stultz@linaro.org> Cc: Florian Weimer <fweimer@redhat.com> Cc: "K. Y. Srinivasan" <kys@microsoft.com> Cc: Vitaly Kuznetsov <vkuznets@redhat.com> Cc: devel@linuxdriverproject.org Cc: virtualization@lists.linux-foundation.org Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Juergen Gross <jgross@suse.com> Link: https://lkml.kernel.org/r/20180917130707.823878601@linutronix.de
84 lines
2.4 KiB
C
84 lines
2.4 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
|
|
* Copyright 2003 Andi Kleen, SuSE Labs.
|
|
*
|
|
* Modified for x86 32 bit architecture by
|
|
* Stefani Seibold <stefani@seibold.net>
|
|
* sponsored by Rohde & Schwarz GmbH & Co. KG Munich/Germany
|
|
*
|
|
* Thanks to hpa@transmeta.com for some useful hint.
|
|
* Special thanks to Ingo Molnar for his early experience with
|
|
* a different vsyscall implementation for Linux/IA32 and for the name.
|
|
*
|
|
*/
|
|
|
|
#include <linux/timekeeper_internal.h>
|
|
#include <asm/vgtod.h>
|
|
#include <asm/vvar.h>
|
|
|
|
int vclocks_used __read_mostly;
|
|
|
|
DEFINE_VVAR(struct vsyscall_gtod_data, vsyscall_gtod_data);
|
|
|
|
void update_vsyscall_tz(void)
|
|
{
|
|
vsyscall_gtod_data.tz_minuteswest = sys_tz.tz_minuteswest;
|
|
vsyscall_gtod_data.tz_dsttime = sys_tz.tz_dsttime;
|
|
}
|
|
|
|
void update_vsyscall(struct timekeeper *tk)
|
|
{
|
|
int vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
|
|
struct vsyscall_gtod_data *vdata = &vsyscall_gtod_data;
|
|
struct vgtod_ts *base;
|
|
u64 nsec;
|
|
|
|
/* Mark the new vclock used. */
|
|
BUILD_BUG_ON(VCLOCK_MAX >= 32);
|
|
WRITE_ONCE(vclocks_used, READ_ONCE(vclocks_used) | (1 << vclock_mode));
|
|
|
|
gtod_write_begin(vdata);
|
|
|
|
/* copy vsyscall data */
|
|
vdata->vclock_mode = vclock_mode;
|
|
vdata->cycle_last = tk->tkr_mono.cycle_last;
|
|
vdata->mask = tk->tkr_mono.mask;
|
|
vdata->mult = tk->tkr_mono.mult;
|
|
vdata->shift = tk->tkr_mono.shift;
|
|
|
|
base = &vdata->basetime[CLOCK_REALTIME];
|
|
base->sec = tk->xtime_sec;
|
|
base->nsec = tk->tkr_mono.xtime_nsec;
|
|
|
|
base = &vdata->basetime[CLOCK_TAI];
|
|
base->sec = tk->xtime_sec + (s64)tk->tai_offset;
|
|
base->nsec = tk->tkr_mono.xtime_nsec;
|
|
|
|
base = &vdata->basetime[CLOCK_MONOTONIC];
|
|
base->sec = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
|
|
nsec = tk->tkr_mono.xtime_nsec;
|
|
nsec += ((u64)tk->wall_to_monotonic.tv_nsec << tk->tkr_mono.shift);
|
|
while (nsec >= (((u64)NSEC_PER_SEC) << tk->tkr_mono.shift)) {
|
|
nsec -= ((u64)NSEC_PER_SEC) << tk->tkr_mono.shift;
|
|
base->sec++;
|
|
}
|
|
base->nsec = nsec;
|
|
|
|
base = &vdata->basetime[CLOCK_REALTIME_COARSE];
|
|
base->sec = tk->xtime_sec;
|
|
base->nsec = tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift;
|
|
|
|
base = &vdata->basetime[CLOCK_MONOTONIC_COARSE];
|
|
base->sec = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
|
|
nsec = tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift;
|
|
nsec += tk->wall_to_monotonic.tv_nsec;
|
|
while (nsec >= NSEC_PER_SEC) {
|
|
nsec -= NSEC_PER_SEC;
|
|
base->sec++;
|
|
}
|
|
base->nsec = nsec;
|
|
|
|
gtod_write_end(vdata);
|
|
}
|