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/export.h>
10 #include <linux/kernel.h>
11 #include <linux/timex.h>
12 #include <linux/types.h>
13 #include <linux/time.h>
15 #include <asm/cputime.h>
16 #include <asm/vtimer.h>
17 #include <asm/vtime.h>
18 #include <asm/cpu_mf.h>
23 static void virt_timer_expire(void);
25 static LIST_HEAD(virt_timer_list);
26 static DEFINE_SPINLOCK(virt_timer_lock);
27 static atomic64_t virt_timer_current;
28 static atomic64_t virt_timer_elapsed;
30 DEFINE_PER_CPU(u64, mt_cycles[8]);
31 static DEFINE_PER_CPU(u64, mt_scaling_mult) = { 1 };
32 static DEFINE_PER_CPU(u64, mt_scaling_div) = { 1 };
33 static DEFINE_PER_CPU(u64, mt_scaling_jiffies);
35 static inline u64 get_vtimer(void)
39 asm volatile("stpt %0" : "=m" (timer));
43 static inline void set_vtimer(u64 expires)
48 " stpt %0\n" /* Store current cpu timer value */
49 " spt %1" /* Set new value imm. afterwards */
50 : "=m" (timer) : "m" (expires));
51 S390_lowcore.system_timer += S390_lowcore.last_update_timer - timer;
52 S390_lowcore.last_update_timer = expires;
55 static inline int virt_timer_forward(u64 elapsed)
57 BUG_ON(!irqs_disabled());
59 if (list_empty(&virt_timer_list))
61 elapsed = atomic64_add_return(elapsed, &virt_timer_elapsed);
62 return elapsed >= atomic64_read(&virt_timer_current);
65 static void update_mt_scaling(void)
67 u64 cycles_new[8], *cycles_old;
68 u64 delta, fac, mult, div;
71 stcctm5(smp_cpu_mtid + 1, cycles_new);
72 cycles_old = this_cpu_ptr(mt_cycles);
75 for (i = 0; i <= smp_cpu_mtid; i++) {
76 delta = cycles_new[i] - cycles_old[i];
84 /* Update scaling factor */
85 __this_cpu_write(mt_scaling_mult, mult);
86 __this_cpu_write(mt_scaling_div, div);
87 memcpy(cycles_old, cycles_new,
88 sizeof(u64) * (smp_cpu_mtid + 1));
90 __this_cpu_write(mt_scaling_jiffies, jiffies_64);
94 * Update process times based on virtual cpu times stored by entry.S
95 * to the lowcore fields user_timer, system_timer & steal_clock.
97 static int do_account_vtime(struct task_struct *tsk, int hardirq_offset)
99 struct thread_info *ti = task_thread_info(tsk);
100 u64 timer, clock, user, system, steal;
101 u64 user_scaled, system_scaled;
103 timer = S390_lowcore.last_update_timer;
104 clock = S390_lowcore.last_update_clock;
106 " stpt %0\n" /* Store current cpu timer value */
107 #ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES
108 " stckf %1" /* Store current tod clock value */
110 " stck %1" /* Store current tod clock value */
112 : "=m" (S390_lowcore.last_update_timer),
113 "=m" (S390_lowcore.last_update_clock));
114 S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
115 S390_lowcore.steal_timer += S390_lowcore.last_update_clock - clock;
117 /* Update MT utilization calculation */
119 time_after64(jiffies_64, this_cpu_read(mt_scaling_jiffies)))
122 user = S390_lowcore.user_timer - ti->user_timer;
123 S390_lowcore.steal_timer -= user;
124 ti->user_timer = S390_lowcore.user_timer;
126 system = S390_lowcore.system_timer - ti->system_timer;
127 S390_lowcore.steal_timer -= system;
128 ti->system_timer = S390_lowcore.system_timer;
131 system_scaled = system;
132 /* Do MT utilization scaling */
134 u64 mult = __this_cpu_read(mt_scaling_mult);
135 u64 div = __this_cpu_read(mt_scaling_div);
137 user_scaled = (user_scaled * mult) / div;
138 system_scaled = (system_scaled * mult) / div;
140 account_user_time(tsk, user, user_scaled);
141 account_system_time(tsk, hardirq_offset, system, system_scaled);
143 steal = S390_lowcore.steal_timer;
144 if ((s64) steal > 0) {
145 S390_lowcore.steal_timer = 0;
146 account_steal_time(steal);
149 return virt_timer_forward(user + system);
152 void vtime_task_switch(struct task_struct *prev)
154 struct thread_info *ti;
156 do_account_vtime(prev, 0);
157 ti = task_thread_info(prev);
158 ti->user_timer = S390_lowcore.user_timer;
159 ti->system_timer = S390_lowcore.system_timer;
160 ti = task_thread_info(current);
161 S390_lowcore.user_timer = ti->user_timer;
162 S390_lowcore.system_timer = ti->system_timer;
166 * In s390, accounting pending user time also implies
167 * accounting system time in order to correctly compute
168 * the stolen time accounting.
170 void vtime_account_user(struct task_struct *tsk)
172 if (do_account_vtime(tsk, HARDIRQ_OFFSET))
177 * Update process times based on virtual cpu times stored by entry.S
178 * to the lowcore fields user_timer, system_timer & steal_clock.
180 void vtime_account_irq_enter(struct task_struct *tsk)
182 struct thread_info *ti = task_thread_info(tsk);
183 u64 timer, system, system_scaled;
185 timer = S390_lowcore.last_update_timer;
186 S390_lowcore.last_update_timer = get_vtimer();
187 S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
189 /* Update MT utilization calculation */
191 time_after64(jiffies_64, this_cpu_read(mt_scaling_jiffies)))
194 system = S390_lowcore.system_timer - ti->system_timer;
195 S390_lowcore.steal_timer -= system;
196 ti->system_timer = S390_lowcore.system_timer;
197 system_scaled = system;
198 /* Do MT utilization scaling */
200 u64 mult = __this_cpu_read(mt_scaling_mult);
201 u64 div = __this_cpu_read(mt_scaling_div);
203 system_scaled = (system_scaled * mult) / div;
205 account_system_time(tsk, 0, system, system_scaled);
207 virt_timer_forward(system);
209 EXPORT_SYMBOL_GPL(vtime_account_irq_enter);
211 void vtime_account_system(struct task_struct *tsk)
212 __attribute__((alias("vtime_account_irq_enter")));
213 EXPORT_SYMBOL_GPL(vtime_account_system);
216 * Sorted add to a list. List is linear searched until first bigger
219 static void list_add_sorted(struct vtimer_list *timer, struct list_head *head)
221 struct vtimer_list *tmp;
223 list_for_each_entry(tmp, head, entry) {
224 if (tmp->expires > timer->expires) {
225 list_add_tail(&timer->entry, &tmp->entry);
229 list_add_tail(&timer->entry, head);
233 * Handler for expired virtual CPU timer.
235 static void virt_timer_expire(void)
237 struct vtimer_list *timer, *tmp;
238 unsigned long elapsed;
241 /* walk timer list, fire all expired timers */
242 spin_lock(&virt_timer_lock);
243 elapsed = atomic64_read(&virt_timer_elapsed);
244 list_for_each_entry_safe(timer, tmp, &virt_timer_list, entry) {
245 if (timer->expires < elapsed)
246 /* move expired timer to the callback queue */
247 list_move_tail(&timer->entry, &cb_list);
249 timer->expires -= elapsed;
251 if (!list_empty(&virt_timer_list)) {
252 timer = list_first_entry(&virt_timer_list,
253 struct vtimer_list, entry);
254 atomic64_set(&virt_timer_current, timer->expires);
256 atomic64_sub(elapsed, &virt_timer_elapsed);
257 spin_unlock(&virt_timer_lock);
259 /* Do callbacks and recharge periodic timers */
260 list_for_each_entry_safe(timer, tmp, &cb_list, entry) {
261 list_del_init(&timer->entry);
262 timer->function(timer->data);
263 if (timer->interval) {
264 /* Recharge interval timer */
265 timer->expires = timer->interval +
266 atomic64_read(&virt_timer_elapsed);
267 spin_lock(&virt_timer_lock);
268 list_add_sorted(timer, &virt_timer_list);
269 spin_unlock(&virt_timer_lock);
274 void init_virt_timer(struct vtimer_list *timer)
276 timer->function = NULL;
277 INIT_LIST_HEAD(&timer->entry);
279 EXPORT_SYMBOL(init_virt_timer);
281 static inline int vtimer_pending(struct vtimer_list *timer)
283 return !list_empty(&timer->entry);
286 static void internal_add_vtimer(struct vtimer_list *timer)
288 if (list_empty(&virt_timer_list)) {
289 /* First timer, just program it. */
290 atomic64_set(&virt_timer_current, timer->expires);
291 atomic64_set(&virt_timer_elapsed, 0);
292 list_add(&timer->entry, &virt_timer_list);
294 /* Update timer against current base. */
295 timer->expires += atomic64_read(&virt_timer_elapsed);
296 if (likely((s64) timer->expires <
297 (s64) atomic64_read(&virt_timer_current)))
298 /* The new timer expires before the current timer. */
299 atomic64_set(&virt_timer_current, timer->expires);
300 /* Insert new timer into the list. */
301 list_add_sorted(timer, &virt_timer_list);
305 static void __add_vtimer(struct vtimer_list *timer, int periodic)
309 timer->interval = periodic ? timer->expires : 0;
310 spin_lock_irqsave(&virt_timer_lock, flags);
311 internal_add_vtimer(timer);
312 spin_unlock_irqrestore(&virt_timer_lock, flags);
316 * add_virt_timer - add an oneshot virtual CPU timer
318 void add_virt_timer(struct vtimer_list *timer)
320 __add_vtimer(timer, 0);
322 EXPORT_SYMBOL(add_virt_timer);
325 * add_virt_timer_int - add an interval virtual CPU timer
327 void add_virt_timer_periodic(struct vtimer_list *timer)
329 __add_vtimer(timer, 1);
331 EXPORT_SYMBOL(add_virt_timer_periodic);
333 static int __mod_vtimer(struct vtimer_list *timer, u64 expires, int periodic)
338 BUG_ON(!timer->function);
340 if (timer->expires == expires && vtimer_pending(timer))
342 spin_lock_irqsave(&virt_timer_lock, flags);
343 rc = vtimer_pending(timer);
345 list_del_init(&timer->entry);
346 timer->interval = periodic ? expires : 0;
347 timer->expires = expires;
348 internal_add_vtimer(timer);
349 spin_unlock_irqrestore(&virt_timer_lock, flags);
354 * returns whether it has modified a pending timer (1) or not (0)
356 int mod_virt_timer(struct vtimer_list *timer, u64 expires)
358 return __mod_vtimer(timer, expires, 0);
360 EXPORT_SYMBOL(mod_virt_timer);
363 * returns whether it has modified a pending timer (1) or not (0)
365 int mod_virt_timer_periodic(struct vtimer_list *timer, u64 expires)
367 return __mod_vtimer(timer, expires, 1);
369 EXPORT_SYMBOL(mod_virt_timer_periodic);
372 * Delete a virtual timer.
374 * returns whether the deleted timer was pending (1) or not (0)
376 int del_virt_timer(struct vtimer_list *timer)
380 if (!vtimer_pending(timer))
382 spin_lock_irqsave(&virt_timer_lock, flags);
383 list_del_init(&timer->entry);
384 spin_unlock_irqrestore(&virt_timer_lock, flags);
387 EXPORT_SYMBOL(del_virt_timer);
390 * Start the virtual CPU timer on the current CPU.
392 void vtime_init(void)
394 /* set initial cpu timer */
395 set_vtimer(VTIMER_MAX_SLICE);
396 /* Setup initial MT scaling values */
398 __this_cpu_write(mt_scaling_jiffies, jiffies);
399 __this_cpu_write(mt_scaling_mult, 1);
400 __this_cpu_write(mt_scaling_div, 1);
401 stcctm5(smp_cpu_mtid + 1, this_cpu_ptr(mt_cycles));