2 * Virtual cpu timer based timer functions.
4 * Copyright IBM Corp. 2004, 2012
5 * Author(s): Jan Glauber <jan.glauber@de.ibm.com>
8 #include <linux/kernel_stat.h>
9 #include <linux/notifier.h>
10 #include <linux/kprobes.h>
11 #include <linux/export.h>
12 #include <linux/kernel.h>
13 #include <linux/timex.h>
14 #include <linux/types.h>
15 #include <linux/time.h>
16 #include <linux/cpu.h>
17 #include <linux/smp.h>
19 #include <asm/irq_regs.h>
20 #include <asm/cputime.h>
21 #include <asm/vtimer.h>
25 static void virt_timer_expire(void);
27 DEFINE_PER_CPU(struct s390_idle_data
, s390_idle
);
29 static LIST_HEAD(virt_timer_list
);
30 static DEFINE_SPINLOCK(virt_timer_lock
);
31 static atomic64_t virt_timer_current
;
32 static atomic64_t virt_timer_elapsed
;
34 static inline u64
get_vtimer(void)
38 asm volatile("stpt %0" : "=m" (timer
));
42 static inline void set_vtimer(u64 expires
)
47 " stpt %0\n" /* Store current cpu timer value */
48 " spt %1" /* Set new value imm. afterwards */
49 : "=m" (timer
) : "m" (expires
));
50 S390_lowcore
.system_timer
+= S390_lowcore
.last_update_timer
- timer
;
51 S390_lowcore
.last_update_timer
= expires
;
54 static inline int virt_timer_forward(u64 elapsed
)
56 BUG_ON(!irqs_disabled());
58 if (list_empty(&virt_timer_list
))
60 elapsed
= atomic64_add_return(elapsed
, &virt_timer_elapsed
);
61 return elapsed
>= atomic64_read(&virt_timer_current
);
65 * Update process times based on virtual cpu times stored by entry.S
66 * to the lowcore fields user_timer, system_timer & steal_clock.
68 static int do_account_vtime(struct task_struct
*tsk
, int hardirq_offset
)
70 struct thread_info
*ti
= task_thread_info(tsk
);
71 u64 timer
, clock
, user
, system
, steal
;
73 timer
= S390_lowcore
.last_update_timer
;
74 clock
= S390_lowcore
.last_update_clock
;
76 " stpt %0\n" /* Store current cpu timer value */
77 " stck %1" /* Store current tod clock value */
78 : "=m" (S390_lowcore
.last_update_timer
),
79 "=m" (S390_lowcore
.last_update_clock
));
80 S390_lowcore
.system_timer
+= timer
- S390_lowcore
.last_update_timer
;
81 S390_lowcore
.steal_timer
+= S390_lowcore
.last_update_clock
- clock
;
83 user
= S390_lowcore
.user_timer
- ti
->user_timer
;
84 S390_lowcore
.steal_timer
-= user
;
85 ti
->user_timer
= S390_lowcore
.user_timer
;
86 account_user_time(tsk
, user
, user
);
88 system
= S390_lowcore
.system_timer
- ti
->system_timer
;
89 S390_lowcore
.steal_timer
-= system
;
90 ti
->system_timer
= S390_lowcore
.system_timer
;
91 account_system_time(tsk
, hardirq_offset
, system
, system
);
93 steal
= S390_lowcore
.steal_timer
;
94 if ((s64
) steal
> 0) {
95 S390_lowcore
.steal_timer
= 0;
96 account_steal_time(steal
);
99 return virt_timer_forward(user
+ system
);
102 void vtime_task_switch(struct task_struct
*prev
)
104 struct thread_info
*ti
;
106 do_account_vtime(prev
, 0);
107 ti
= task_thread_info(prev
);
108 ti
->user_timer
= S390_lowcore
.user_timer
;
109 ti
->system_timer
= S390_lowcore
.system_timer
;
110 ti
= task_thread_info(current
);
111 S390_lowcore
.user_timer
= ti
->user_timer
;
112 S390_lowcore
.system_timer
= ti
->system_timer
;
116 * In s390, accounting pending user time also implies
117 * accounting system time in order to correctly compute
118 * the stolen time accounting.
120 void vtime_account_user(struct task_struct
*tsk
)
122 if (do_account_vtime(tsk
, HARDIRQ_OFFSET
))
127 * Update process times based on virtual cpu times stored by entry.S
128 * to the lowcore fields user_timer, system_timer & steal_clock.
130 void vtime_account(struct task_struct
*tsk
)
132 struct thread_info
*ti
= task_thread_info(tsk
);
135 WARN_ON_ONCE(!irqs_disabled());
137 timer
= S390_lowcore
.last_update_timer
;
138 S390_lowcore
.last_update_timer
= get_vtimer();
139 S390_lowcore
.system_timer
+= timer
- S390_lowcore
.last_update_timer
;
141 system
= S390_lowcore
.system_timer
- ti
->system_timer
;
142 S390_lowcore
.steal_timer
-= system
;
143 ti
->system_timer
= S390_lowcore
.system_timer
;
144 account_system_time(tsk
, 0, system
, system
);
146 virt_timer_forward(system
);
148 EXPORT_SYMBOL_GPL(vtime_account
);
150 void vtime_account_system(struct task_struct
*tsk
)
151 __attribute__((alias("vtime_account")));
152 EXPORT_SYMBOL_GPL(vtime_account_system
);
154 void __kprobes
vtime_stop_cpu(void)
156 struct s390_idle_data
*idle
= &__get_cpu_var(s390_idle
);
157 unsigned long long idle_time
;
158 unsigned long psw_mask
;
161 /* Don't trace preempt off for idle. */
162 stop_critical_timings();
164 /* Wait for external, I/O or machine check interrupt. */
165 psw_mask
= psw_kernel_bits
| PSW_MASK_WAIT
| PSW_MASK_DAT
|
166 PSW_MASK_IO
| PSW_MASK_EXT
| PSW_MASK_MCHECK
;
167 idle
->nohz_delay
= 0;
169 /* Call the assembler magic in entry.S */
170 psw_idle(idle
, psw_mask
);
172 /* Reenable preemption tracer. */
173 start_critical_timings();
175 /* Account time spent with enabled wait psw loaded as idle time. */
178 idle_time
= idle
->clock_idle_exit
- idle
->clock_idle_enter
;
179 idle
->clock_idle_enter
= idle
->clock_idle_exit
= 0ULL;
180 idle
->idle_time
+= idle_time
;
182 account_idle_time(idle_time
);
187 cputime64_t
s390_get_idle_time(int cpu
)
189 struct s390_idle_data
*idle
= &per_cpu(s390_idle
, cpu
);
190 unsigned long long now
, idle_enter
, idle_exit
;
191 unsigned int sequence
;
195 sequence
= ACCESS_ONCE(idle
->sequence
);
196 idle_enter
= ACCESS_ONCE(idle
->clock_idle_enter
);
197 idle_exit
= ACCESS_ONCE(idle
->clock_idle_exit
);
198 } while ((sequence
& 1) || (idle
->sequence
!= sequence
));
199 return idle_enter
? ((idle_exit
?: now
) - idle_enter
) : 0;
203 * Sorted add to a list. List is linear searched until first bigger
206 static void list_add_sorted(struct vtimer_list
*timer
, struct list_head
*head
)
208 struct vtimer_list
*tmp
;
210 list_for_each_entry(tmp
, head
, entry
) {
211 if (tmp
->expires
> timer
->expires
) {
212 list_add_tail(&timer
->entry
, &tmp
->entry
);
216 list_add_tail(&timer
->entry
, head
);
220 * Handler for expired virtual CPU timer.
222 static void virt_timer_expire(void)
224 struct vtimer_list
*timer
, *tmp
;
225 unsigned long elapsed
;
228 /* walk timer list, fire all expired timers */
229 spin_lock(&virt_timer_lock
);
230 elapsed
= atomic64_read(&virt_timer_elapsed
);
231 list_for_each_entry_safe(timer
, tmp
, &virt_timer_list
, entry
) {
232 if (timer
->expires
< elapsed
)
233 /* move expired timer to the callback queue */
234 list_move_tail(&timer
->entry
, &cb_list
);
236 timer
->expires
-= elapsed
;
238 if (!list_empty(&virt_timer_list
)) {
239 timer
= list_first_entry(&virt_timer_list
,
240 struct vtimer_list
, entry
);
241 atomic64_set(&virt_timer_current
, timer
->expires
);
243 atomic64_sub(elapsed
, &virt_timer_elapsed
);
244 spin_unlock(&virt_timer_lock
);
246 /* Do callbacks and recharge periodic timers */
247 list_for_each_entry_safe(timer
, tmp
, &cb_list
, entry
) {
248 list_del_init(&timer
->entry
);
249 timer
->function(timer
->data
);
250 if (timer
->interval
) {
251 /* Recharge interval timer */
252 timer
->expires
= timer
->interval
+
253 atomic64_read(&virt_timer_elapsed
);
254 spin_lock(&virt_timer_lock
);
255 list_add_sorted(timer
, &virt_timer_list
);
256 spin_unlock(&virt_timer_lock
);
261 void init_virt_timer(struct vtimer_list
*timer
)
263 timer
->function
= NULL
;
264 INIT_LIST_HEAD(&timer
->entry
);
266 EXPORT_SYMBOL(init_virt_timer
);
268 static inline int vtimer_pending(struct vtimer_list
*timer
)
270 return !list_empty(&timer
->entry
);
273 static void internal_add_vtimer(struct vtimer_list
*timer
)
275 if (list_empty(&virt_timer_list
)) {
276 /* First timer, just program it. */
277 atomic64_set(&virt_timer_current
, timer
->expires
);
278 atomic64_set(&virt_timer_elapsed
, 0);
279 list_add(&timer
->entry
, &virt_timer_list
);
281 /* Update timer against current base. */
282 timer
->expires
+= atomic64_read(&virt_timer_elapsed
);
283 if (likely((s64
) timer
->expires
<
284 (s64
) atomic64_read(&virt_timer_current
)))
285 /* The new timer expires before the current timer. */
286 atomic64_set(&virt_timer_current
, timer
->expires
);
287 /* Insert new timer into the list. */
288 list_add_sorted(timer
, &virt_timer_list
);
292 static void __add_vtimer(struct vtimer_list
*timer
, int periodic
)
296 timer
->interval
= periodic
? timer
->expires
: 0;
297 spin_lock_irqsave(&virt_timer_lock
, flags
);
298 internal_add_vtimer(timer
);
299 spin_unlock_irqrestore(&virt_timer_lock
, flags
);
303 * add_virt_timer - add an oneshot virtual CPU timer
305 void add_virt_timer(struct vtimer_list
*timer
)
307 __add_vtimer(timer
, 0);
309 EXPORT_SYMBOL(add_virt_timer
);
312 * add_virt_timer_int - add an interval virtual CPU timer
314 void add_virt_timer_periodic(struct vtimer_list
*timer
)
316 __add_vtimer(timer
, 1);
318 EXPORT_SYMBOL(add_virt_timer_periodic
);
320 static int __mod_vtimer(struct vtimer_list
*timer
, u64 expires
, int periodic
)
325 BUG_ON(!timer
->function
);
327 if (timer
->expires
== expires
&& vtimer_pending(timer
))
329 spin_lock_irqsave(&virt_timer_lock
, flags
);
330 rc
= vtimer_pending(timer
);
332 list_del_init(&timer
->entry
);
333 timer
->interval
= periodic
? expires
: 0;
334 timer
->expires
= expires
;
335 internal_add_vtimer(timer
);
336 spin_unlock_irqrestore(&virt_timer_lock
, flags
);
341 * returns whether it has modified a pending timer (1) or not (0)
343 int mod_virt_timer(struct vtimer_list
*timer
, u64 expires
)
345 return __mod_vtimer(timer
, expires
, 0);
347 EXPORT_SYMBOL(mod_virt_timer
);
350 * returns whether it has modified a pending timer (1) or not (0)
352 int mod_virt_timer_periodic(struct vtimer_list
*timer
, u64 expires
)
354 return __mod_vtimer(timer
, expires
, 1);
356 EXPORT_SYMBOL(mod_virt_timer_periodic
);
359 * Delete a virtual timer.
361 * returns whether the deleted timer was pending (1) or not (0)
363 int del_virt_timer(struct vtimer_list
*timer
)
367 if (!vtimer_pending(timer
))
369 spin_lock_irqsave(&virt_timer_lock
, flags
);
370 list_del_init(&timer
->entry
);
371 spin_unlock_irqrestore(&virt_timer_lock
, flags
);
374 EXPORT_SYMBOL(del_virt_timer
);
377 * Start the virtual CPU timer on the current CPU.
379 void __cpuinit
init_cpu_vtimer(void)
381 /* set initial cpu timer */
382 set_vtimer(VTIMER_MAX_SLICE
);
385 static int __cpuinit
s390_nohz_notify(struct notifier_block
*self
,
386 unsigned long action
, void *hcpu
)
388 struct s390_idle_data
*idle
;
389 long cpu
= (long) hcpu
;
391 idle
= &per_cpu(s390_idle
, cpu
);
392 switch (action
& ~CPU_TASKS_FROZEN
) {
394 idle
->nohz_delay
= 0;
401 void __init
vtime_init(void)
403 /* Enable cpu timer interrupts on the boot cpu. */
405 cpu_notifier(s390_nohz_notify
, 0);