1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Performance counter support for POWER5+/++ (not POWER5) processors.
5 * Copyright 2009 Paul Mackerras, IBM Corporation.
7 #include <linux/kernel.h>
8 #include <linux/perf_event.h>
9 #include <linux/string.h>
11 #include <asm/cputable.h>
16 * Bits in event code for POWER5+ (POWER5 GS) and POWER5++ (POWER5 GS DD3)
18 #define PM_PMC_SH 20 /* PMC number (1-based) for direct events */
19 #define PM_PMC_MSK 0xf
20 #define PM_PMC_MSKS (PM_PMC_MSK << PM_PMC_SH)
21 #define PM_UNIT_SH 16 /* TTMMUX number and setting - unit select */
22 #define PM_UNIT_MSK 0xf
23 #define PM_BYTE_SH 12 /* Byte number of event bus to use */
25 #define PM_GRS_SH 8 /* Storage subsystem mux select */
27 #define PM_BUSEVENT_MSK 0x80 /* Set if event uses event bus */
28 #define PM_PMCSEL_MSK 0x7f
30 /* Values in PM_UNIT field */
40 #define PM_LASTUNIT 0xc
43 * Bits in MMCR1 for POWER5+
45 #define MMCR1_TTM0SEL_SH 62
46 #define MMCR1_TTM1SEL_SH 60
47 #define MMCR1_TTM2SEL_SH 58
48 #define MMCR1_TTM3SEL_SH 56
49 #define MMCR1_TTMSEL_MSK 3
50 #define MMCR1_TD_CP_DBG0SEL_SH 54
51 #define MMCR1_TD_CP_DBG1SEL_SH 52
52 #define MMCR1_TD_CP_DBG2SEL_SH 50
53 #define MMCR1_TD_CP_DBG3SEL_SH 48
54 #define MMCR1_GRS_L2SEL_SH 46
55 #define MMCR1_GRS_L2SEL_MSK 3
56 #define MMCR1_GRS_L3SEL_SH 44
57 #define MMCR1_GRS_L3SEL_MSK 3
58 #define MMCR1_GRS_MCSEL_SH 41
59 #define MMCR1_GRS_MCSEL_MSK 7
60 #define MMCR1_GRS_FABSEL_SH 39
61 #define MMCR1_GRS_FABSEL_MSK 3
62 #define MMCR1_PMC1_ADDER_SEL_SH 35
63 #define MMCR1_PMC2_ADDER_SEL_SH 34
64 #define MMCR1_PMC3_ADDER_SEL_SH 33
65 #define MMCR1_PMC4_ADDER_SEL_SH 32
66 #define MMCR1_PMC1SEL_SH 25
67 #define MMCR1_PMC2SEL_SH 17
68 #define MMCR1_PMC3SEL_SH 9
69 #define MMCR1_PMC4SEL_SH 1
70 #define MMCR1_PMCSEL_SH(n) (MMCR1_PMC1SEL_SH - (n) * 8)
71 #define MMCR1_PMCSEL_MSK 0x7f
74 * Layout of constraint bits:
75 * 6666555555555544444444443333333333222222222211111111110000000000
76 * 3210987654321098765432109876543210987654321098765432109876543210
77 * [ ><><>< ><> <><>[ > < >< >< >< ><><><><><><>
78 * NC G0G1G2 G3 T0T1 UC B0 B1 B2 B3 P6P5P4P3P2P1
80 * NC - number of counters
81 * 51: NC error 0x0008_0000_0000_0000
82 * 48-50: number of events needing PMC1-4 0x0007_0000_0000_0000
84 * G0..G3 - GRS mux constraints
85 * 46-47: GRS_L2SEL value
86 * 44-45: GRS_L3SEL value
87 * 41-44: GRS_MCSEL value
88 * 39-40: GRS_FABSEL value
89 * Note that these match up with their bit positions in MMCR1
91 * T0 - TTM0 constraint
92 * 36-37: TTM0SEL value (0=FPU, 2=IFU, 3=ISU1) 0x30_0000_0000
94 * T1 - TTM1 constraint
95 * 34-35: TTM1SEL value (0=IDU, 3=GRS) 0x0c_0000_0000
97 * UC - unit constraint: can't have all three of FPU|IFU|ISU1, ISU0, IDU|GRS
98 * 33: UC3 error 0x02_0000_0000
99 * 32: FPU|IFU|ISU1 events needed 0x01_0000_0000
100 * 31: ISU0 events needed 0x01_8000_0000
101 * 30: IDU|GRS events needed 0x00_4000_0000
104 * 24-27: Byte 0 event source 0x0f00_0000
105 * Encoding as for the event code
108 * 20-23, 16-19, 12-15: Byte 1, 2, 3 event sources
112 * 10-11: Count of events needing PMC6
115 * 0-9: Count of events needing PMC1..PMC5
118 static const int grsel_shift
[8] = {
119 MMCR1_GRS_L2SEL_SH
, MMCR1_GRS_L2SEL_SH
, MMCR1_GRS_L2SEL_SH
,
120 MMCR1_GRS_L3SEL_SH
, MMCR1_GRS_L3SEL_SH
, MMCR1_GRS_L3SEL_SH
,
121 MMCR1_GRS_MCSEL_SH
, MMCR1_GRS_FABSEL_SH
124 /* Masks and values for using events from the various units */
125 static unsigned long unit_cons
[PM_LASTUNIT
+1][2] = {
126 [PM_FPU
] = { 0x3200000000ul
, 0x0100000000ul
},
127 [PM_ISU0
] = { 0x0200000000ul
, 0x0080000000ul
},
128 [PM_ISU1
] = { 0x3200000000ul
, 0x3100000000ul
},
129 [PM_IFU
] = { 0x3200000000ul
, 0x2100000000ul
},
130 [PM_IDU
] = { 0x0e00000000ul
, 0x0040000000ul
},
131 [PM_GRS
] = { 0x0e00000000ul
, 0x0c40000000ul
},
134 static int power5p_get_constraint(u64 event
, unsigned long *maskp
,
137 int pmc
, byte
, unit
, sh
;
139 unsigned long mask
= 0, value
= 0;
141 pmc
= (event
>> PM_PMC_SH
) & PM_PMC_MSK
;
148 if (pmc
>= 5 && !(event
== 0x500009 || event
== 0x600005))
151 if (event
& PM_BUSEVENT_MSK
) {
152 unit
= (event
>> PM_UNIT_SH
) & PM_UNIT_MSK
;
153 if (unit
> PM_LASTUNIT
)
155 if (unit
== PM_ISU0_ALT
)
157 mask
|= unit_cons
[unit
][0];
158 value
|= unit_cons
[unit
][1];
159 byte
= (event
>> PM_BYTE_SH
) & PM_BYTE_MSK
;
163 /* Map LSU1 low word (bytes 4-7) to unit LSU1+1 */
167 if (unit
== PM_GRS
) {
169 fmask
= (bit
== 6)? 7: 3;
170 sh
= grsel_shift
[bit
];
171 mask
|= (unsigned long)fmask
<< sh
;
172 value
|= (unsigned long)((event
>> PM_GRS_SH
) & fmask
)
175 /* Set byte lane select field */
176 mask
|= 0xfUL
<< (24 - 4 * byte
);
177 value
|= (unsigned long)unit
<< (24 - 4 * byte
);
180 /* need a counter from PMC1-4 set */
181 mask
|= 0x8000000000000ul
;
182 value
|= 0x1000000000000ul
;
189 static int power5p_limited_pmc_event(u64 event
)
191 int pmc
= (event
>> PM_PMC_SH
) & PM_PMC_MSK
;
193 return pmc
== 5 || pmc
== 6;
196 #define MAX_ALT 3 /* at most 3 alternatives for any event */
198 static const unsigned int event_alternatives
[][MAX_ALT
] = {
199 { 0x100c0, 0x40001f }, /* PM_GCT_FULL_CYC */
200 { 0x120e4, 0x400002 }, /* PM_GRP_DISP_REJECT */
201 { 0x230e2, 0x323087 }, /* PM_BR_PRED_CR */
202 { 0x230e3, 0x223087, 0x3230a0 }, /* PM_BR_PRED_TA */
203 { 0x410c7, 0x441084 }, /* PM_THRD_L2MISS_BOTH_CYC */
204 { 0x800c4, 0xc20e0 }, /* PM_DTLB_MISS */
205 { 0xc50c6, 0xc60e0 }, /* PM_MRK_DTLB_MISS */
206 { 0x100005, 0x600005 }, /* PM_RUN_CYC */
207 { 0x100009, 0x200009 }, /* PM_INST_CMPL */
208 { 0x200015, 0x300015 }, /* PM_LSU_LMQ_SRQ_EMPTY_CYC */
209 { 0x300009, 0x400009 }, /* PM_INST_DISP */
213 * Scan the alternatives table for a match and return the
214 * index into the alternatives table if found, else -1.
216 static int find_alternative(unsigned int event
)
220 for (i
= 0; i
< ARRAY_SIZE(event_alternatives
); ++i
) {
221 if (event
< event_alternatives
[i
][0])
223 for (j
= 0; j
< MAX_ALT
&& event_alternatives
[i
][j
]; ++j
)
224 if (event
== event_alternatives
[i
][j
])
230 static const unsigned char bytedecode_alternatives
[4][4] = {
231 /* PMC 1 */ { 0x21, 0x23, 0x25, 0x27 },
232 /* PMC 2 */ { 0x07, 0x17, 0x0e, 0x1e },
233 /* PMC 3 */ { 0x20, 0x22, 0x24, 0x26 },
234 /* PMC 4 */ { 0x07, 0x17, 0x0e, 0x1e }
238 * Some direct events for decodes of event bus byte 3 have alternative
239 * PMCSEL values on other counters. This returns the alternative
240 * event code for those that do, or -1 otherwise. This also handles
241 * alternative PCMSEL values for add events.
243 static s64
find_alternative_bdecode(u64 event
)
245 int pmc
, altpmc
, pp
, j
;
247 pmc
= (event
>> PM_PMC_SH
) & PM_PMC_MSK
;
248 if (pmc
== 0 || pmc
> 4)
250 altpmc
= 5 - pmc
; /* 1 <-> 4, 2 <-> 3 */
251 pp
= event
& PM_PMCSEL_MSK
;
252 for (j
= 0; j
< 4; ++j
) {
253 if (bytedecode_alternatives
[pmc
- 1][j
] == pp
) {
254 return (event
& ~(PM_PMC_MSKS
| PM_PMCSEL_MSK
)) |
255 (altpmc
<< PM_PMC_SH
) |
256 bytedecode_alternatives
[altpmc
- 1][j
];
260 /* new decode alternatives for power5+ */
261 if (pmc
== 1 && (pp
== 0x0d || pp
== 0x0e))
262 return event
+ (2 << PM_PMC_SH
) + (0x2e - 0x0d);
263 if (pmc
== 3 && (pp
== 0x2e || pp
== 0x2f))
264 return event
- (2 << PM_PMC_SH
) - (0x2e - 0x0d);
266 /* alternative add event encodings */
267 if (pp
== 0x10 || pp
== 0x28)
268 return ((event
^ (0x10 ^ 0x28)) & ~PM_PMC_MSKS
) |
269 (altpmc
<< PM_PMC_SH
);
274 static int power5p_get_alternatives(u64 event
, unsigned int flags
, u64 alt
[])
282 nlim
= power5p_limited_pmc_event(event
);
283 i
= find_alternative(event
);
285 for (j
= 0; j
< MAX_ALT
; ++j
) {
286 ae
= event_alternatives
[i
][j
];
287 if (ae
&& ae
!= event
)
289 nlim
+= power5p_limited_pmc_event(ae
);
292 ae
= find_alternative_bdecode(event
);
297 if (flags
& PPMU_ONLY_COUNT_RUN
) {
299 * We're only counting in RUN state,
300 * so PM_CYC is equivalent to PM_RUN_CYC
301 * and PM_INST_CMPL === PM_RUN_INST_CMPL.
302 * This doesn't include alternatives that don't provide
303 * any extra flexibility in assigning PMCs (e.g.
304 * 0x100005 for PM_RUN_CYC vs. 0xf for PM_CYC).
305 * Note that even with these additional alternatives
306 * we never end up with more than 3 alternatives for any event.
309 for (i
= 0; i
< nalt
; ++i
) {
311 case 0xf: /* PM_CYC */
312 alt
[j
++] = 0x600005; /* PM_RUN_CYC */
315 case 0x600005: /* PM_RUN_CYC */
318 case 0x100009: /* PM_INST_CMPL */
319 alt
[j
++] = 0x500009; /* PM_RUN_INST_CMPL */
322 case 0x500009: /* PM_RUN_INST_CMPL */
323 alt
[j
++] = 0x100009; /* PM_INST_CMPL */
331 if (!(flags
& PPMU_LIMITED_PMC_OK
) && nlim
) {
332 /* remove the limited PMC events */
334 for (i
= 0; i
< nalt
; ++i
) {
335 if (!power5p_limited_pmc_event(alt
[i
])) {
341 } else if ((flags
& PPMU_LIMITED_PMC_REQD
) && nlim
< nalt
) {
342 /* remove all but the limited PMC events */
344 for (i
= 0; i
< nalt
; ++i
) {
345 if (power5p_limited_pmc_event(alt
[i
])) {
357 * Map of which direct events on which PMCs are marked instruction events.
358 * Indexed by PMCSEL value, bit i (LE) set if PMC i is a marked event.
359 * Bit 0 is set if it is marked for all PMCs.
360 * The 0x80 bit indicates a byte decode PMCSEL value.
362 static unsigned char direct_event_is_marked
[0x28] = {
364 0x1f, /* 01 PM_IOPS_CMPL */
365 0x2, /* 02 PM_MRK_GRP_DISP */
366 0xe, /* 03 PM_MRK_ST_CMPL, PM_MRK_ST_GPS, PM_MRK_ST_CMPL_INT */
368 0x1c, /* 05 PM_MRK_BRU_FIN, PM_MRK_INST_FIN, PM_MRK_CRU_FIN */
371 0, 0, 0,/* 08 - 0a */
372 0x18, /* 0b PM_THRESH_TIMEO, PM_MRK_GRP_TIMEO */
378 0x14, /* 11 PM_MRK_GRP_BR_REDIR, PM_MRK_GRP_IC_MISS */
380 0x10, /* 13 PM_MRK_GRP_CMPL */
381 0x1f, /* 14 PM_GRP_MRK, PM_MRK_{FXU,FPU,LSU}_FIN */
382 0x2, /* 15 PM_MRK_GRP_ISSUED */
400 * Returns 1 if event counts things relating to marked instructions
401 * and thus needs the MMCRA_SAMPLE_ENABLE bit set, or 0 if not.
403 static int power5p_marked_instr_event(u64 event
)
409 pmc
= (event
>> PM_PMC_SH
) & PM_PMC_MSK
;
410 psel
= event
& PM_PMCSEL_MSK
;
415 if (psel
< sizeof(direct_event_is_marked
)) {
416 if (direct_event_is_marked
[psel
] & (1 << pmc
))
418 if (direct_event_is_marked
[psel
] & 0x80)
420 else if (psel
== 0x08)
422 else if (psel
== 0x10)
424 else if (psel
== 0x1b && (pmc
== 1 || pmc
== 3))
426 } else if ((psel
& 0x48) == 0x40) {
428 } else if (psel
== 0x28) {
430 } else if (pmc
== 3 && (psel
== 0x2e || psel
== 0x2f)) {
434 if (!(event
& PM_BUSEVENT_MSK
) || bit
== -1)
437 byte
= (event
>> PM_BYTE_SH
) & PM_BYTE_MSK
;
438 unit
= (event
>> PM_UNIT_SH
) & PM_UNIT_MSK
;
439 if (unit
== PM_LSU0
) {
440 /* byte 1 bits 0-7, byte 2 bits 0,2-4,6 */
442 } else if (unit
== PM_LSU1
&& byte
>= 4) {
444 /* byte 5 bits 6-7, byte 6 bits 0,4, byte 7 bits 0-4,6 */
449 return (mask
>> (byte
* 8 + bit
)) & 1;
452 static int power5p_compute_mmcr(u64 event
[], int n_ev
,
453 unsigned int hwc
[], struct mmcr_regs
*mmcr
,
454 struct perf_event
*pevents
[])
456 unsigned long mmcr1
= 0;
457 unsigned long mmcra
= 0;
458 unsigned int pmc
, unit
, byte
, psel
;
460 int i
, isbus
, bit
, grsel
;
461 unsigned int pmc_inuse
= 0;
462 unsigned char busbyte
[4];
463 unsigned char unituse
[16];
469 /* First pass to count resource use */
470 memset(busbyte
, 0, sizeof(busbyte
));
471 memset(unituse
, 0, sizeof(unituse
));
472 for (i
= 0; i
< n_ev
; ++i
) {
473 pmc
= (event
[i
] >> PM_PMC_SH
) & PM_PMC_MSK
;
477 if (pmc_inuse
& (1 << (pmc
- 1)))
479 pmc_inuse
|= 1 << (pmc
- 1);
481 if (event
[i
] & PM_BUSEVENT_MSK
) {
482 unit
= (event
[i
] >> PM_UNIT_SH
) & PM_UNIT_MSK
;
483 byte
= (event
[i
] >> PM_BYTE_SH
) & PM_BYTE_MSK
;
484 if (unit
> PM_LASTUNIT
)
486 if (unit
== PM_ISU0_ALT
)
494 if (busbyte
[byte
] && busbyte
[byte
] != unit
)
496 busbyte
[byte
] = unit
;
502 * Assign resources and set multiplexer selects.
504 * PM_ISU0 can go either on TTM0 or TTM1, but that's the only
505 * choice we have to deal with.
507 if (unituse
[PM_ISU0
] &
508 (unituse
[PM_FPU
] | unituse
[PM_IFU
] | unituse
[PM_ISU1
])) {
509 unituse
[PM_ISU0_ALT
] = 1; /* move ISU to TTM1 */
510 unituse
[PM_ISU0
] = 0;
512 /* Set TTM[01]SEL fields. */
514 for (i
= PM_FPU
; i
<= PM_ISU1
; ++i
) {
519 mmcr1
|= (unsigned long)i
<< MMCR1_TTM0SEL_SH
;
522 for (; i
<= PM_GRS
; ++i
) {
527 mmcr1
|= (unsigned long)(i
& 3) << MMCR1_TTM1SEL_SH
;
532 /* Set byte lane select fields, TTM[23]SEL and GRS_*SEL. */
533 for (byte
= 0; byte
< 4; ++byte
) {
534 unit
= busbyte
[byte
];
537 if (unit
== PM_ISU0
&& unituse
[PM_ISU0_ALT
]) {
538 /* get ISU0 through TTM1 rather than TTM0 */
540 } else if (unit
== PM_LSU1
+ 1) {
541 /* select lower word of LSU1 for this byte */
542 mmcr1
|= 1ul << (MMCR1_TTM3SEL_SH
+ 3 - byte
);
545 mmcr1
|= (unsigned long)ttm
546 << (MMCR1_TD_CP_DBG0SEL_SH
- 2 * byte
);
549 /* Second pass: assign PMCs, set PMCxSEL and PMCx_ADDER_SEL fields */
550 for (i
= 0; i
< n_ev
; ++i
) {
551 pmc
= (event
[i
] >> PM_PMC_SH
) & PM_PMC_MSK
;
552 unit
= (event
[i
] >> PM_UNIT_SH
) & PM_UNIT_MSK
;
553 byte
= (event
[i
] >> PM_BYTE_SH
) & PM_BYTE_MSK
;
554 psel
= event
[i
] & PM_PMCSEL_MSK
;
555 isbus
= event
[i
] & PM_BUSEVENT_MSK
;
557 /* Bus event or any-PMC direct event */
558 for (pmc
= 0; pmc
< 4; ++pmc
) {
559 if (!(pmc_inuse
& (1 << pmc
)))
564 pmc_inuse
|= 1 << pmc
;
565 } else if (pmc
<= 4) {
568 if (isbus
&& (byte
& 2) &&
569 (psel
== 8 || psel
== 0x10 || psel
== 0x28))
570 /* add events on higher-numbered bus */
571 mmcr1
|= 1ul << (MMCR1_PMC1_ADDER_SEL_SH
- pmc
);
573 /* Instructions or run cycles on PMC5/6 */
576 if (isbus
&& unit
== PM_GRS
) {
578 grsel
= (event
[i
] >> PM_GRS_SH
) & PM_GRS_MSK
;
579 mmcr1
|= (unsigned long)grsel
<< grsel_shift
[bit
];
581 if (power5p_marked_instr_event(event
[i
]))
582 mmcra
|= MMCRA_SAMPLE_ENABLE
;
583 if ((psel
& 0x58) == 0x40 && (byte
& 1) != ((pmc
>> 1) & 1))
584 /* select alternate byte lane */
587 mmcr1
|= psel
<< MMCR1_PMCSEL_SH(pmc
);
591 /* Return MMCRx values */
594 mmcr
->mmcr0
= MMCR0_PMC1CE
;
595 if (pmc_inuse
& 0x3e)
596 mmcr
->mmcr0
|= MMCR0_PMCjCE
;
602 static void power5p_disable_pmc(unsigned int pmc
, struct mmcr_regs
*mmcr
)
605 mmcr
->mmcr1
&= ~(0x7fUL
<< MMCR1_PMCSEL_SH(pmc
));
608 static int power5p_generic_events
[] = {
609 [PERF_COUNT_HW_CPU_CYCLES
] = 0xf,
610 [PERF_COUNT_HW_INSTRUCTIONS
] = 0x100009,
611 [PERF_COUNT_HW_CACHE_REFERENCES
] = 0x1c10a8, /* LD_REF_L1 */
612 [PERF_COUNT_HW_CACHE_MISSES
] = 0x3c1088, /* LD_MISS_L1 */
613 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS
] = 0x230e4, /* BR_ISSUED */
614 [PERF_COUNT_HW_BRANCH_MISSES
] = 0x230e5, /* BR_MPRED_CR */
617 #define C(x) PERF_COUNT_HW_CACHE_##x
620 * Table of generalized cache-related events.
621 * 0 means not supported, -1 means nonsensical, other values
624 static u64 power5p_cache_events
[C(MAX
)][C(OP_MAX
)][C(RESULT_MAX
)] = {
625 [C(L1D
)] = { /* RESULT_ACCESS RESULT_MISS */
626 [C(OP_READ
)] = { 0x1c10a8, 0x3c1088 },
627 [C(OP_WRITE
)] = { 0x2c10a8, 0xc10c3 },
628 [C(OP_PREFETCH
)] = { 0xc70e7, -1 },
630 [C(L1I
)] = { /* RESULT_ACCESS RESULT_MISS */
631 [C(OP_READ
)] = { 0, 0 },
632 [C(OP_WRITE
)] = { -1, -1 },
633 [C(OP_PREFETCH
)] = { 0, 0 },
635 [C(LL
)] = { /* RESULT_ACCESS RESULT_MISS */
636 [C(OP_READ
)] = { 0, 0 },
637 [C(OP_WRITE
)] = { 0, 0 },
638 [C(OP_PREFETCH
)] = { 0xc50c3, 0 },
640 [C(DTLB
)] = { /* RESULT_ACCESS RESULT_MISS */
641 [C(OP_READ
)] = { 0xc20e4, 0x800c4 },
642 [C(OP_WRITE
)] = { -1, -1 },
643 [C(OP_PREFETCH
)] = { -1, -1 },
645 [C(ITLB
)] = { /* RESULT_ACCESS RESULT_MISS */
646 [C(OP_READ
)] = { 0, 0x800c0 },
647 [C(OP_WRITE
)] = { -1, -1 },
648 [C(OP_PREFETCH
)] = { -1, -1 },
650 [C(BPU
)] = { /* RESULT_ACCESS RESULT_MISS */
651 [C(OP_READ
)] = { 0x230e4, 0x230e5 },
652 [C(OP_WRITE
)] = { -1, -1 },
653 [C(OP_PREFETCH
)] = { -1, -1 },
655 [C(NODE
)] = { /* RESULT_ACCESS RESULT_MISS */
656 [C(OP_READ
)] = { -1, -1 },
657 [C(OP_WRITE
)] = { -1, -1 },
658 [C(OP_PREFETCH
)] = { -1, -1 },
662 static struct power_pmu power5p_pmu
= {
663 .name
= "POWER5+/++",
665 .max_alternatives
= MAX_ALT
,
666 .add_fields
= 0x7000000000055ul
,
667 .test_adder
= 0x3000040000000ul
,
668 .compute_mmcr
= power5p_compute_mmcr
,
669 .get_constraint
= power5p_get_constraint
,
670 .get_alternatives
= power5p_get_alternatives
,
671 .disable_pmc
= power5p_disable_pmc
,
672 .limited_pmc_event
= power5p_limited_pmc_event
,
673 .flags
= PPMU_LIMITED_PMC5_6
| PPMU_HAS_SSLOT
,
674 .n_generic
= ARRAY_SIZE(power5p_generic_events
),
675 .generic_events
= power5p_generic_events
,
676 .cache_events
= &power5p_cache_events
,
679 int init_power5p_pmu(void)
681 if (!cur_cpu_spec
->oprofile_cpu_type
||
682 (strcmp(cur_cpu_spec
->oprofile_cpu_type
, "ppc64/power5+")
683 && strcmp(cur_cpu_spec
->oprofile_cpu_type
, "ppc64/power5++")))
686 return register_power_pmu(&power5p_pmu
);