| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  include/asm-s390/timex.h | 
 | 3 |  * | 
 | 4 |  *  S390 version | 
 | 5 |  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation | 
 | 6 |  * | 
 | 7 |  *  Derived from "include/asm-i386/timex.h" | 
 | 8 |  *    Copyright (C) 1992, Linus Torvalds | 
 | 9 |  */ | 
 | 10 |  | 
 | 11 | #ifndef _ASM_S390_TIMEX_H | 
 | 12 | #define _ASM_S390_TIMEX_H | 
 | 13 |  | 
| Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 14 | /* The value of the TOD clock for 1.1.1970. */ | 
 | 15 | #define TOD_UNIX_EPOCH 0x7d91048bca000000ULL | 
 | 16 |  | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 17 | /* Inline functions for clock register access. */ | 
 | 18 | static inline int set_clock(__u64 time) | 
 | 19 | { | 
 | 20 | 	int cc; | 
 | 21 |  | 
 | 22 | 	asm volatile( | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 23 | 		"   sck   %1\n" | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 24 | 		"   ipm   %0\n" | 
 | 25 | 		"   srl   %0,28\n" | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 26 | 		: "=d" (cc) : "Q" (time) : "cc"); | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 27 | 	return cc; | 
 | 28 | } | 
 | 29 |  | 
 | 30 | static inline int store_clock(__u64 *time) | 
 | 31 | { | 
 | 32 | 	int cc; | 
 | 33 |  | 
 | 34 | 	asm volatile( | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 35 | 		"   stck  %1\n" | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 36 | 		"   ipm   %0\n" | 
 | 37 | 		"   srl   %0,28\n" | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 38 | 		: "=d" (cc), "=Q" (*time) : : "cc"); | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 39 | 	return cc; | 
 | 40 | } | 
 | 41 |  | 
 | 42 | static inline void set_clock_comparator(__u64 time) | 
 | 43 | { | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 44 | 	asm volatile("sckc %0" : : "Q" (time)); | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 45 | } | 
 | 46 |  | 
 | 47 | static inline void store_clock_comparator(__u64 *time) | 
 | 48 | { | 
| Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 49 | 	asm volatile("stckc %0" : "=Q" (*time)); | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 50 | } | 
 | 51 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #define CLOCK_TICK_RATE	1193180 /* Underlying HZ */ | 
 | 53 |  | 
 | 54 | typedef unsigned long long cycles_t; | 
 | 55 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static inline unsigned long long get_clock (void) | 
 | 57 | { | 
 | 58 | 	unsigned long long clk; | 
 | 59 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 60 | 	asm volatile("stck %0" : "=Q" (clk) : : "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | 	return clk; | 
 | 62 | } | 
 | 63 |  | 
| Jan Glauber | c0015f9 | 2008-04-17 07:46:16 +0200 | [diff] [blame] | 64 | static inline unsigned long long get_clock_xt(void) | 
| Jan Glauber | 1b27829 | 2007-02-05 21:18:22 +0100 | [diff] [blame] | 65 | { | 
| Jan Glauber | c0015f9 | 2008-04-17 07:46:16 +0200 | [diff] [blame] | 66 | 	unsigned char clk[16]; | 
| Jan Glauber | 1b27829 | 2007-02-05 21:18:22 +0100 | [diff] [blame] | 67 |  | 
| Jan Glauber | c0015f9 | 2008-04-17 07:46:16 +0200 | [diff] [blame] | 68 | 	asm volatile("stcke %0" : "=Q" (clk) : : "cc"); | 
| Jan Glauber | c0015f9 | 2008-04-17 07:46:16 +0200 | [diff] [blame] | 69 | 	return *((unsigned long long *)&clk[1]); | 
| Jan Glauber | 1b27829 | 2007-02-05 21:18:22 +0100 | [diff] [blame] | 70 | } | 
 | 71 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 72 | static inline cycles_t get_cycles(void) | 
 | 73 | { | 
 | 74 | 	return (cycles_t) get_clock() >> 2; | 
 | 75 | } | 
 | 76 |  | 
| Martin Schwidefsky | d54853e | 2007-02-05 21:18:19 +0100 | [diff] [blame] | 77 | int get_sync_clock(unsigned long long *clock); | 
| Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 78 | void init_cpu_timer(void); | 
| Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 79 | unsigned long long monotonic_clock(void); | 
| Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 80 |  | 
| Christof Schmitt | b592e89 | 2009-08-18 15:43:31 +0200 | [diff] [blame] | 81 | void tod_to_timeval(__u64, struct timespec *); | 
 | 82 |  | 
 | 83 | static inline | 
 | 84 | void stck_to_timespec(unsigned long long stck, struct timespec *ts) | 
 | 85 | { | 
 | 86 | 	tod_to_timeval(stck - TOD_UNIX_EPOCH, ts); | 
 | 87 | } | 
 | 88 |  | 
| Martin Schwidefsky | b6112cc | 2009-04-14 15:36:28 +0200 | [diff] [blame] | 89 | extern u64 sched_clock_base_cc; | 
 | 90 |  | 
| Heiko Carstens | 05e7ff7 | 2009-09-11 10:28:31 +0200 | [diff] [blame] | 91 | /** | 
 | 92 |  * get_clock_monotonic - returns current time in clock rate units | 
 | 93 |  * | 
 | 94 |  * The caller must ensure that preemption is disabled. | 
 | 95 |  * The clock and sched_clock_base get changed via stop_machine. | 
 | 96 |  * Therefore preemption must be disabled when calling this | 
 | 97 |  * function, otherwise the returned value is not guaranteed to | 
 | 98 |  * be monotonic. | 
 | 99 |  */ | 
 | 100 | static inline unsigned long long get_clock_monotonic(void) | 
 | 101 | { | 
 | 102 | 	return get_clock_xt() - sched_clock_base_cc; | 
 | 103 | } | 
 | 104 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #endif |