blob: 945b7cdf4934261e80e73bdc81f4ff6e9b617064 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Heiko Carstens17eb7a52011-01-05 12:47:26 +010014#include <asm/lowcore.h>
15
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +020016/* The value of the TOD clock for 1.1.1970. */
17#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
18
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010019/* Inline functions for clock register access. */
20static inline int set_clock(__u64 time)
21{
22 int cc;
23
24 asm volatile(
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010025 " sck %1\n"
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010026 " ipm %0\n"
27 " srl %0,28\n"
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010028 : "=d" (cc) : "Q" (time) : "cc");
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010029 return cc;
30}
31
32static inline int store_clock(__u64 *time)
33{
34 int cc;
35
36 asm volatile(
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010037 " stck %1\n"
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010038 " ipm %0\n"
39 " srl %0,28\n"
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010040 : "=d" (cc), "=Q" (*time) : : "cc");
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010041 return cc;
42}
43
44static inline void set_clock_comparator(__u64 time)
45{
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010046 asm volatile("sckc %0" : : "Q" (time));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010047}
48
49static inline void store_clock_comparator(__u64 *time)
50{
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010051 asm volatile("stckc %0" : "=Q" (*time));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010052}
53
Heiko Carstens17eb7a52011-01-05 12:47:26 +010054void clock_comparator_work(void);
55
56static inline unsigned long long local_tick_disable(void)
57{
58 unsigned long long old;
59
60 old = S390_lowcore.clock_comparator;
61 S390_lowcore.clock_comparator = -1ULL;
Heiko Carstens545b2882011-01-05 12:47:27 +010062 set_clock_comparator(S390_lowcore.clock_comparator);
Heiko Carstens17eb7a52011-01-05 12:47:26 +010063 return old;
64}
65
66static inline void local_tick_enable(unsigned long long comp)
67{
68 S390_lowcore.clock_comparator = comp;
Heiko Carstens545b2882011-01-05 12:47:27 +010069 set_clock_comparator(S390_lowcore.clock_comparator);
Heiko Carstens17eb7a52011-01-05 12:47:26 +010070}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
73
74typedef unsigned long long cycles_t;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static inline unsigned long long get_clock (void)
77{
78 unsigned long long clk;
79
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020080 asm volatile("stck %0" : "=Q" (clk) : : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return clk;
82}
83
Michael Holzheu57b28f62010-05-17 10:00:20 +020084static inline void get_clock_ext(char *clk)
85{
86 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
87}
88
Jan Glauber80376f32011-10-30 15:17:04 +010089static inline unsigned long long get_clock_fast(void)
90{
91 unsigned long long clk;
92
Jan Glaubercfa1e7e2011-11-14 11:19:06 +010093 if (MACHINE_HAS_STCKF)
Jan Glauber80376f32011-10-30 15:17:04 +010094 asm volatile(".insn s,0xb27c0000,%0" : "=Q" (clk) : : "cc");
95 else
96 clk = get_clock();
97 return clk;
98}
99
Jan Glauberc0015f92008-04-17 07:46:16 +0200100static inline unsigned long long get_clock_xt(void)
Jan Glauber1b278292007-02-05 21:18:22 +0100101{
Jan Glauberc0015f92008-04-17 07:46:16 +0200102 unsigned char clk[16];
Michael Holzheu57b28f62010-05-17 10:00:20 +0200103 get_clock_ext(clk);
Jan Glauberc0015f92008-04-17 07:46:16 +0200104 return *((unsigned long long *)&clk[1]);
Jan Glauber1b278292007-02-05 21:18:22 +0100105}
106
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200107static inline cycles_t get_cycles(void)
108{
109 return (cycles_t) get_clock() >> 2;
110}
111
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100112int get_sync_clock(unsigned long long *clock);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100113void init_cpu_timer(void);
Heiko Carstensa8061702008-04-17 07:46:26 +0200114unsigned long long monotonic_clock(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100115
Christof Schmittb592e892009-08-18 15:43:31 +0200116void tod_to_timeval(__u64, struct timespec *);
117
118static inline
119void stck_to_timespec(unsigned long long stck, struct timespec *ts)
120{
121 tod_to_timeval(stck - TOD_UNIX_EPOCH, ts);
122}
123
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +0200124extern u64 sched_clock_base_cc;
125
Heiko Carstens05e7ff72009-09-11 10:28:31 +0200126/**
127 * get_clock_monotonic - returns current time in clock rate units
128 *
129 * The caller must ensure that preemption is disabled.
130 * The clock and sched_clock_base get changed via stop_machine.
131 * Therefore preemption must be disabled when calling this
132 * function, otherwise the returned value is not guaranteed to
133 * be monotonic.
134 */
135static inline unsigned long long get_clock_monotonic(void)
136{
137 return get_clock_xt() - sched_clock_base_cc;
138}
139
Heiko Carstens2017a7c2013-01-14 16:55:55 +0100140/**
141 * tod_to_ns - convert a TOD format value to nanoseconds
142 * @todval: to be converted TOD format value
143 * Returns: number of nanoseconds that correspond to the TOD format value
144 *
145 * Converting a 64 Bit TOD format value to nanoseconds means that the value
146 * must be divided by 4.096. In order to achieve that we multiply with 125
147 * and divide by 512:
148 *
149 * ns = (todval * 125) >> 9;
150 *
151 * In order to avoid an overflow with the multiplication we can rewrite this.
152 * With a split todval == 2^32 * th + tl (th upper 32 bits, tl lower 32 bits)
153 * we end up with
154 *
155 * ns = ((2^32 * th + tl) * 125 ) >> 9;
156 * -> ns = (2^23 * th * 125) + ((tl * 125) >> 9);
157 *
158 */
159static inline unsigned long long tod_to_ns(unsigned long long todval)
160{
161 unsigned long long ns;
162
163 ns = ((todval >> 32) << 23) * 125;
164 ns += ((todval & 0xffffffff) * 125) >> 9;
165 return ns;
166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#endif