Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-btrfs-devel.git] / arch / s390 / include / asm / timex.h
blob88829a40af6f56e4dd67d70ceb289e0fe9faf13b
1 /*
2 * include/asm-s390/timex.h
4 * S390 version
5 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Derived from "include/asm-i386/timex.h"
8 * Copyright (C) 1992, Linus Torvalds
9 */
11 #ifndef _ASM_S390_TIMEX_H
12 #define _ASM_S390_TIMEX_H
14 #include <asm/lowcore.h>
16 /* The value of the TOD clock for 1.1.1970. */
17 #define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
19 /* Inline functions for clock register access. */
20 static inline int set_clock(__u64 time)
22 int cc;
24 asm volatile(
25 " sck %1\n"
26 " ipm %0\n"
27 " srl %0,28\n"
28 : "=d" (cc) : "Q" (time) : "cc");
29 return cc;
32 static inline int store_clock(__u64 *time)
34 int cc;
36 asm volatile(
37 " stck %1\n"
38 " ipm %0\n"
39 " srl %0,28\n"
40 : "=d" (cc), "=Q" (*time) : : "cc");
41 return cc;
44 static inline void set_clock_comparator(__u64 time)
46 asm volatile("sckc %0" : : "Q" (time));
49 static inline void store_clock_comparator(__u64 *time)
51 asm volatile("stckc %0" : "=Q" (*time));
54 void clock_comparator_work(void);
56 static inline unsigned long long local_tick_disable(void)
58 unsigned long long old;
60 old = S390_lowcore.clock_comparator;
61 S390_lowcore.clock_comparator = -1ULL;
62 set_clock_comparator(S390_lowcore.clock_comparator);
63 return old;
66 static inline void local_tick_enable(unsigned long long comp)
68 S390_lowcore.clock_comparator = comp;
69 set_clock_comparator(S390_lowcore.clock_comparator);
72 #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
74 typedef unsigned long long cycles_t;
76 static inline unsigned long long get_clock (void)
78 unsigned long long clk;
80 asm volatile("stck %0" : "=Q" (clk) : : "cc");
81 return clk;
84 static inline void get_clock_ext(char *clk)
86 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
89 static inline unsigned long long get_clock_xt(void)
91 unsigned char clk[16];
92 get_clock_ext(clk);
93 return *((unsigned long long *)&clk[1]);
96 static inline cycles_t get_cycles(void)
98 return (cycles_t) get_clock() >> 2;
101 int get_sync_clock(unsigned long long *clock);
102 void init_cpu_timer(void);
103 unsigned long long monotonic_clock(void);
105 void tod_to_timeval(__u64, struct timespec *);
107 static inline
108 void stck_to_timespec(unsigned long long stck, struct timespec *ts)
110 tod_to_timeval(stck - TOD_UNIX_EPOCH, ts);
113 extern u64 sched_clock_base_cc;
116 * get_clock_monotonic - returns current time in clock rate units
118 * The caller must ensure that preemption is disabled.
119 * The clock and sched_clock_base get changed via stop_machine.
120 * Therefore preemption must be disabled when calling this
121 * function, otherwise the returned value is not guaranteed to
122 * be monotonic.
124 static inline unsigned long long get_clock_monotonic(void)
126 return get_clock_xt() - sched_clock_base_cc;
129 #endif