1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34#include <linux/cpu.h>
35#include <linux/module.h>
36#include <linux/percpu.h>
37#include <linux/hrtimer.h>
38#include <linux/notifier.h>
39#include <linux/syscalls.h>
40#include <linux/kallsyms.h>
41#include <linux/interrupt.h>
42#include <linux/tick.h>
43#include <linux/seq_file.h>
44#include <linux/err.h>
45#include <linux/debugobjects.h>
46#include <linux/sched.h>
47#include <linux/timer.h>
48
49#include <asm/uaccess.h>
50
51#include <trace/events/timer.h>
52
53
54
55
56
57
58
59
60
61
62DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
63{
64
65 .clock_base =
66 {
67 {
68 .index = CLOCK_REALTIME,
69 .get_time = &ktime_get_real,
70 .resolution = KTIME_LOW_RES,
71 },
72 {
73 .index = CLOCK_MONOTONIC,
74 .get_time = &ktime_get,
75 .resolution = KTIME_LOW_RES,
76 },
77 }
78};
79
80
81
82
83
84static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
85{
86 ktime_t xtim, tomono;
87 struct timespec xts, tom;
88 unsigned long seq;
89
90 do {
91 seq = read_seqbegin(&xtime_lock);
92 xts = __current_kernel_time();
93 tom = wall_to_monotonic;
94 } while (read_seqretry(&xtime_lock, seq));
95
96 xtim = timespec_to_ktime(xts);
97 tomono = timespec_to_ktime(tom);
98 base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
99 base->clock_base[CLOCK_MONOTONIC].softirq_time =
100 ktime_add(xtim, tomono);
101}
102
103
104
105
106
107#ifdef CONFIG_SMP
108
109
110
111
112
113
114
115
116
117
118
119
120
121static
122struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
123 unsigned long *flags)
124{
125 struct hrtimer_clock_base *base;
126
127 for (;;) {
128 base = timer->base;
129 if (likely(base != NULL)) {
130 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
131 if (likely(base == timer->base))
132 return base;
133
134 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
135 }
136 cpu_relax();
137 }
138}
139
140
141
142
143
144static int hrtimer_get_target(int this_cpu, int pinned)
145{
146#ifdef CONFIG_NO_HZ
147 if (!pinned && get_sysctl_timer_migration() && idle_cpu(this_cpu)) {
148 int preferred_cpu = get_nohz_load_balancer();
149
150 if (preferred_cpu >= 0)
151 return preferred_cpu;
152 }
153#endif
154 return this_cpu;
155}
156
157
158
159
160
161
162
163
164static int
165hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
166{
167#ifdef CONFIG_HIGH_RES_TIMERS
168 ktime_t expires;
169
170 if (!new_base->cpu_base->hres_active)
171 return 0;
172
173 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
174 return expires.tv64 <= new_base->cpu_base->expires_next.tv64;
175#else
176 return 0;
177#endif
178}
179
180
181
182
183static inline struct hrtimer_clock_base *
184switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
185 int pinned)
186{
187 struct hrtimer_clock_base *new_base;
188 struct hrtimer_cpu_base *new_cpu_base;
189 int this_cpu = smp_processor_id();
190 int cpu = hrtimer_get_target(this_cpu, pinned);
191
192again:
193 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
194 new_base = &new_cpu_base->clock_base[base->index];
195
196 if (base != new_base) {
197
198
199
200
201
202
203
204
205
206 if (unlikely(hrtimer_callback_running(timer)))
207 return base;
208
209
210 timer->base = NULL;
211 raw_spin_unlock(&base->cpu_base->lock);
212 raw_spin_lock(&new_base->cpu_base->lock);
213
214 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
215 cpu = this_cpu;
216 raw_spin_unlock(&new_base->cpu_base->lock);
217 raw_spin_lock(&base->cpu_base->lock);
218 timer->base = base;
219 goto again;
220 }
221 timer->base = new_base;
222 }
223 return new_base;
224}
225
226#else
227
228static inline struct hrtimer_clock_base *
229lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
230{
231 struct hrtimer_clock_base *base = timer->base;
232
233 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
234
235 return base;
236}
237
238# define switch_hrtimer_base(t, b, p) (b)
239
240#endif
241
242
243
244
245
246#if BITS_PER_LONG < 64
247# ifndef CONFIG_KTIME_SCALAR
248
249
250
251
252
253
254
255ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
256{
257 ktime_t tmp;
258
259 if (likely(nsec < NSEC_PER_SEC)) {
260 tmp.tv64 = nsec;
261 } else {
262 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
263
264 tmp = ktime_set((long)nsec, rem);
265 }
266
267 return ktime_add(kt, tmp);
268}
269
270EXPORT_SYMBOL_GPL(ktime_add_ns);
271
272
273
274
275
276
277
278
279ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec)
280{
281 ktime_t tmp;
282
283 if (likely(nsec < NSEC_PER_SEC)) {
284 tmp.tv64 = nsec;
285 } else {
286 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
287
288 tmp = ktime_set((long)nsec, rem);
289 }
290
291 return ktime_sub(kt, tmp);
292}
293
294EXPORT_SYMBOL_GPL(ktime_sub_ns);
295# endif
296
297
298
299
300u64 ktime_divns(const ktime_t kt, s64 div)
301{
302 u64 dclc;
303 int sft = 0;
304
305 dclc = ktime_to_ns(kt);
306
307 while (div >> 32) {
308 sft++;
309 div >>= 1;
310 }
311 dclc >>= sft;
312 do_div(dclc, (unsigned long) div);
313
314 return dclc;
315}
316#endif
317
318
319
320
321ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
322{
323 ktime_t res = ktime_add(lhs, rhs);
324
325
326
327
328
329 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
330 res = ktime_set(KTIME_SEC_MAX, 0);
331
332 return res;
333}
334
335EXPORT_SYMBOL_GPL(ktime_add_safe);
336
337#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
338
339static struct debug_obj_descr hrtimer_debug_descr;
340
341
342
343
344
345static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
346{
347 struct hrtimer *timer = addr;
348
349 switch (state) {
350 case ODEBUG_STATE_ACTIVE:
351 hrtimer_cancel(timer);
352 debug_object_init(timer, &hrtimer_debug_descr);
353 return 1;
354 default:
355 return 0;
356 }
357}
358
359
360
361
362
363
364static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
365{
366 switch (state) {
367
368 case ODEBUG_STATE_NOTAVAILABLE:
369 WARN_ON_ONCE(1);
370 return 0;
371
372 case ODEBUG_STATE_ACTIVE:
373 WARN_ON(1);
374
375 default:
376 return 0;
377 }
378}
379
380
381
382
383
384static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
385{
386 struct hrtimer *timer = addr;
387
388 switch (state) {
389 case ODEBUG_STATE_ACTIVE:
390 hrtimer_cancel(timer);
391 debug_object_free(timer, &hrtimer_debug_descr);
392 return 1;
393 default:
394 return 0;
395 }
396}
397
398static struct debug_obj_descr hrtimer_debug_descr = {
399 .name = "hrtimer",
400 .fixup_init = hrtimer_fixup_init,
401 .fixup_activate = hrtimer_fixup_activate,
402 .fixup_free = hrtimer_fixup_free,
403};
404
405static inline void debug_hrtimer_init(struct hrtimer *timer)
406{
407 debug_object_init(timer, &hrtimer_debug_descr);
408}
409
410static inline void debug_hrtimer_activate(struct hrtimer *timer)
411{
412 debug_object_activate(timer, &hrtimer_debug_descr);
413}
414
415static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
416{
417 debug_object_deactivate(timer, &hrtimer_debug_descr);
418}
419
420static inline void debug_hrtimer_free(struct hrtimer *timer)
421{
422 debug_object_free(timer, &hrtimer_debug_descr);
423}
424
425static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
426 enum hrtimer_mode mode);
427
428void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
429 enum hrtimer_mode mode)
430{
431 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
432 __hrtimer_init(timer, clock_id, mode);
433}
434EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
435
436void destroy_hrtimer_on_stack(struct hrtimer *timer)
437{
438 debug_object_free(timer, &hrtimer_debug_descr);
439}
440
441#else
442static inline void debug_hrtimer_init(struct hrtimer *timer) { }
443static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
444static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
445#endif
446
447static inline void
448debug_init(struct hrtimer *timer, clockid_t clockid,
449 enum hrtimer_mode mode)
450{
451 debug_hrtimer_init(timer);
452 trace_hrtimer_init(timer, clockid, mode);
453}
454
455static inline void debug_activate(struct hrtimer *timer)
456{
457 debug_hrtimer_activate(timer);
458 trace_hrtimer_start(timer);
459}
460
461static inline void debug_deactivate(struct hrtimer *timer)
462{
463 debug_hrtimer_deactivate(timer);
464 trace_hrtimer_cancel(timer);
465}
466
467
468#ifdef CONFIG_HIGH_RES_TIMERS
469
470
471
472
473static int hrtimer_hres_enabled __read_mostly = 1;
474
475
476
477
478static int __init setup_hrtimer_hres(char *str)
479{
480 if (!strcmp(str, "off"))
481 hrtimer_hres_enabled = 0;
482 else if (!strcmp(str, "on"))
483 hrtimer_hres_enabled = 1;
484 else
485 return 0;
486 return 1;
487}
488
489__setup("highres=", setup_hrtimer_hres);
490
491
492
493
494static inline int hrtimer_is_hres_enabled(void)
495{
496 return hrtimer_hres_enabled;
497}
498
499
500
501
502static inline int hrtimer_hres_active(void)
503{
504 return __get_cpu_var(hrtimer_bases).hres_active;
505}
506
507
508
509
510
511
512static void
513hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
514{
515 int i;
516 struct hrtimer_clock_base *base = cpu_base->clock_base;
517 ktime_t expires, expires_next;
518
519 expires_next.tv64 = KTIME_MAX;
520
521 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
522 struct hrtimer *timer;
523
524 if (!base->first)
525 continue;
526 timer = rb_entry(base->first, struct hrtimer, node);
527 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
528
529
530
531
532
533 if (expires.tv64 < 0)
534 expires.tv64 = 0;
535 if (expires.tv64 < expires_next.tv64)
536 expires_next = expires;
537 }
538
539 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
540 return;
541
542 cpu_base->expires_next.tv64 = expires_next.tv64;
543
544 if (cpu_base->expires_next.tv64 != KTIME_MAX)
545 tick_program_event(cpu_base->expires_next, 1);
546}
547
548
549
550
551
552
553
554
555
556
557static int hrtimer_reprogram(struct hrtimer *timer,
558 struct hrtimer_clock_base *base)
559{
560 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
561 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
562 int res;
563
564 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
565
566
567
568
569
570
571
572
573 if (hrtimer_callback_running(timer))
574 return 0;
575
576
577
578
579
580
581
582 if (expires.tv64 < 0)
583 return -ETIME;
584
585 if (expires.tv64 >= cpu_base->expires_next.tv64)
586 return 0;
587
588
589
590
591
592
593
594 if (cpu_base->hang_detected)
595 return 0;
596
597
598
599
600 res = tick_program_event(expires, 0);
601 if (!IS_ERR_VALUE(res))
602 cpu_base->expires_next = expires;
603 return res;
604}
605
606
607
608
609
610
611
612static void retrigger_next_event(void *arg)
613{
614 struct hrtimer_cpu_base *base;
615 struct timespec realtime_offset;
616 unsigned long seq;
617
618 if (!hrtimer_hres_active())
619 return;
620
621 do {
622 seq = read_seqbegin(&xtime_lock);
623 set_normalized_timespec(&realtime_offset,
624 -wall_to_monotonic.tv_sec,
625 -wall_to_monotonic.tv_nsec);
626 } while (read_seqretry(&xtime_lock, seq));
627
628 base = &__get_cpu_var(hrtimer_bases);
629
630
631 raw_spin_lock(&base->lock);
632 base->clock_base[CLOCK_REALTIME].offset =
633 timespec_to_ktime(realtime_offset);
634
635 hrtimer_force_reprogram(base, 0);
636 raw_spin_unlock(&base->lock);
637}
638
639
640
641
642
643
644
645
646
647
648
649
650void clock_was_set(void)
651{
652
653 on_each_cpu(retrigger_next_event, NULL, 1);
654}
655
656
657
658
659
660void hres_timers_resume(void)
661{
662 WARN_ONCE(!irqs_disabled(),
663 KERN_INFO "hres_timers_resume() called with IRQs enabled!");
664
665 retrigger_next_event(NULL);
666}
667
668
669
670
671static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
672{
673 base->expires_next.tv64 = KTIME_MAX;
674 base->hres_active = 0;
675}
676
677
678
679
680static inline void hrtimer_init_timer_hres(struct hrtimer *timer)
681{
682}
683
684
685
686
687
688
689
690
691static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
692 struct hrtimer_clock_base *base,
693 int wakeup)
694{
695 if (base->cpu_base->hres_active && hrtimer_reprogram(timer, base)) {
696 if (wakeup) {
697 raw_spin_unlock(&base->cpu_base->lock);
698 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
699 raw_spin_lock(&base->cpu_base->lock);
700 } else
701 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
702
703 return 1;
704 }
705
706 return 0;
707}
708
709
710
711
712static int hrtimer_switch_to_hres(void)
713{
714 int cpu = smp_processor_id();
715 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
716 unsigned long flags;
717
718 if (base->hres_active)
719 return 1;
720
721 local_irq_save(flags);
722
723 if (tick_init_highres()) {
724 local_irq_restore(flags);
725 printk(KERN_WARNING "Could not switch to high resolution "
726 "mode on CPU %d\n", cpu);
727 return 0;
728 }
729 base->hres_active = 1;
730 base->clock_base[CLOCK_REALTIME].resolution = KTIME_HIGH_RES;
731 base->clock_base[CLOCK_MONOTONIC].resolution = KTIME_HIGH_RES;
732
733 tick_setup_sched_timer();
734
735
736 retrigger_next_event(NULL);
737 local_irq_restore(flags);
738 return 1;
739}
740
741#else
742
743static inline int hrtimer_hres_active(void) { return 0; }
744static inline int hrtimer_is_hres_enabled(void) { return 0; }
745static inline int hrtimer_switch_to_hres(void) { return 0; }
746static inline void
747hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
748static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
749 struct hrtimer_clock_base *base,
750 int wakeup)
751{
752 return 0;
753}
754static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
755static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { }
756
757#endif
758
759static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
760{
761#ifdef CONFIG_TIMER_STATS
762 if (timer->start_site)
763 return;
764 timer->start_site = __builtin_return_address(0);
765 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
766 timer->start_pid = current->pid;
767#endif
768}
769
770static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
771{
772#ifdef CONFIG_TIMER_STATS
773 timer->start_site = NULL;
774#endif
775}
776
777static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
778{
779#ifdef CONFIG_TIMER_STATS
780 if (likely(!timer_stats_active))
781 return;
782 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
783 timer->function, timer->start_comm, 0);
784#endif
785}
786
787
788
789
790static inline
791void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
792{
793 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
794}
795
796
797
798
799
800
801
802
803
804
805u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
806{
807 u64 orun = 1;
808 ktime_t delta;
809
810 delta = ktime_sub(now, hrtimer_get_expires(timer));
811
812 if (delta.tv64 < 0)
813 return 0;
814
815 if (interval.tv64 < timer->base->resolution.tv64)
816 interval.tv64 = timer->base->resolution.tv64;
817
818 if (unlikely(delta.tv64 >= interval.tv64)) {
819 s64 incr = ktime_to_ns(interval);
820
821 orun = ktime_divns(delta, incr);
822 hrtimer_add_expires_ns(timer, incr * orun);
823 if (hrtimer_get_expires_tv64(timer) > now.tv64)
824 return orun;
825
826
827
828
829 orun++;
830 }
831 hrtimer_add_expires(timer, interval);
832
833 return orun;
834}
835EXPORT_SYMBOL_GPL(hrtimer_forward);
836
837
838
839
840
841
842
843
844
845static int enqueue_hrtimer(struct hrtimer *timer,
846 struct hrtimer_clock_base *base)
847{
848 struct rb_node **link = &base->active.rb_node;
849 struct rb_node *parent = NULL;
850 struct hrtimer *entry;
851 int leftmost = 1;
852
853 debug_activate(timer);
854
855
856
857
858 while (*link) {
859 parent = *link;
860 entry = rb_entry(parent, struct hrtimer, node);
861
862
863
864
865 if (hrtimer_get_expires_tv64(timer) <
866 hrtimer_get_expires_tv64(entry)) {
867 link = &(*link)->rb_left;
868 } else {
869 link = &(*link)->rb_right;
870 leftmost = 0;
871 }
872 }
873
874
875
876
877
878 if (leftmost)
879 base->first = &timer->node;
880
881 rb_link_node(&timer->node, parent, link);
882 rb_insert_color(&timer->node, &base->active);
883
884
885
886
887 timer->state |= HRTIMER_STATE_ENQUEUED;
888
889 return leftmost;
890}
891
892
893
894
895
896
897
898
899
900
901
902static void __remove_hrtimer(struct hrtimer *timer,
903 struct hrtimer_clock_base *base,
904 unsigned long newstate, int reprogram)
905{
906 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
907 goto out;
908
909
910
911
912
913 if (base->first == &timer->node) {
914 base->first = rb_next(&timer->node);
915#ifdef CONFIG_HIGH_RES_TIMERS
916
917 if (reprogram && hrtimer_hres_active()) {
918 ktime_t expires;
919
920 expires = ktime_sub(hrtimer_get_expires(timer),
921 base->offset);
922 if (base->cpu_base->expires_next.tv64 == expires.tv64)
923 hrtimer_force_reprogram(base->cpu_base, 1);
924 }
925#endif
926 }
927 rb_erase(&timer->node, &base->active);
928out:
929 timer->state = newstate;
930}
931
932
933
934
935static inline int
936remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
937{
938 if (hrtimer_is_queued(timer)) {
939 int reprogram;
940
941
942
943
944
945
946
947
948
949 debug_deactivate(timer);
950 timer_stats_hrtimer_clear_start_info(timer);
951 reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases);
952 __remove_hrtimer(timer, base, HRTIMER_STATE_INACTIVE,
953 reprogram);
954 return 1;
955 }
956 return 0;
957}
958
959int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
960 unsigned long delta_ns, const enum hrtimer_mode mode,
961 int wakeup)
962{
963 struct hrtimer_clock_base *base, *new_base;
964 unsigned long flags;
965 int ret, leftmost;
966
967 base = lock_hrtimer_base(timer, &flags);
968
969
970 ret = remove_hrtimer(timer, base);
971
972
973 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
974
975 if (mode & HRTIMER_MODE_REL) {
976 tim = ktime_add_safe(tim, new_base->get_time());
977
978
979
980
981
982
983
984#ifdef CONFIG_TIME_LOW_RES
985 tim = ktime_add_safe(tim, base->resolution);
986#endif
987 }
988
989 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
990
991 timer_stats_hrtimer_set_start_info(timer);
992
993 leftmost = enqueue_hrtimer(timer, new_base);
994
995
996
997
998
999
1000
1001 if (leftmost && new_base->cpu_base == &__get_cpu_var(hrtimer_bases))
1002 hrtimer_enqueue_reprogram(timer, new_base, wakeup);
1003
1004 unlock_hrtimer_base(timer, &flags);
1005
1006 return ret;
1007}
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1021 unsigned long delta_ns, const enum hrtimer_mode mode)
1022{
1023 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1024}
1025EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037int
1038hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1039{
1040 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
1041}
1042EXPORT_SYMBOL_GPL(hrtimer_start);
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055int hrtimer_try_to_cancel(struct hrtimer *timer)
1056{
1057 struct hrtimer_clock_base *base;
1058 unsigned long flags;
1059 int ret = -1;
1060
1061 base = lock_hrtimer_base(timer, &flags);
1062
1063 if (!hrtimer_callback_running(timer))
1064 ret = remove_hrtimer(timer, base);
1065
1066 unlock_hrtimer_base(timer, &flags);
1067
1068 return ret;
1069
1070}
1071EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081int hrtimer_cancel(struct hrtimer *timer)
1082{
1083 for (;;) {
1084 int ret = hrtimer_try_to_cancel(timer);
1085
1086 if (ret >= 0)
1087 return ret;
1088 cpu_relax();
1089 }
1090}
1091EXPORT_SYMBOL_GPL(hrtimer_cancel);
1092
1093
1094
1095
1096
1097ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1098{
1099 struct hrtimer_clock_base *base;
1100 unsigned long flags;
1101 ktime_t rem;
1102
1103 base = lock_hrtimer_base(timer, &flags);
1104 rem = hrtimer_expires_remaining(timer);
1105 unlock_hrtimer_base(timer, &flags);
1106
1107 return rem;
1108}
1109EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
1110
1111#ifdef CONFIG_NO_HZ
1112
1113
1114
1115
1116
1117
1118ktime_t hrtimer_get_next_event(void)
1119{
1120 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1121 struct hrtimer_clock_base *base = cpu_base->clock_base;
1122 ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
1123 unsigned long flags;
1124 int i;
1125
1126 raw_spin_lock_irqsave(&cpu_base->lock, flags);
1127
1128 if (!hrtimer_hres_active()) {
1129 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
1130 struct hrtimer *timer;
1131
1132 if (!base->first)
1133 continue;
1134
1135 timer = rb_entry(base->first, struct hrtimer, node);
1136 delta.tv64 = hrtimer_get_expires_tv64(timer);
1137 delta = ktime_sub(delta, base->get_time());
1138 if (delta.tv64 < mindelta.tv64)
1139 mindelta.tv64 = delta.tv64;
1140 }
1141 }
1142
1143 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
1144
1145 if (mindelta.tv64 < 0)
1146 mindelta.tv64 = 0;
1147 return mindelta;
1148}
1149#endif
1150
1151static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1152 enum hrtimer_mode mode)
1153{
1154 struct hrtimer_cpu_base *cpu_base;
1155
1156 memset(timer, 0, sizeof(struct hrtimer));
1157
1158 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1159
1160 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
1161 clock_id = CLOCK_MONOTONIC;
1162
1163 timer->base = &cpu_base->clock_base[clock_id];
1164 hrtimer_init_timer_hres(timer);
1165
1166#ifdef CONFIG_TIMER_STATS
1167 timer->start_site = NULL;
1168 timer->start_pid = -1;
1169 memset(timer->start_comm, 0, TASK_COMM_LEN);
1170#endif
1171}
1172
1173
1174
1175
1176
1177
1178
1179void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1180 enum hrtimer_mode mode)
1181{
1182 debug_init(timer, clock_id, mode);
1183 __hrtimer_init(timer, clock_id, mode);
1184}
1185EXPORT_SYMBOL_GPL(hrtimer_init);
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1196{
1197 struct hrtimer_cpu_base *cpu_base;
1198
1199 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1200 *tp = ktime_to_timespec(cpu_base->clock_base[which_clock].resolution);
1201
1202 return 0;
1203}
1204EXPORT_SYMBOL_GPL(hrtimer_get_res);
1205
1206static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
1207{
1208 struct hrtimer_clock_base *base = timer->base;
1209 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1210 enum hrtimer_restart (*fn)(struct hrtimer *);
1211 int restart;
1212
1213 WARN_ON(!irqs_disabled());
1214
1215 debug_deactivate(timer);
1216 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1217 timer_stats_account_hrtimer(timer);
1218 fn = timer->function;
1219
1220
1221
1222
1223
1224
1225 raw_spin_unlock(&cpu_base->lock);
1226 trace_hrtimer_expire_entry(timer, now);
1227 restart = fn(timer);
1228 trace_hrtimer_expire_exit(timer);
1229 raw_spin_lock(&cpu_base->lock);
1230
1231
1232
1233
1234
1235
1236 if (restart != HRTIMER_NORESTART) {
1237 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
1238 enqueue_hrtimer(timer, base);
1239 }
1240 timer->state &= ~HRTIMER_STATE_CALLBACK;
1241}
1242
1243#ifdef CONFIG_HIGH_RES_TIMERS
1244
1245
1246
1247
1248
1249void hrtimer_interrupt(struct clock_event_device *dev)
1250{
1251 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1252 struct hrtimer_clock_base *base;
1253 ktime_t expires_next, now, entry_time, delta;
1254 int i, retries = 0;
1255
1256 BUG_ON(!cpu_base->hres_active);
1257 cpu_base->nr_events++;
1258 dev->next_event.tv64 = KTIME_MAX;
1259
1260 entry_time = now = ktime_get();
1261retry:
1262 expires_next.tv64 = KTIME_MAX;
1263
1264 raw_spin_lock(&cpu_base->lock);
1265
1266
1267
1268
1269
1270
1271
1272 cpu_base->expires_next.tv64 = KTIME_MAX;
1273
1274 base = cpu_base->clock_base;
1275
1276 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1277 ktime_t basenow;
1278 struct rb_node *node;
1279
1280 basenow = ktime_add(now, base->offset);
1281
1282 while ((node = base->first)) {
1283 struct hrtimer *timer;
1284
1285 timer = rb_entry(node, struct hrtimer, node);
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer)) {
1301 ktime_t expires;
1302
1303 expires = ktime_sub(hrtimer_get_expires(timer),
1304 base->offset);
1305 if (expires.tv64 < expires_next.tv64)
1306 expires_next = expires;
1307 break;
1308 }
1309
1310 __run_hrtimer(timer, &basenow);
1311 }
1312 base++;
1313 }
1314
1315
1316
1317
1318
1319 cpu_base->expires_next = expires_next;
1320 raw_spin_unlock(&cpu_base->lock);
1321
1322
1323 if (expires_next.tv64 == KTIME_MAX ||
1324 !tick_program_event(expires_next, 0)) {
1325 cpu_base->hang_detected = 0;
1326 return;
1327 }
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339 now = ktime_get();
1340 cpu_base->nr_retries++;
1341 if (++retries < 3)
1342 goto retry;
1343
1344
1345
1346
1347
1348
1349 cpu_base->nr_hangs++;
1350 cpu_base->hang_detected = 1;
1351 delta = ktime_sub(now, entry_time);
1352 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1353 cpu_base->max_hang_time = delta;
1354
1355
1356
1357
1358 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1359 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1360 else
1361 expires_next = ktime_add(now, delta);
1362 tick_program_event(expires_next, 1);
1363 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1364 ktime_to_ns(delta));
1365}
1366
1367
1368
1369
1370
1371static void __hrtimer_peek_ahead_timers(void)
1372{
1373 struct tick_device *td;
1374
1375 if (!hrtimer_hres_active())
1376 return;
1377
1378 td = &__get_cpu_var(tick_cpu_device);
1379 if (td && td->evtdev)
1380 hrtimer_interrupt(td->evtdev);
1381}
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392void hrtimer_peek_ahead_timers(void)
1393{
1394 unsigned long flags;
1395
1396 local_irq_save(flags);
1397 __hrtimer_peek_ahead_timers();
1398 local_irq_restore(flags);
1399}
1400
1401static void run_hrtimer_softirq(struct softirq_action *h)
1402{
1403 hrtimer_peek_ahead_timers();
1404}
1405
1406#else
1407
1408static inline void __hrtimer_peek_ahead_timers(void) { }
1409
1410#endif
1411
1412
1413
1414
1415
1416
1417
1418
1419void hrtimer_run_pending(void)
1420{
1421 if (hrtimer_hres_active())
1422 return;
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
1433 hrtimer_switch_to_hres();
1434}
1435
1436
1437
1438
1439void hrtimer_run_queues(void)
1440{
1441 struct rb_node *node;
1442 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1443 struct hrtimer_clock_base *base;
1444 int index, gettime = 1;
1445
1446 if (hrtimer_hres_active())
1447 return;
1448
1449 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1450 base = &cpu_base->clock_base[index];
1451
1452 if (!base->first)
1453 continue;
1454
1455 if (gettime) {
1456 hrtimer_get_softirq_time(cpu_base);
1457 gettime = 0;
1458 }
1459
1460 raw_spin_lock(&cpu_base->lock);
1461
1462 while ((node = base->first)) {
1463 struct hrtimer *timer;
1464
1465 timer = rb_entry(node, struct hrtimer, node);
1466 if (base->softirq_time.tv64 <=
1467 hrtimer_get_expires_tv64(timer))
1468 break;
1469
1470 __run_hrtimer(timer, &base->softirq_time);
1471 }
1472 raw_spin_unlock(&cpu_base->lock);
1473 }
1474}
1475
1476
1477
1478
1479static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
1480{
1481 struct hrtimer_sleeper *t =
1482 container_of(timer, struct hrtimer_sleeper, timer);
1483 struct task_struct *task = t->task;
1484
1485 t->task = NULL;
1486 if (task)
1487 wake_up_process(task);
1488
1489 return HRTIMER_NORESTART;
1490}
1491
1492void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
1493{
1494 sl->timer.function = hrtimer_wakeup;
1495 sl->task = task;
1496}
1497EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
1498
1499static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
1500{
1501 hrtimer_init_sleeper(t, current);
1502
1503 do {
1504 set_current_state(TASK_INTERRUPTIBLE);
1505 hrtimer_start_expires(&t->timer, mode);
1506 if (!hrtimer_active(&t->timer))
1507 t->task = NULL;
1508
1509 if (likely(t->task))
1510 schedule();
1511
1512 hrtimer_cancel(&t->timer);
1513 mode = HRTIMER_MODE_ABS;
1514
1515 } while (t->task && !signal_pending(current));
1516
1517 __set_current_state(TASK_RUNNING);
1518
1519 return t->task == NULL;
1520}
1521
1522static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1523{
1524 struct timespec rmt;
1525 ktime_t rem;
1526
1527 rem = hrtimer_expires_remaining(timer);
1528 if (rem.tv64 <= 0)
1529 return 0;
1530 rmt = ktime_to_timespec(rem);
1531
1532 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1533 return -EFAULT;
1534
1535 return 1;
1536}
1537
1538long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
1539{
1540 struct hrtimer_sleeper t;
1541 struct timespec __user *rmtp;
1542 int ret = 0;
1543
1544 hrtimer_init_on_stack(&t.timer, restart->nanosleep.index,
1545 HRTIMER_MODE_ABS);
1546 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
1547
1548 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
1549 goto out;
1550
1551 rmtp = restart->nanosleep.rmtp;
1552 if (rmtp) {
1553 ret = update_rmtp(&t.timer, rmtp);
1554 if (ret <= 0)
1555 goto out;
1556 }
1557
1558
1559 ret = -ERESTART_RESTARTBLOCK;
1560out:
1561 destroy_hrtimer_on_stack(&t.timer);
1562 return ret;
1563}
1564
1565long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
1566 const enum hrtimer_mode mode, const clockid_t clockid)
1567{
1568 struct restart_block *restart;
1569 struct hrtimer_sleeper t;
1570 int ret = 0;
1571 unsigned long slack;
1572
1573 slack = current->timer_slack_ns;
1574 if (rt_task(current))
1575 slack = 0;
1576
1577 hrtimer_init_on_stack(&t.timer, clockid, mode);
1578 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
1579 if (do_nanosleep(&t, mode))
1580 goto out;
1581
1582
1583 if (mode == HRTIMER_MODE_ABS) {
1584 ret = -ERESTARTNOHAND;
1585 goto out;
1586 }
1587
1588 if (rmtp) {
1589 ret = update_rmtp(&t.timer, rmtp);
1590 if (ret <= 0)
1591 goto out;
1592 }
1593
1594 restart = ¤t_thread_info()->restart_block;
1595 restart->fn = hrtimer_nanosleep_restart;
1596 restart->nanosleep.index = t.timer.base->index;
1597 restart->nanosleep.rmtp = rmtp;
1598 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
1599
1600 ret = -ERESTART_RESTARTBLOCK;
1601out:
1602 destroy_hrtimer_on_stack(&t.timer);
1603 return ret;
1604}
1605
1606SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1607 struct timespec __user *, rmtp)
1608{
1609 struct timespec tu;
1610
1611 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1612 return -EFAULT;
1613
1614 if (!timespec_valid(&tu))
1615 return -EINVAL;
1616
1617 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
1618}
1619
1620
1621
1622
1623static void __cpuinit init_hrtimers_cpu(int cpu)
1624{
1625 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
1626 int i;
1627
1628 raw_spin_lock_init(&cpu_base->lock);
1629
1630 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
1631 cpu_base->clock_base[i].cpu_base = cpu_base;
1632
1633 hrtimer_init_hres(cpu_base);
1634}
1635
1636#ifdef CONFIG_HOTPLUG_CPU
1637
1638static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
1639 struct hrtimer_clock_base *new_base)
1640{
1641 struct hrtimer *timer;
1642 struct rb_node *node;
1643
1644 while ((node = rb_first(&old_base->active))) {
1645 timer = rb_entry(node, struct hrtimer, node);
1646 BUG_ON(hrtimer_callback_running(timer));
1647 debug_deactivate(timer);
1648
1649
1650
1651
1652
1653
1654 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
1655 timer->base = new_base;
1656
1657
1658
1659
1660
1661
1662
1663
1664 enqueue_hrtimer(timer, new_base);
1665
1666
1667 timer->state &= ~HRTIMER_STATE_MIGRATE;
1668 }
1669}
1670
1671static void migrate_hrtimers(int scpu)
1672{
1673 struct hrtimer_cpu_base *old_base, *new_base;
1674 int i;
1675
1676 BUG_ON(cpu_online(scpu));
1677 tick_cancel_sched_timer(scpu);
1678
1679 local_irq_disable();
1680 old_base = &per_cpu(hrtimer_bases, scpu);
1681 new_base = &__get_cpu_var(hrtimer_bases);
1682
1683
1684
1685
1686 raw_spin_lock(&new_base->lock);
1687 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
1688
1689 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1690 migrate_hrtimer_list(&old_base->clock_base[i],
1691 &new_base->clock_base[i]);
1692 }
1693
1694 raw_spin_unlock(&old_base->lock);
1695 raw_spin_unlock(&new_base->lock);
1696
1697
1698 __hrtimer_peek_ahead_timers();
1699 local_irq_enable();
1700}
1701
1702#endif
1703
1704static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
1705 unsigned long action, void *hcpu)
1706{
1707 int scpu = (long)hcpu;
1708
1709 switch (action) {
1710
1711 case CPU_UP_PREPARE:
1712 case CPU_UP_PREPARE_FROZEN:
1713 init_hrtimers_cpu(scpu);
1714 break;
1715
1716#ifdef CONFIG_HOTPLUG_CPU
1717 case CPU_DYING:
1718 case CPU_DYING_FROZEN:
1719 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DYING, &scpu);
1720 break;
1721 case CPU_DEAD:
1722 case CPU_DEAD_FROZEN:
1723 {
1724 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
1725 migrate_hrtimers(scpu);
1726 break;
1727 }
1728#endif
1729
1730 default:
1731 break;
1732 }
1733
1734 return NOTIFY_OK;
1735}
1736
1737static struct notifier_block __cpuinitdata hrtimers_nb = {
1738 .notifier_call = hrtimer_cpu_notify,
1739};
1740
1741void __init hrtimers_init(void)
1742{
1743 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1744 (void *)(long)smp_processor_id());
1745 register_cpu_notifier(&hrtimers_nb);
1746#ifdef CONFIG_HIGH_RES_TIMERS
1747 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1748#endif
1749}
1750
1751
1752
1753
1754
1755
1756
1757
1758int __sched
1759schedule_hrtimeout_range_clock(ktime_t *expires, unsigned long delta,
1760 const enum hrtimer_mode mode, int clock)
1761{
1762 struct hrtimer_sleeper t;
1763
1764
1765
1766
1767
1768 if (expires && !expires->tv64) {
1769 __set_current_state(TASK_RUNNING);
1770 return 0;
1771 }
1772
1773
1774
1775
1776 if (!expires) {
1777 schedule();
1778 __set_current_state(TASK_RUNNING);
1779 return -EINTR;
1780 }
1781
1782 hrtimer_init_on_stack(&t.timer, clock, mode);
1783 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1784
1785 hrtimer_init_sleeper(&t, current);
1786
1787 hrtimer_start_expires(&t.timer, mode);
1788 if (!hrtimer_active(&t.timer))
1789 t.task = NULL;
1790
1791 if (likely(t.task))
1792 schedule();
1793
1794 hrtimer_cancel(&t.timer);
1795 destroy_hrtimer_on_stack(&t.timer);
1796
1797 __set_current_state(TASK_RUNNING);
1798
1799 return !t.task ? 0 : -EINTR;
1800}
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
1831 const enum hrtimer_mode mode)
1832{
1833 return schedule_hrtimeout_range_clock(expires, delta, mode,
1834 CLOCK_MONOTONIC);
1835}
1836EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860int __sched schedule_hrtimeout(ktime_t *expires,
1861 const enum hrtimer_mode mode)
1862{
1863 return schedule_hrtimeout_range(expires, 0, mode);
1864}
1865EXPORT_SYMBOL_GPL(schedule_hrtimeout);
1866