1*b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 20aa366f3STony Luck /* 30aa366f3STony Luck * (c) Copyright 2007 Hewlett-Packard Development Company, L.P. 40aa366f3STony Luck * Contributed by Peter Keilty <peter.keilty@hp.com> 50aa366f3STony Luck * 60aa366f3STony Luck * fsyscall gettimeofday data 70aa366f3STony Luck */ 80aa366f3STony Luck 90aa366f3STony Luck struct fsyscall_gtod_data_t { 1074a622beSThomas Gleixner seqcount_t seq; 110aa366f3STony Luck struct timespec wall_time; 120aa366f3STony Luck struct timespec monotonic_time; 13a5a1d1c2SThomas Gleixner u64 clk_mask; 140aa366f3STony Luck u32 clk_mult; 150aa366f3STony Luck u32 clk_shift; 160aa366f3STony Luck void *clk_fsys_mmio; 17a5a1d1c2SThomas Gleixner u64 clk_cycle_last; 18acffc84aSHidetoshi Seto } ____cacheline_aligned; 190aa366f3STony Luck 200aa366f3STony Luck struct itc_jitter_data_t { 210aa366f3STony Luck int itc_jitter; 22a5a1d1c2SThomas Gleixner u64 itc_lastcycle; 23acffc84aSHidetoshi Seto } ____cacheline_aligned; 240aa366f3STony Luck 25