blob: b9acaaa175d8af35a25ba42d8157f5f5bec299df [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
Martin Schwidefsky76d4e002009-06-12 10:26:21 +020012#include <linux/types.h>
13#include <linux/percpu.h>
14#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/div64.h>
16
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010017/* We want to use full resolution of the CPU timer: 2**-12 micro-seconds. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19typedef unsigned long long cputime_t;
20typedef unsigned long long cputime64_t;
21
22#ifndef __s390x__
23
24static inline unsigned int
25__div(unsigned long long n, unsigned int base)
26{
27 register_pair rp;
28
29 rp.pair = n >> 1;
30 asm ("dr %0,%1" : "+d" (rp) : "d" (base >> 1));
31 return rp.subreg.odd;
32}
33
34#else /* __s390x__ */
35
36static inline unsigned int
37__div(unsigned long long n, unsigned int base)
38{
39 return n / base;
40}
41
42#endif /* __s390x__ */
43
44#define cputime_zero (0ULL)
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +020045#define cputime_one_jiffy jiffies_to_cputime(1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define cputime_max ((~0UL >> 1) - 1)
47#define cputime_add(__a, __b) ((__a) + (__b))
48#define cputime_sub(__a, __b) ((__a) - (__b))
49#define cputime_div(__a, __n) ({ \
50 unsigned long long __div = (__a); \
51 do_div(__div,__n); \
52 __div; \
53})
54#define cputime_halve(__a) ((__a) >> 1)
55#define cputime_eq(__a, __b) ((__a) == (__b))
56#define cputime_gt(__a, __b) ((__a) > (__b))
57#define cputime_ge(__a, __b) ((__a) >= (__b))
58#define cputime_lt(__a, __b) ((__a) < (__b))
59#define cputime_le(__a, __b) ((__a) <= (__b))
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010060#define cputime_to_jiffies(__ct) (__div((__ct), 4096000000ULL / HZ))
Michael Neuling06b8e872008-02-06 01:36:12 -080061#define cputime_to_scaled(__ct) (__ct)
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010062#define jiffies_to_cputime(__hz) ((cputime_t)(__hz) * (4096000000ULL / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#define cputime64_zero (0ULL)
65#define cputime64_add(__a, __b) ((__a) + (__b))
66#define cputime_to_cputime64(__ct) (__ct)
67
68static inline u64
69cputime64_to_jiffies64(cputime64_t cputime)
70{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010071 do_div(cputime, 4096000000ULL / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return cputime;
73}
74
75/*
Michael Holzheud57af9b2010-10-27 15:34:45 -070076 * Convert cputime to microseconds and back.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
78static inline unsigned int
Michael Holzheud57af9b2010-10-27 15:34:45 -070079cputime_to_usecs(const cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Michael Holzheud57af9b2010-10-27 15:34:45 -070081 return cputime_div(cputime, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84static inline cputime_t
Michael Holzheud57af9b2010-10-27 15:34:45 -070085usecs_to_cputime(const unsigned int m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Michael Holzheud57af9b2010-10-27 15:34:45 -070087 return (cputime_t) m * 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Andreas Schwab34845632011-12-28 15:57:15 -080090#define usecs_to_cputime64(m) usecs_to_cputime(m)
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * Convert cputime to milliseconds and back.
94 */
95static inline unsigned int
96cputime_to_secs(const cputime_t cputime)
97{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010098 return __div(cputime, 2048000000) >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static inline cputime_t
102secs_to_cputime(const unsigned int s)
103{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100104 return (cputime_t) s * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
108 * Convert cputime to timespec and back.
109 */
110static inline cputime_t
111timespec_to_cputime(const struct timespec *value)
112{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100113 return value->tv_nsec * 4096 / 1000 + (u64) value->tv_sec * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static inline void
117cputime_to_timespec(const cputime_t cputime, struct timespec *value)
118{
119#ifndef __s390x__
120 register_pair rp;
121
122 rp.pair = cputime >> 1;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100123 asm ("dr %0,%1" : "+d" (rp) : "d" (2048000000UL));
124 value->tv_nsec = rp.subreg.even * 1000 / 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 value->tv_sec = rp.subreg.odd;
126#else
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100127 value->tv_nsec = (cputime % 4096000000ULL) * 1000 / 4096;
128 value->tv_sec = cputime / 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif
130}
131
132/*
133 * Convert cputime to timeval and back.
134 * Since cputime and timeval have the same resolution (microseconds)
135 * this is easy.
136 */
137static inline cputime_t
138timeval_to_cputime(const struct timeval *value)
139{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100140 return value->tv_usec * 4096 + (u64) value->tv_sec * 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143static inline void
144cputime_to_timeval(const cputime_t cputime, struct timeval *value)
145{
146#ifndef __s390x__
147 register_pair rp;
148
149 rp.pair = cputime >> 1;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100150 asm ("dr %0,%1" : "+d" (rp) : "d" (2048000000UL));
151 value->tv_usec = rp.subreg.even / 4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 value->tv_sec = rp.subreg.odd;
153#else
Christian Borntraegerd5cd0342009-02-19 15:19:00 +0100154 value->tv_usec = (cputime % 4096000000ULL) / 4096;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100155 value->tv_sec = cputime / 4096000000ULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif
157}
158
159/*
160 * Convert cputime to clock and back.
161 */
162static inline clock_t
163cputime_to_clock_t(cputime_t cputime)
164{
Martin Schwidefsky70f5dc52009-10-29 15:04:12 +0100165 return cputime_div(cputime, 4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168static inline cputime_t
169clock_t_to_cputime(unsigned long x)
170{
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100171 return (cputime_t) x * (4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174/*
175 * Convert cputime64 to clock.
176 */
177static inline clock_t
178cputime64_to_clock_t(cputime64_t cputime)
179{
Martin Schwidefsky70f5dc52009-10-29 15:04:12 +0100180 return cputime_div(cputime, 4096000000ULL / USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Martin Schwidefsky76d4e002009-06-12 10:26:21 +0200183struct s390_idle_data {
Martin Schwidefskye98bbaa2009-06-22 12:08:20 +0200184 unsigned int sequence;
Martin Schwidefsky76d4e002009-06-12 10:26:21 +0200185 unsigned long long idle_count;
186 unsigned long long idle_enter;
187 unsigned long long idle_time;
Martin Schwidefsky3c5d92a2009-09-29 14:25:16 +0200188 int nohz_delay;
Martin Schwidefsky76d4e002009-06-12 10:26:21 +0200189};
190
191DECLARE_PER_CPU(struct s390_idle_data, s390_idle);
192
Martin Schwidefsky63779812010-05-17 10:00:03 +0200193void vtime_start_cpu(__u64 int_clock, __u64 enter_timer);
Martin Schwidefskye1c80532009-04-23 13:58:08 +0200194cputime64_t s390_get_idle_time(int cpu);
195
196#define arch_idle_time(cpu) s390_get_idle_time(cpu)
197
Martin Schwidefsky63779812010-05-17 10:00:03 +0200198static inline void s390_idle_check(struct pt_regs *regs, __u64 int_clock,
199 __u64 enter_timer)
Martin Schwidefsky76d4e002009-06-12 10:26:21 +0200200{
Martin Schwidefsky63779812010-05-17 10:00:03 +0200201 if (regs->psw.mask & PSW_MASK_WAIT)
202 vtime_start_cpu(int_clock, enter_timer);
Martin Schwidefsky76d4e002009-06-12 10:26:21 +0200203}
204
Martin Schwidefsky3c5d92a2009-09-29 14:25:16 +0200205static inline int s390_nohz_delay(int cpu)
206{
Heiko Carstens37e89522011-01-05 12:47:55 +0100207 return __get_cpu_var(s390_idle).nohz_delay != 0;
Martin Schwidefsky3c5d92a2009-09-29 14:25:16 +0200208}
209
210#define arch_needs_cpu(cpu) s390_nohz_delay(cpu)
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#endif /* _S390_CPUTIME_H */