blob: 941384fbd39c503b79bd9ebdebe3ef35772a6e7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/cputime.h
3 *
4 * (C) Copyright IBM Corp. 2004
5 *
6 * Author: Martin Schwidefsky <schwidefsky@de.ibm.com>
7 */
8
9#ifndef _S390_CPUTIME_H
10#define _S390_CPUTIME_H
11
12#include <asm/div64.h>
13
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010014/* We want to use full resolution of the CPU timer: 2**-12 micro-seconds. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16typedef unsigned long long cputime_t;
17typedef unsigned long long cputime64_t;
18
19#ifndef __s390x__
20
21static inline unsigned int
22__div(unsigned long long n, unsigned int base)
23{
24 register_pair rp;
25
26 rp.pair = n >> 1;
27 asm ("dr %0,%1" : "+d" (rp) : "d" (base >> 1));
28 return rp.subreg.odd;
29}
30
31#else /* __s390x__ */
32
33static inline unsigned int
34__div(unsigned long long n, unsigned int base)
35{
36 return n / base;
37}
38
39#endif /* __s390x__ */
40
41#define cputime_zero (0ULL)
42#define cputime_max ((~0UL >> 1) - 1)
43#define cputime_add(__a, __b) ((__a) + (__b))
44#define cputime_sub(__a, __b) ((__a) - (__b))
45#define cputime_div(__a, __n) ({ \
46 unsigned long long __div = (__a); \
47 do_div(__div,__n); \
48 __div; \
49})
50#define cputime_halve(__a) ((__a) >> 1)
51#define cputime_eq(__a, __b) ((__a) == (__b))
52#define cputime_gt(__a, __b) ((__a) > (__b))
53#define cputime_ge(__a, __b) ((__a) >= (__b))
54#define cputime_lt(__a, __b) ((__a) < (__b))
55#define cputime_le(__a, __b) ((__a) <= (__b))
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010056#define cputime_to_jiffies(__ct) (__div((__ct), 4096000000ULL / HZ))
Michael Neuling06b8e872008-02-06 01:36:12 -080057#define cputime_to_scaled(__ct) (__ct)
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010058#define jiffies_to_cputime(__hz) ((cputime_t)(__hz) * (4096000000ULL / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define cputime64_zero (0ULL)
61#define cputime64_add(__a, __b) ((__a) + (__b))
62#define cputime_to_cputime64(__ct) (__ct)
63
64static inline u64
65cputime64_to_jiffies64(cputime64_t cputime)
66{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010067 do_div(cputime, 4096000000ULL / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return cputime;
69}
70
71/*
72 * Convert cputime to milliseconds and back.
73 */
74static inline unsigned int
75cputime_to_msecs(const cputime_t cputime)
76{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010077 return __div(cputime, 4096000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80static inline cputime_t
81msecs_to_cputime(const unsigned int m)
82{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010083 return (cputime_t) m * 4096000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86/*
87 * Convert cputime to milliseconds and back.
88 */
89static inline unsigned int
90cputime_to_secs(const cputime_t cputime)
91{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010092 return __div(cputime, 2048000000) >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static inline cputime_t
96secs_to_cputime(const unsigned int s)
97{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010098 return (cputime_t) s * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101/*
102 * Convert cputime to timespec and back.
103 */
104static inline cputime_t
105timespec_to_cputime(const struct timespec *value)
106{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100107 return value->tv_nsec * 4096 / 1000 + (u64) value->tv_sec * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110static inline void
111cputime_to_timespec(const cputime_t cputime, struct timespec *value)
112{
113#ifndef __s390x__
114 register_pair rp;
115
116 rp.pair = cputime >> 1;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100117 asm ("dr %0,%1" : "+d" (rp) : "d" (2048000000UL));
118 value->tv_nsec = rp.subreg.even * 1000 / 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 value->tv_sec = rp.subreg.odd;
120#else
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100121 value->tv_nsec = (cputime % 4096000000ULL) * 1000 / 4096;
122 value->tv_sec = cputime / 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif
124}
125
126/*
127 * Convert cputime to timeval and back.
128 * Since cputime and timeval have the same resolution (microseconds)
129 * this is easy.
130 */
131static inline cputime_t
132timeval_to_cputime(const struct timeval *value)
133{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100134 return value->tv_usec * 4096 + (u64) value->tv_sec * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static inline void
138cputime_to_timeval(const cputime_t cputime, struct timeval *value)
139{
140#ifndef __s390x__
141 register_pair rp;
142
143 rp.pair = cputime >> 1;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100144 asm ("dr %0,%1" : "+d" (rp) : "d" (2048000000UL));
145 value->tv_usec = rp.subreg.even / 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 value->tv_sec = rp.subreg.odd;
147#else
Christian Borntraegerd5cd0342009-02-19 15:19:00 +0100148 value->tv_usec = (cputime % 4096000000ULL) / 4096;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100149 value->tv_sec = cputime / 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#endif
151}
152
153/*
154 * Convert cputime to clock and back.
155 */
156static inline clock_t
157cputime_to_clock_t(cputime_t cputime)
158{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100159 return __div(cputime, 4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162static inline cputime_t
163clock_t_to_cputime(unsigned long x)
164{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100165 return (cputime_t) x * (4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/*
169 * Convert cputime64 to clock.
170 */
171static inline clock_t
172cputime64_to_clock_t(cputime64_t cputime)
173{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100174 return __div(cputime, 4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Martin Schwidefskye1c80532009-04-23 13:58:08 +0200177cputime64_t s390_get_idle_time(int cpu);
178
179#define arch_idle_time(cpu) s390_get_idle_time(cpu)
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif /* _S390_CPUTIME_H */