1
2
3
4
5
6
7
8
9
10
11#define KMSG_COMPONENT "cpum_sf"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
14#include <linux/kernel.h>
15#include <linux/kernel_stat.h>
16#include <linux/perf_event.h>
17#include <linux/percpu.h>
18#include <linux/notifier.h>
19#include <linux/export.h>
20#include <linux/slab.h>
21#include <linux/mm.h>
22#include <linux/moduleparam.h>
23#include <asm/cpu_mf.h>
24#include <asm/irq.h>
25#include <asm/debug.h>
26#include <asm/timex.h>
27
28
29
30
31
32#define CPUM_SF_MIN_SDBT 1
33
34
35
36
37
38#define CPUM_SF_SDB_PER_TABLE ((PAGE_SIZE - 8) / 8)
39
40
41
42
43
44#define CPUM_SF_SDBT_TL_OFFSET (CPUM_SF_SDB_PER_TABLE * 8)
45static inline int require_table_link(const void *sdbt)
46{
47 return ((unsigned long) sdbt & ~PAGE_MASK) == CPUM_SF_SDBT_TL_OFFSET;
48}
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68static unsigned long __read_mostly CPUM_SF_MIN_SDB = 15;
69static unsigned long __read_mostly CPUM_SF_MAX_SDB = 8176;
70static unsigned long __read_mostly CPUM_SF_SDB_DIAG_FACTOR = 1;
71
72struct sf_buffer {
73 unsigned long *sdbt;
74
75 unsigned long num_sdb;
76 unsigned long num_sdbt;
77 unsigned long *tail;
78};
79
80struct cpu_hw_sf {
81
82 struct hws_qsi_info_block qsi;
83
84 struct hws_lsctl_request_block lsctl;
85 struct sf_buffer sfb;
86 unsigned int flags;
87 struct perf_event *event;
88};
89static DEFINE_PER_CPU(struct cpu_hw_sf, cpu_hw_sf);
90
91
92static debug_info_t *sfdbg;
93
94
95
96
97static int sf_disable(void)
98{
99 struct hws_lsctl_request_block sreq;
100
101 memset(&sreq, 0, sizeof(sreq));
102 return lsctl(&sreq);
103}
104
105
106
107
108static int sf_buffer_available(struct cpu_hw_sf *cpuhw)
109{
110 return !!cpuhw->sfb.sdbt;
111}
112
113
114
115
116static void free_sampling_buffer(struct sf_buffer *sfb)
117{
118 unsigned long *sdbt, *curr;
119
120 if (!sfb->sdbt)
121 return;
122
123 sdbt = sfb->sdbt;
124 curr = sdbt;
125
126
127 while (1) {
128 if (!*curr || !sdbt)
129 break;
130
131
132 if (is_link_entry(curr)) {
133 curr = get_next_sdbt(curr);
134 if (sdbt)
135 free_page((unsigned long) sdbt);
136
137
138 if (curr == sfb->sdbt)
139 break;
140 else
141 sdbt = curr;
142 } else {
143
144 if (*curr) {
145 free_page(*curr);
146 curr++;
147 }
148 }
149 }
150
151 debug_sprintf_event(sfdbg, 5,
152 "free_sampling_buffer: freed sdbt=%p\n", sfb->sdbt);
153 memset(sfb, 0, sizeof(*sfb));
154}
155
156static int alloc_sample_data_block(unsigned long *sdbt, gfp_t gfp_flags)
157{
158 unsigned long sdb, *trailer;
159
160
161 sdb = get_zeroed_page(gfp_flags);
162 if (!sdb)
163 return -ENOMEM;
164 trailer = trailer_entry_ptr(sdb);
165 *trailer = SDB_TE_ALERT_REQ_MASK;
166
167
168 *sdbt = sdb;
169
170 return 0;
171}
172
173
174
175
176
177
178
179
180
181
182
183
184static int realloc_sampling_buffer(struct sf_buffer *sfb,
185 unsigned long num_sdb, gfp_t gfp_flags)
186{
187 int i, rc;
188 unsigned long *new, *tail;
189
190 if (!sfb->sdbt || !sfb->tail)
191 return -EINVAL;
192
193 if (!is_link_entry(sfb->tail))
194 return -EINVAL;
195
196
197
198
199
200
201 tail = sfb->tail;
202
203
204
205
206 if (sfb->sdbt != get_next_sdbt(tail)) {
207 debug_sprintf_event(sfdbg, 3, "realloc_sampling_buffer: "
208 "sampling buffer is not linked: origin=%p"
209 "tail=%p\n",
210 (void *) sfb->sdbt, (void *) tail);
211 return -EINVAL;
212 }
213
214
215 rc = 0;
216 for (i = 0; i < num_sdb; i++) {
217
218 if (require_table_link(tail)) {
219 new = (unsigned long *) get_zeroed_page(gfp_flags);
220 if (!new) {
221 rc = -ENOMEM;
222 break;
223 }
224 sfb->num_sdbt++;
225
226 *tail = (unsigned long)(void *) new + 1;
227 tail = new;
228 }
229
230
231
232
233
234
235 rc = alloc_sample_data_block(tail, gfp_flags);
236 if (rc)
237 break;
238 sfb->num_sdb++;
239 tail++;
240 }
241
242
243 *tail = (unsigned long) sfb->sdbt + 1;
244 sfb->tail = tail;
245
246 debug_sprintf_event(sfdbg, 4, "realloc_sampling_buffer: new buffer"
247 " settings: sdbt=%lu sdb=%lu\n",
248 sfb->num_sdbt, sfb->num_sdb);
249 return rc;
250}
251
252
253
254
255
256
257
258
259
260
261
262
263static int alloc_sampling_buffer(struct sf_buffer *sfb, unsigned long num_sdb)
264{
265 int rc;
266
267 if (sfb->sdbt)
268 return -EINVAL;
269
270
271 sfb->sdbt = (unsigned long *) get_zeroed_page(GFP_KERNEL);
272 if (!sfb->sdbt)
273 return -ENOMEM;
274 sfb->num_sdb = 0;
275 sfb->num_sdbt = 1;
276
277
278
279
280 sfb->tail = sfb->sdbt;
281 *sfb->tail = (unsigned long)(void *) sfb->sdbt + 1;
282
283
284 rc = realloc_sampling_buffer(sfb, num_sdb, GFP_KERNEL);
285 if (rc) {
286 free_sampling_buffer(sfb);
287 debug_sprintf_event(sfdbg, 4, "alloc_sampling_buffer: "
288 "realloc_sampling_buffer failed with rc=%i\n", rc);
289 } else
290 debug_sprintf_event(sfdbg, 4,
291 "alloc_sampling_buffer: tear=%p dear=%p\n",
292 sfb->sdbt, (void *) *sfb->sdbt);
293 return rc;
294}
295
296static void sfb_set_limits(unsigned long min, unsigned long max)
297{
298 struct hws_qsi_info_block si;
299
300 CPUM_SF_MIN_SDB = min;
301 CPUM_SF_MAX_SDB = max;
302
303 memset(&si, 0, sizeof(si));
304 if (!qsi(&si))
305 CPUM_SF_SDB_DIAG_FACTOR = DIV_ROUND_UP(si.dsdes, si.bsdes);
306}
307
308static unsigned long sfb_max_limit(struct hw_perf_event *hwc)
309{
310 return SAMPL_DIAG_MODE(hwc) ? CPUM_SF_MAX_SDB * CPUM_SF_SDB_DIAG_FACTOR
311 : CPUM_SF_MAX_SDB;
312}
313
314static unsigned long sfb_pending_allocs(struct sf_buffer *sfb,
315 struct hw_perf_event *hwc)
316{
317 if (!sfb->sdbt)
318 return SFB_ALLOC_REG(hwc);
319 if (SFB_ALLOC_REG(hwc) > sfb->num_sdb)
320 return SFB_ALLOC_REG(hwc) - sfb->num_sdb;
321 return 0;
322}
323
324static int sfb_has_pending_allocs(struct sf_buffer *sfb,
325 struct hw_perf_event *hwc)
326{
327 return sfb_pending_allocs(sfb, hwc) > 0;
328}
329
330static void sfb_account_allocs(unsigned long num, struct hw_perf_event *hwc)
331{
332
333 num = min_t(unsigned long, num, sfb_max_limit(hwc) - SFB_ALLOC_REG(hwc));
334 if (num)
335 SFB_ALLOC_REG(hwc) += num;
336}
337
338static void sfb_init_allocs(unsigned long num, struct hw_perf_event *hwc)
339{
340 SFB_ALLOC_REG(hwc) = 0;
341 sfb_account_allocs(num, hwc);
342}
343
344static size_t event_sample_size(struct hw_perf_event *hwc)
345{
346 struct sf_raw_sample *sfr = (struct sf_raw_sample *) RAWSAMPLE_REG(hwc);
347 size_t sample_size;
348
349
350
351
352
353 sample_size = sfr->bsdes;
354 if (SAMPL_DIAG_MODE(hwc))
355 sample_size += sfr->dsdes;
356
357 return sample_size;
358}
359
360static void deallocate_buffers(struct cpu_hw_sf *cpuhw)
361{
362 if (cpuhw->sfb.sdbt)
363 free_sampling_buffer(&cpuhw->sfb);
364}
365
366static int allocate_buffers(struct cpu_hw_sf *cpuhw, struct hw_perf_event *hwc)
367{
368 unsigned long n_sdb, freq, factor;
369 size_t sfr_size, sample_size;
370 struct sf_raw_sample *sfr;
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388 sfr_size = ALIGN((sizeof(*sfr) - sizeof(sfr->diag) + cpuhw->qsi.dsdes) +
389 sizeof(u32), sizeof(u64));
390 sfr_size -= sizeof(u32);
391 sfr = kzalloc(sfr_size, GFP_KERNEL);
392 if (!sfr)
393 return -ENOMEM;
394 sfr->size = sfr_size;
395 sfr->bsdes = cpuhw->qsi.bsdes;
396 sfr->dsdes = cpuhw->qsi.dsdes;
397 RAWSAMPLE_REG(hwc) = (unsigned long) sfr;
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423 sample_size = event_sample_size(hwc);
424 freq = sample_rate_to_freq(&cpuhw->qsi, SAMPL_RATE(hwc));
425 factor = 1;
426 n_sdb = DIV_ROUND_UP(freq, factor * ((PAGE_SIZE-64) / sample_size));
427 if (n_sdb < CPUM_SF_MIN_SDB)
428 n_sdb = CPUM_SF_MIN_SDB;
429
430
431
432
433
434
435
436
437
438 sfb_init_allocs(n_sdb, hwc);
439 if (sf_buffer_available(cpuhw))
440 return 0;
441
442 debug_sprintf_event(sfdbg, 3,
443 "allocate_buffers: rate=%lu f=%lu sdb=%lu/%lu"
444 " sample_size=%lu cpuhw=%p\n",
445 SAMPL_RATE(hwc), freq, n_sdb, sfb_max_limit(hwc),
446 sample_size, cpuhw);
447
448 return alloc_sampling_buffer(&cpuhw->sfb,
449 sfb_pending_allocs(&cpuhw->sfb, hwc));
450}
451
452static unsigned long min_percent(unsigned int percent, unsigned long base,
453 unsigned long min)
454{
455 return min_t(unsigned long, min, DIV_ROUND_UP(percent * base, 100));
456}
457
458static unsigned long compute_sfb_extent(unsigned long ratio, unsigned long base)
459{
460
461
462
463
464
465 if (ratio <= 5)
466 return 0;
467 if (ratio <= 25)
468 return min_percent(1, base, 1);
469 if (ratio <= 50)
470 return min_percent(1, base, 1);
471 if (ratio <= 75)
472 return min_percent(2, base, 2);
473 if (ratio <= 100)
474 return min_percent(3, base, 3);
475 if (ratio <= 250)
476 return min_percent(4, base, 4);
477
478 return min_percent(5, base, 8);
479}
480
481static void sfb_account_overflows(struct cpu_hw_sf *cpuhw,
482 struct hw_perf_event *hwc)
483{
484 unsigned long ratio, num;
485
486 if (!OVERFLOW_REG(hwc))
487 return;
488
489
490
491
492
493
494
495
496 ratio = DIV_ROUND_UP(100 * OVERFLOW_REG(hwc) * cpuhw->sfb.num_sdb,
497 sample_rate_to_freq(&cpuhw->qsi, SAMPL_RATE(hwc)));
498
499
500 num = compute_sfb_extent(ratio, cpuhw->sfb.num_sdb);
501 if (num)
502 sfb_account_allocs(num, hwc);
503
504 debug_sprintf_event(sfdbg, 5, "sfb: overflow: overflow=%llu ratio=%lu"
505 " num=%lu\n", OVERFLOW_REG(hwc), ratio, num);
506 OVERFLOW_REG(hwc) = 0;
507}
508
509
510
511
512
513
514
515
516
517
518
519
520static void extend_sampling_buffer(struct sf_buffer *sfb,
521 struct hw_perf_event *hwc)
522{
523 unsigned long num, num_old;
524 int rc;
525
526 num = sfb_pending_allocs(sfb, hwc);
527 if (!num)
528 return;
529 num_old = sfb->num_sdb;
530
531
532
533
534 sf_disable();
535
536
537
538
539
540
541 rc = realloc_sampling_buffer(sfb, num, GFP_ATOMIC);
542 if (rc)
543 debug_sprintf_event(sfdbg, 5, "sfb: extend: realloc "
544 "failed with rc=%i\n", rc);
545
546 if (sfb_has_pending_allocs(sfb, hwc))
547 debug_sprintf_event(sfdbg, 5, "sfb: extend: "
548 "req=%lu alloc=%lu remaining=%lu\n",
549 num, sfb->num_sdb - num_old,
550 sfb_pending_allocs(sfb, hwc));
551}
552
553
554
555static atomic_t num_events;
556
557static DEFINE_MUTEX(pmc_reserve_mutex);
558
559#define PMC_INIT 0
560#define PMC_RELEASE 1
561#define PMC_FAILURE 2
562static void setup_pmc_cpu(void *flags)
563{
564 int err;
565 struct cpu_hw_sf *cpusf = this_cpu_ptr(&cpu_hw_sf);
566
567 err = 0;
568 switch (*((int *) flags)) {
569 case PMC_INIT:
570 memset(cpusf, 0, sizeof(*cpusf));
571 err = qsi(&cpusf->qsi);
572 if (err)
573 break;
574 cpusf->flags |= PMU_F_RESERVED;
575 err = sf_disable();
576 if (err)
577 pr_err("Switching off the sampling facility failed "
578 "with rc=%i\n", err);
579 debug_sprintf_event(sfdbg, 5,
580 "setup_pmc_cpu: initialized: cpuhw=%p\n", cpusf);
581 break;
582 case PMC_RELEASE:
583 cpusf->flags &= ~PMU_F_RESERVED;
584 err = sf_disable();
585 if (err) {
586 pr_err("Switching off the sampling facility failed "
587 "with rc=%i\n", err);
588 } else
589 deallocate_buffers(cpusf);
590 debug_sprintf_event(sfdbg, 5,
591 "setup_pmc_cpu: released: cpuhw=%p\n", cpusf);
592 break;
593 }
594 if (err)
595 *((int *) flags) |= PMC_FAILURE;
596}
597
598static void release_pmc_hardware(void)
599{
600 int flags = PMC_RELEASE;
601
602 irq_subclass_unregister(IRQ_SUBCLASS_MEASUREMENT_ALERT);
603 on_each_cpu(setup_pmc_cpu, &flags, 1);
604 perf_release_sampling();
605}
606
607static int reserve_pmc_hardware(void)
608{
609 int flags = PMC_INIT;
610 int err;
611
612 err = perf_reserve_sampling();
613 if (err)
614 return err;
615 on_each_cpu(setup_pmc_cpu, &flags, 1);
616 if (flags & PMC_FAILURE) {
617 release_pmc_hardware();
618 return -ENODEV;
619 }
620 irq_subclass_register(IRQ_SUBCLASS_MEASUREMENT_ALERT);
621
622 return 0;
623}
624
625static void hw_perf_event_destroy(struct perf_event *event)
626{
627
628 if (RAWSAMPLE_REG(&event->hw))
629 kfree((void *) RAWSAMPLE_REG(&event->hw));
630
631
632 if (!atomic_add_unless(&num_events, -1, 1)) {
633 mutex_lock(&pmc_reserve_mutex);
634 if (atomic_dec_return(&num_events) == 0)
635 release_pmc_hardware();
636 mutex_unlock(&pmc_reserve_mutex);
637 }
638}
639
640static void hw_init_period(struct hw_perf_event *hwc, u64 period)
641{
642 hwc->sample_period = period;
643 hwc->last_period = hwc->sample_period;
644 local64_set(&hwc->period_left, hwc->sample_period);
645}
646
647static void hw_reset_registers(struct hw_perf_event *hwc,
648 unsigned long *sdbt_origin)
649{
650 struct sf_raw_sample *sfr;
651
652
653 TEAR_REG(hwc) = (unsigned long) sdbt_origin;
654
655
656 sfr = (struct sf_raw_sample *) RAWSAMPLE_REG(hwc);
657 memset(&sfr->basic, 0, sizeof(sfr->basic));
658 memset(&sfr->diag, 0, sfr->dsdes);
659}
660
661static unsigned long hw_limit_rate(const struct hws_qsi_info_block *si,
662 unsigned long rate)
663{
664 return clamp_t(unsigned long, rate,
665 si->min_sampl_rate, si->max_sampl_rate);
666}
667
668static int __hw_perf_event_init(struct perf_event *event)
669{
670 struct cpu_hw_sf *cpuhw;
671 struct hws_qsi_info_block si;
672 struct perf_event_attr *attr = &event->attr;
673 struct hw_perf_event *hwc = &event->hw;
674 unsigned long rate;
675 int cpu, err;
676
677
678 err = 0;
679 if (!atomic_inc_not_zero(&num_events)) {
680 mutex_lock(&pmc_reserve_mutex);
681 if (atomic_read(&num_events) == 0 && reserve_pmc_hardware())
682 err = -EBUSY;
683 else
684 atomic_inc(&num_events);
685 mutex_unlock(&pmc_reserve_mutex);
686 }
687 event->destroy = hw_perf_event_destroy;
688
689 if (err)
690 goto out;
691
692
693
694
695
696
697
698
699
700
701 memset(&si, 0, sizeof(si));
702 cpuhw = NULL;
703 if (event->cpu == -1)
704 qsi(&si);
705 else {
706
707
708
709 cpuhw = &per_cpu(cpu_hw_sf, event->cpu);
710 si = cpuhw->qsi;
711 }
712
713
714
715
716
717 if (!si.as) {
718 err = -ENOENT;
719 goto out;
720 }
721
722
723 SAMPL_FLAGS(hwc) = PERF_CPUM_SF_BASIC_MODE;
724
725
726
727
728 if (attr->config == PERF_EVENT_CPUM_SF_DIAG) {
729 if (!si.ad) {
730 err = -EPERM;
731 goto out;
732 }
733 SAMPL_FLAGS(hwc) |= PERF_CPUM_SF_DIAG_MODE;
734 }
735
736
737 if (attr->config1 & PERF_CPUM_SF_FULL_BLOCKS)
738 SAMPL_FLAGS(hwc) |= PERF_CPUM_SF_FULL_BLOCKS;
739
740
741
742
743
744
745 rate = 0;
746 if (attr->freq) {
747 rate = freq_to_sample_rate(&si, attr->sample_freq);
748 rate = hw_limit_rate(&si, rate);
749 attr->freq = 0;
750 attr->sample_period = rate;
751 } else {
752
753
754
755
756 rate = hw_limit_rate(&si, hwc->sample_period);
757
758
759
760
761
762
763
764 if (sample_rate_to_freq(&si, rate) >
765 sysctl_perf_event_sample_rate) {
766 err = -EINVAL;
767 debug_sprintf_event(sfdbg, 1, "Sampling rate exceeds maximum perf sample rate\n");
768 goto out;
769 }
770 }
771 SAMPL_RATE(hwc) = rate;
772 hw_init_period(hwc, SAMPL_RATE(hwc));
773
774
775 hwc->extra_reg.reg = REG_OVERFLOW;
776 OVERFLOW_REG(hwc) = 0;
777
778
779
780
781
782
783 if (cpuhw)
784
785 err = allocate_buffers(cpuhw, hwc);
786 else {
787
788
789
790 for_each_online_cpu(cpu) {
791 cpuhw = &per_cpu(cpu_hw_sf, cpu);
792 err = allocate_buffers(cpuhw, hwc);
793 if (err)
794 break;
795 }
796 }
797out:
798 return err;
799}
800
801static int cpumsf_pmu_event_init(struct perf_event *event)
802{
803 int err;
804
805
806 if (has_branch_stack(event))
807 return -EOPNOTSUPP;
808
809 switch (event->attr.type) {
810 case PERF_TYPE_RAW:
811 if ((event->attr.config != PERF_EVENT_CPUM_SF) &&
812 (event->attr.config != PERF_EVENT_CPUM_SF_DIAG))
813 return -ENOENT;
814 break;
815 case PERF_TYPE_HARDWARE:
816
817
818
819
820
821 if (event->attr.config != PERF_COUNT_HW_CPU_CYCLES)
822 return -ENOENT;
823 if (!is_sampling_event(event))
824 return -ENOENT;
825 break;
826 default:
827 return -ENOENT;
828 }
829
830
831 if (event->cpu >= nr_cpumask_bits ||
832 (event->cpu >= 0 && !cpu_online(event->cpu)))
833 return -ENODEV;
834
835
836
837
838 if (event->attr.exclude_hv)
839 event->attr.exclude_hv = 0;
840 if (event->attr.exclude_idle)
841 event->attr.exclude_idle = 0;
842
843 err = __hw_perf_event_init(event);
844 if (unlikely(err))
845 if (event->destroy)
846 event->destroy(event);
847 return err;
848}
849
850static void cpumsf_pmu_enable(struct pmu *pmu)
851{
852 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
853 struct hw_perf_event *hwc;
854 int err;
855
856 if (cpuhw->flags & PMU_F_ENABLED)
857 return;
858
859 if (cpuhw->flags & PMU_F_ERR_MASK)
860 return;
861
862
863
864
865
866
867
868
869
870
871
872
873 if (cpuhw->event) {
874 hwc = &cpuhw->event->hw;
875
876 sfb_account_overflows(cpuhw, hwc);
877 if (sfb_has_pending_allocs(&cpuhw->sfb, hwc))
878 extend_sampling_buffer(&cpuhw->sfb, hwc);
879 }
880
881
882 cpuhw->flags |= PMU_F_ENABLED;
883 barrier();
884
885 err = lsctl(&cpuhw->lsctl);
886 if (err) {
887 cpuhw->flags &= ~PMU_F_ENABLED;
888 pr_err("Loading sampling controls failed: op=%i err=%i\n",
889 1, err);
890 return;
891 }
892
893 debug_sprintf_event(sfdbg, 6, "pmu_enable: es=%i cs=%i ed=%i cd=%i "
894 "tear=%p dear=%p\n", cpuhw->lsctl.es, cpuhw->lsctl.cs,
895 cpuhw->lsctl.ed, cpuhw->lsctl.cd,
896 (void *) cpuhw->lsctl.tear, (void *) cpuhw->lsctl.dear);
897}
898
899static void cpumsf_pmu_disable(struct pmu *pmu)
900{
901 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
902 struct hws_lsctl_request_block inactive;
903 struct hws_qsi_info_block si;
904 int err;
905
906 if (!(cpuhw->flags & PMU_F_ENABLED))
907 return;
908
909 if (cpuhw->flags & PMU_F_ERR_MASK)
910 return;
911
912
913 inactive = cpuhw->lsctl;
914 inactive.cs = 0;
915 inactive.cd = 0;
916
917 err = lsctl(&inactive);
918 if (err) {
919 pr_err("Loading sampling controls failed: op=%i err=%i\n",
920 2, err);
921 return;
922 }
923
924
925 if (!qsi(&si)) {
926
927
928
929
930
931 if (si.es) {
932 cpuhw->lsctl.tear = si.tear;
933 cpuhw->lsctl.dear = si.dear;
934 }
935 } else
936 debug_sprintf_event(sfdbg, 3, "cpumsf_pmu_disable: "
937 "qsi() failed with err=%i\n", err);
938
939 cpuhw->flags &= ~PMU_F_ENABLED;
940}
941
942
943
944
945
946
947
948
949
950
951static int perf_exclude_event(struct perf_event *event, struct pt_regs *regs,
952 struct perf_sf_sde_regs *sde_regs)
953{
954 if (event->attr.exclude_user && user_mode(regs))
955 return 1;
956 if (event->attr.exclude_kernel && !user_mode(regs))
957 return 1;
958 if (event->attr.exclude_guest && sde_regs->in_guest)
959 return 1;
960 if (event->attr.exclude_host && !sde_regs->in_guest)
961 return 1;
962 return 0;
963}
964
965
966
967
968
969
970
971
972
973
974
975
976static int perf_push_sample(struct perf_event *event, struct sf_raw_sample *sfr)
977{
978 int overflow;
979 struct pt_regs regs;
980 struct perf_sf_sde_regs *sde_regs;
981 struct perf_sample_data data;
982 struct perf_raw_record raw;
983
984
985 perf_sample_data_init(&data, 0, event->hw.last_period);
986 raw.size = sfr->size;
987 raw.data = sfr;
988 data.raw = &raw;
989
990
991
992
993
994
995 memset(®s, 0, sizeof(regs));
996 regs.int_code = 0x1407;
997 regs.int_parm = CPU_MF_INT_SF_PRA;
998 sde_regs = (struct perf_sf_sde_regs *) ®s.int_parm_long;
999
1000 regs.psw.addr = sfr->basic.ia;
1001 if (sfr->basic.T)
1002 regs.psw.mask |= PSW_MASK_DAT;
1003 if (sfr->basic.W)
1004 regs.psw.mask |= PSW_MASK_WAIT;
1005 if (sfr->basic.P)
1006 regs.psw.mask |= PSW_MASK_PSTATE;
1007 switch (sfr->basic.AS) {
1008 case 0x0:
1009 regs.psw.mask |= PSW_ASC_PRIMARY;
1010 break;
1011 case 0x1:
1012 regs.psw.mask |= PSW_ASC_ACCREG;
1013 break;
1014 case 0x2:
1015 regs.psw.mask |= PSW_ASC_SECONDARY;
1016 break;
1017 case 0x3:
1018 regs.psw.mask |= PSW_ASC_HOME;
1019 break;
1020 }
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031 if (sfr->basic.gpp || sfr->basic.prim_asn != (u16) sfr->basic.hpp)
1032 sde_regs->in_guest = 1;
1033
1034 overflow = 0;
1035 if (perf_exclude_event(event, ®s, sde_regs))
1036 goto out;
1037 if (perf_event_overflow(event, &data, ®s)) {
1038 overflow = 1;
1039 event->pmu->stop(event, 0);
1040 }
1041 perf_event_update_userpage(event);
1042out:
1043 return overflow;
1044}
1045
1046static void perf_event_count_update(struct perf_event *event, u64 count)
1047{
1048 local64_add(count, &event->count);
1049}
1050
1051static int sample_format_is_valid(struct hws_combined_entry *sample,
1052 unsigned int flags)
1053{
1054 if (likely(flags & PERF_CPUM_SF_BASIC_MODE))
1055
1056
1057
1058 if (sample->basic.def != 0x0001)
1059 return 0;
1060 if (flags & PERF_CPUM_SF_DIAG_MODE)
1061
1062
1063
1064
1065 if (sample->diag.def < 0x8001)
1066 return 0;
1067 return 1;
1068}
1069
1070static int sample_is_consistent(struct hws_combined_entry *sample,
1071 unsigned long flags)
1072{
1073
1074
1075
1076
1077
1078 if (unlikely(!(flags & PERF_CPUM_SF_BASIC_MODE)))
1079 return 0;
1080
1081
1082
1083
1084
1085 if (sample->basic.I || sample->basic.W)
1086 return 0;
1087 return 1;
1088}
1089
1090static void reset_sample_slot(struct hws_combined_entry *sample,
1091 unsigned long flags)
1092{
1093 if (likely(flags & PERF_CPUM_SF_BASIC_MODE))
1094 sample->basic.def = 0;
1095 if (flags & PERF_CPUM_SF_DIAG_MODE)
1096 sample->diag.def = 0;
1097}
1098
1099static void sfr_store_sample(struct sf_raw_sample *sfr,
1100 struct hws_combined_entry *sample)
1101{
1102 if (likely(sfr->format & PERF_CPUM_SF_BASIC_MODE))
1103 sfr->basic = sample->basic;
1104 if (sfr->format & PERF_CPUM_SF_DIAG_MODE)
1105 memcpy(&sfr->diag, &sample->diag, sfr->dsdes);
1106}
1107
1108static void debug_sample_entry(struct hws_combined_entry *sample,
1109 struct hws_trailer_entry *te,
1110 unsigned long flags)
1111{
1112 debug_sprintf_event(sfdbg, 4, "hw_collect_samples: Found unknown "
1113 "sampling data entry: te->f=%i basic.def=%04x (%p)"
1114 " diag.def=%04x (%p)\n", te->f,
1115 sample->basic.def, &sample->basic,
1116 (flags & PERF_CPUM_SF_DIAG_MODE)
1117 ? sample->diag.def : 0xFFFF,
1118 (flags & PERF_CPUM_SF_DIAG_MODE)
1119 ? &sample->diag : NULL);
1120}
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142static void hw_collect_samples(struct perf_event *event, unsigned long *sdbt,
1143 unsigned long long *overflow)
1144{
1145 unsigned long flags = SAMPL_FLAGS(&event->hw);
1146 struct hws_combined_entry *sample;
1147 struct hws_trailer_entry *te;
1148 struct sf_raw_sample *sfr;
1149 size_t sample_size;
1150
1151
1152 sfr = (struct sf_raw_sample *) RAWSAMPLE_REG(&event->hw);
1153 sfr->format = flags & PERF_CPUM_SF_MODE_MASK;
1154
1155 sample_size = event_sample_size(&event->hw);
1156 te = (struct hws_trailer_entry *) trailer_entry_ptr(*sdbt);
1157 sample = (struct hws_combined_entry *) *sdbt;
1158 while ((unsigned long *) sample < (unsigned long *) te) {
1159
1160 if (!sample->basic.def)
1161 break;
1162
1163
1164 perf_event_count_update(event, SAMPL_RATE(&event->hw));
1165
1166
1167 if (sample_format_is_valid(sample, flags)) {
1168
1169
1170
1171
1172 if (!*overflow) {
1173 if (sample_is_consistent(sample, flags)) {
1174
1175 sfr_store_sample(sfr, sample);
1176 *overflow = perf_push_sample(event, sfr);
1177 }
1178 } else
1179
1180 *overflow += 1;
1181 } else {
1182 debug_sample_entry(sample, te, flags);
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193 if (!te->f)
1194 break;
1195 }
1196
1197
1198 reset_sample_slot(sample, flags);
1199 sample += sample_size;
1200 }
1201}
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217static void hw_perf_event_update(struct perf_event *event, int flush_all)
1218{
1219 struct hw_perf_event *hwc = &event->hw;
1220 struct hws_trailer_entry *te;
1221 unsigned long *sdbt;
1222 unsigned long long event_overflow, sampl_overflow, num_sdb, te_flags;
1223 int done;
1224
1225 if (flush_all && SDB_FULL_BLOCKS(hwc))
1226 flush_all = 0;
1227
1228 sdbt = (unsigned long *) TEAR_REG(hwc);
1229 done = event_overflow = sampl_overflow = num_sdb = 0;
1230 while (!done) {
1231
1232 te = (struct hws_trailer_entry *) trailer_entry_ptr(*sdbt);
1233
1234
1235 if (!te->f) {
1236 done = 1;
1237 if (!flush_all)
1238 break;
1239 }
1240
1241
1242 if (te->overflow)
1243
1244
1245
1246
1247 sampl_overflow += te->overflow;
1248
1249
1250 debug_sprintf_event(sfdbg, 6, "hw_perf_event_update: sdbt=%p "
1251 "overflow=%llu timestamp=0x%llx\n",
1252 sdbt, te->overflow,
1253 (te->f) ? trailer_timestamp(te) : 0ULL);
1254
1255
1256
1257
1258
1259 hw_collect_samples(event, sdbt, &event_overflow);
1260 num_sdb++;
1261
1262
1263 do {
1264 te_flags = te->flags & ~SDB_TE_BUFFER_FULL_MASK;
1265 te_flags |= SDB_TE_ALERT_REQ_MASK;
1266 } while (!cmpxchg_double(&te->flags, &te->overflow,
1267 te->flags, te->overflow,
1268 te_flags, 0ULL));
1269
1270
1271 sdbt++;
1272 if (is_link_entry(sdbt))
1273 sdbt = get_next_sdbt(sdbt);
1274
1275
1276 TEAR_REG(hwc) = (unsigned long) sdbt;
1277
1278
1279
1280
1281 if (flush_all && done)
1282 break;
1283
1284
1285
1286
1287 if (event_overflow)
1288 flush_all = 1;
1289 }
1290
1291
1292 if (sampl_overflow)
1293 OVERFLOW_REG(hwc) = DIV_ROUND_UP(OVERFLOW_REG(hwc) +
1294 sampl_overflow, 1 + num_sdb);
1295 if (sampl_overflow || event_overflow)
1296 debug_sprintf_event(sfdbg, 4, "hw_perf_event_update: "
1297 "overflow stats: sample=%llu event=%llu\n",
1298 sampl_overflow, event_overflow);
1299}
1300
1301static void cpumsf_pmu_read(struct perf_event *event)
1302{
1303
1304}
1305
1306
1307
1308
1309static void cpumsf_pmu_start(struct perf_event *event, int flags)
1310{
1311 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
1312
1313 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1314 return;
1315
1316 if (flags & PERF_EF_RELOAD)
1317 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1318
1319 perf_pmu_disable(event->pmu);
1320 event->hw.state = 0;
1321 cpuhw->lsctl.cs = 1;
1322 if (SAMPL_DIAG_MODE(&event->hw))
1323 cpuhw->lsctl.cd = 1;
1324 perf_pmu_enable(event->pmu);
1325}
1326
1327
1328
1329
1330static void cpumsf_pmu_stop(struct perf_event *event, int flags)
1331{
1332 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
1333
1334 if (event->hw.state & PERF_HES_STOPPED)
1335 return;
1336
1337 perf_pmu_disable(event->pmu);
1338 cpuhw->lsctl.cs = 0;
1339 cpuhw->lsctl.cd = 0;
1340 event->hw.state |= PERF_HES_STOPPED;
1341
1342 if ((flags & PERF_EF_UPDATE) && !(event->hw.state & PERF_HES_UPTODATE)) {
1343 hw_perf_event_update(event, 1);
1344 event->hw.state |= PERF_HES_UPTODATE;
1345 }
1346 perf_pmu_enable(event->pmu);
1347}
1348
1349static int cpumsf_pmu_add(struct perf_event *event, int flags)
1350{
1351 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
1352 int err;
1353
1354 if (cpuhw->flags & PMU_F_IN_USE)
1355 return -EAGAIN;
1356
1357 if (!cpuhw->sfb.sdbt)
1358 return -EINVAL;
1359
1360 err = 0;
1361 perf_pmu_disable(event->pmu);
1362
1363 event->hw.state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1364
1365
1366
1367
1368
1369
1370 cpuhw->lsctl.s = 0;
1371 cpuhw->lsctl.h = 1;
1372 cpuhw->lsctl.tear = (unsigned long) cpuhw->sfb.sdbt;
1373 cpuhw->lsctl.dear = *(unsigned long *) cpuhw->sfb.sdbt;
1374 cpuhw->lsctl.interval = SAMPL_RATE(&event->hw);
1375 hw_reset_registers(&event->hw, cpuhw->sfb.sdbt);
1376
1377
1378
1379 if (WARN_ON_ONCE(cpuhw->lsctl.es == 1 || cpuhw->lsctl.ed == 1)) {
1380 err = -EAGAIN;
1381 goto out;
1382 }
1383 cpuhw->lsctl.es = 1;
1384 if (SAMPL_DIAG_MODE(&event->hw))
1385 cpuhw->lsctl.ed = 1;
1386
1387
1388 cpuhw->event = event;
1389 cpuhw->flags |= PMU_F_IN_USE;
1390
1391 if (flags & PERF_EF_START)
1392 cpumsf_pmu_start(event, PERF_EF_RELOAD);
1393out:
1394 perf_event_update_userpage(event);
1395 perf_pmu_enable(event->pmu);
1396 return err;
1397}
1398
1399static void cpumsf_pmu_del(struct perf_event *event, int flags)
1400{
1401 struct cpu_hw_sf *cpuhw = this_cpu_ptr(&cpu_hw_sf);
1402
1403 perf_pmu_disable(event->pmu);
1404 cpumsf_pmu_stop(event, PERF_EF_UPDATE);
1405
1406 cpuhw->lsctl.es = 0;
1407 cpuhw->lsctl.ed = 0;
1408 cpuhw->flags &= ~PMU_F_IN_USE;
1409 cpuhw->event = NULL;
1410
1411 perf_event_update_userpage(event);
1412 perf_pmu_enable(event->pmu);
1413}
1414
1415CPUMF_EVENT_ATTR(SF, SF_CYCLES_BASIC, PERF_EVENT_CPUM_SF);
1416CPUMF_EVENT_ATTR(SF, SF_CYCLES_BASIC_DIAG, PERF_EVENT_CPUM_SF_DIAG);
1417
1418static struct attribute *cpumsf_pmu_events_attr[] = {
1419 CPUMF_EVENT_PTR(SF, SF_CYCLES_BASIC),
1420 NULL,
1421 NULL,
1422};
1423
1424PMU_FORMAT_ATTR(event, "config:0-63");
1425
1426static struct attribute *cpumsf_pmu_format_attr[] = {
1427 &format_attr_event.attr,
1428 NULL,
1429};
1430
1431static struct attribute_group cpumsf_pmu_events_group = {
1432 .name = "events",
1433 .attrs = cpumsf_pmu_events_attr,
1434};
1435static struct attribute_group cpumsf_pmu_format_group = {
1436 .name = "format",
1437 .attrs = cpumsf_pmu_format_attr,
1438};
1439static const struct attribute_group *cpumsf_pmu_attr_groups[] = {
1440 &cpumsf_pmu_events_group,
1441 &cpumsf_pmu_format_group,
1442 NULL,
1443};
1444
1445static struct pmu cpumf_sampling = {
1446 .pmu_enable = cpumsf_pmu_enable,
1447 .pmu_disable = cpumsf_pmu_disable,
1448
1449 .event_init = cpumsf_pmu_event_init,
1450 .add = cpumsf_pmu_add,
1451 .del = cpumsf_pmu_del,
1452
1453 .start = cpumsf_pmu_start,
1454 .stop = cpumsf_pmu_stop,
1455 .read = cpumsf_pmu_read,
1456
1457 .attr_groups = cpumsf_pmu_attr_groups,
1458};
1459
1460static void cpumf_measurement_alert(struct ext_code ext_code,
1461 unsigned int alert, unsigned long unused)
1462{
1463 struct cpu_hw_sf *cpuhw;
1464
1465 if (!(alert & CPU_MF_INT_SF_MASK))
1466 return;
1467 inc_irq_stat(IRQEXT_CMS);
1468 cpuhw = this_cpu_ptr(&cpu_hw_sf);
1469
1470
1471
1472 if (!(cpuhw->flags & PMU_F_RESERVED))
1473 return;
1474
1475
1476
1477
1478
1479 if (alert & CPU_MF_INT_SF_PRA) {
1480 if (cpuhw->flags & PMU_F_IN_USE)
1481 hw_perf_event_update(cpuhw->event, 0);
1482 else
1483 WARN_ON_ONCE(!(cpuhw->flags & PMU_F_IN_USE));
1484 }
1485
1486
1487 if (alert != CPU_MF_INT_SF_PRA)
1488 debug_sprintf_event(sfdbg, 6, "measurement alert: 0x%x\n", alert);
1489
1490
1491 if (alert & CPU_MF_INT_SF_SACA)
1492 qsi(&cpuhw->qsi);
1493
1494
1495 if (alert & CPU_MF_INT_SF_LSDA) {
1496 pr_err("Sample data was lost\n");
1497 cpuhw->flags |= PMU_F_ERR_LSDA;
1498 sf_disable();
1499 }
1500
1501
1502 if (alert & (CPU_MF_INT_SF_IAE|CPU_MF_INT_SF_ISE)) {
1503 pr_err("A sampling buffer entry is incorrect (alert=0x%x)\n",
1504 alert);
1505 cpuhw->flags |= PMU_F_ERR_IBE;
1506 sf_disable();
1507 }
1508}
1509
1510static int cpumf_pmu_notifier(struct notifier_block *self,
1511 unsigned long action, void *hcpu)
1512{
1513 unsigned int cpu = (long) hcpu;
1514 int flags;
1515
1516
1517
1518
1519 if (!atomic_read(&num_events))
1520 return NOTIFY_OK;
1521
1522 switch (action & ~CPU_TASKS_FROZEN) {
1523 case CPU_ONLINE:
1524 case CPU_DOWN_FAILED:
1525 flags = PMC_INIT;
1526 smp_call_function_single(cpu, setup_pmc_cpu, &flags, 1);
1527 break;
1528 case CPU_DOWN_PREPARE:
1529 flags = PMC_RELEASE;
1530 smp_call_function_single(cpu, setup_pmc_cpu, &flags, 1);
1531 break;
1532 default:
1533 break;
1534 }
1535
1536 return NOTIFY_OK;
1537}
1538
1539static int param_get_sfb_size(char *buffer, const struct kernel_param *kp)
1540{
1541 if (!cpum_sf_avail())
1542 return -ENODEV;
1543 return sprintf(buffer, "%lu,%lu", CPUM_SF_MIN_SDB, CPUM_SF_MAX_SDB);
1544}
1545
1546static int param_set_sfb_size(const char *val, const struct kernel_param *kp)
1547{
1548 int rc;
1549 unsigned long min, max;
1550
1551 if (!cpum_sf_avail())
1552 return -ENODEV;
1553 if (!val || !strlen(val))
1554 return -EINVAL;
1555
1556
1557 min = CPUM_SF_MIN_SDB;
1558 max = CPUM_SF_MAX_SDB;
1559 if (strchr(val, ','))
1560 rc = (sscanf(val, "%lu,%lu", &min, &max) == 2) ? 0 : -EINVAL;
1561 else
1562 rc = kstrtoul(val, 10, &max);
1563
1564 if (min < 2 || min >= max || max > get_num_physpages())
1565 rc = -EINVAL;
1566 if (rc)
1567 return rc;
1568
1569 sfb_set_limits(min, max);
1570 pr_info("The sampling buffer limits have changed to: "
1571 "min=%lu max=%lu (diag=x%lu)\n",
1572 CPUM_SF_MIN_SDB, CPUM_SF_MAX_SDB, CPUM_SF_SDB_DIAG_FACTOR);
1573 return 0;
1574}
1575
1576#define param_check_sfb_size(name, p) __param_check(name, p, void)
1577static const struct kernel_param_ops param_ops_sfb_size = {
1578 .set = param_set_sfb_size,
1579 .get = param_get_sfb_size,
1580};
1581
1582#define RS_INIT_FAILURE_QSI 0x0001
1583#define RS_INIT_FAILURE_BSDES 0x0002
1584#define RS_INIT_FAILURE_ALRT 0x0003
1585#define RS_INIT_FAILURE_PERF 0x0004
1586static void __init pr_cpumsf_err(unsigned int reason)
1587{
1588 pr_err("Sampling facility support for perf is not available: "
1589 "reason=%04x\n", reason);
1590}
1591
1592static int __init init_cpum_sampling_pmu(void)
1593{
1594 struct hws_qsi_info_block si;
1595 int err;
1596
1597 if (!cpum_sf_avail())
1598 return -ENODEV;
1599
1600 memset(&si, 0, sizeof(si));
1601 if (qsi(&si)) {
1602 pr_cpumsf_err(RS_INIT_FAILURE_QSI);
1603 return -ENODEV;
1604 }
1605
1606 if (si.bsdes != sizeof(struct hws_basic_entry)) {
1607 pr_cpumsf_err(RS_INIT_FAILURE_BSDES);
1608 return -EINVAL;
1609 }
1610
1611 if (si.ad) {
1612 sfb_set_limits(CPUM_SF_MIN_SDB, CPUM_SF_MAX_SDB);
1613 cpumsf_pmu_events_attr[1] =
1614 CPUMF_EVENT_PTR(SF, SF_CYCLES_BASIC_DIAG);
1615 }
1616
1617 sfdbg = debug_register(KMSG_COMPONENT, 2, 1, 80);
1618 if (!sfdbg)
1619 pr_err("Registering for s390dbf failed\n");
1620 debug_register_view(sfdbg, &debug_sprintf_view);
1621
1622 err = register_external_irq(EXT_IRQ_MEASURE_ALERT,
1623 cpumf_measurement_alert);
1624 if (err) {
1625 pr_cpumsf_err(RS_INIT_FAILURE_ALRT);
1626 goto out;
1627 }
1628
1629 err = perf_pmu_register(&cpumf_sampling, "cpum_sf", PERF_TYPE_RAW);
1630 if (err) {
1631 pr_cpumsf_err(RS_INIT_FAILURE_PERF);
1632 unregister_external_irq(EXT_IRQ_MEASURE_ALERT,
1633 cpumf_measurement_alert);
1634 goto out;
1635 }
1636 perf_cpu_notifier(cpumf_pmu_notifier);
1637out:
1638 return err;
1639}
1640arch_initcall(init_cpum_sampling_pmu);
1641core_param(cpum_sfb_size, CPUM_SF_MAX_SDB, sfb_size, 0640);
1642