Documentation/filesystems/vfs.txt: fix ->repeasepage() description
[linux-2.6/next.git] / arch / s390 / include / asm / timex.h
blob09d345a701dc307fe4ed7e02728d734b1aa79622
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 /* The value of the TOD clock for 1.1.1970. */
15 #define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
17 /* Inline functions for clock register access. */
18 static inline int set_clock(__u64 time)
20 int cc;
22 asm volatile(
23 " sck %1\n"
24 " ipm %0\n"
25 " srl %0,28\n"
26 : "=d" (cc) : "Q" (time) : "cc");
27 return cc;
30 static inline int store_clock(__u64 *time)
32 int cc;
34 asm volatile(
35 " stck %1\n"
36 " ipm %0\n"
37 " srl %0,28\n"
38 : "=d" (cc), "=Q" (*time) : : "cc");
39 return cc;
42 static inline void set_clock_comparator(__u64 time)
44 asm volatile("sckc %0" : : "Q" (time));
47 static inline void store_clock_comparator(__u64 *time)
49 asm volatile("stckc %0" : "=Q" (*time));
52 #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
54 typedef unsigned long long cycles_t;
56 static inline unsigned long long get_clock (void)
58 unsigned long long clk;
60 asm volatile("stck %0" : "=Q" (clk) : : "cc");
61 return clk;
64 static inline void get_clock_ext(char *clk)
66 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
69 static inline unsigned long long get_clock_xt(void)
71 unsigned char clk[16];
72 get_clock_ext(clk);
73 return *((unsigned long long *)&clk[1]);
76 static inline cycles_t get_cycles(void)
78 return (cycles_t) get_clock() >> 2;
81 int get_sync_clock(unsigned long long *clock);
82 void init_cpu_timer(void);
83 unsigned long long monotonic_clock(void);
85 void tod_to_timeval(__u64, struct timespec *);
87 static inline
88 void stck_to_timespec(unsigned long long stck, struct timespec *ts)
90 tod_to_timeval(stck - TOD_UNIX_EPOCH, ts);
93 extern u64 sched_clock_base_cc;
95 /**
96 * get_clock_monotonic - returns current time in clock rate units
98 * The caller must ensure that preemption is disabled.
99 * The clock and sched_clock_base get changed via stop_machine.
100 * Therefore preemption must be disabled when calling this
101 * function, otherwise the returned value is not guaranteed to
102 * be monotonic.
104 static inline unsigned long long get_clock_monotonic(void)
106 return get_clock_xt() - sched_clock_base_cc;
109 #endif