Merge remote-tracking branch 'cifs/for-next'
[deliverable/linux.git] / arch / powerpc / perf / isa207-common.h
CommitLineData
4d3576b2
MS
1/*
2 * Copyright 2009 Paul Mackerras, IBM Corporation.
3 * Copyright 2013 Michael Ellerman, IBM Corporation.
4 * Copyright 2016 Madhavan Srinivasan, IBM Corporation.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or any later version.
10 */
11
12#ifndef _LINUX_POWERPC_PERF_ISA207_COMMON_H_
13#define _LINUX_POWERPC_PERF_ISA207_COMMON_H_
14
15#include <linux/kernel.h>
16#include <linux/perf_event.h>
17#include <asm/firmware.h>
18#include <asm/cputable.h>
19
20/*
21 * Raw event encoding for PowerISA v2.07:
22 *
23 * 60 56 52 48 44 40 36 32
24 * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - |
25 * | | [ ] [ thresh_cmp ] [ thresh_ctl ]
26 * | | | |
27 * | | *- IFM (Linux) thresh start/stop OR FAB match -*
28 * | *- BHRB (Linux)
29 * *- EBB (Linux)
30 *
31 * 28 24 20 16 12 8 4 0
32 * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - |
33 * [ ] [ sample ] [cache] [ pmc ] [unit ] c m [ pmcxsel ]
34 * | | | | |
35 * | | | | *- mark
36 * | | *- L1/L2/L3 cache_sel |
37 * | | |
38 * | *- sampling mode for marked events *- combine
39 * |
40 * *- thresh_sel
41 *
42 * Below uses IBM bit numbering.
43 *
44 * MMCR1[x:y] = unit (PMCxUNIT)
45 * MMCR1[x] = combine (PMCxCOMB)
46 *
47 * if pmc == 3 and unit == 0 and pmcxsel[0:6] == 0b0101011
48 * # PM_MRK_FAB_RSP_MATCH
49 * MMCR1[20:27] = thresh_ctl (FAB_CRESP_MATCH / FAB_TYPE_MATCH)
50 * else if pmc == 4 and unit == 0xf and pmcxsel[0:6] == 0b0101001
51 * # PM_MRK_FAB_RSP_MATCH_CYC
52 * MMCR1[20:27] = thresh_ctl (FAB_CRESP_MATCH / FAB_TYPE_MATCH)
53 * else
54 * MMCRA[48:55] = thresh_ctl (THRESH START/END)
55 *
56 * if thresh_sel:
57 * MMCRA[45:47] = thresh_sel
58 *
59 * if thresh_cmp:
60 * MMCRA[22:24] = thresh_cmp[0:2]
61 * MMCRA[25:31] = thresh_cmp[3:9]
62 *
63 * if unit == 6 or unit == 7
64 * MMCRC[53:55] = cache_sel[1:3] (L2EVENT_SEL)
65 * else if unit == 8 or unit == 9:
66 * if cache_sel[0] == 0: # L3 bank
67 * MMCRC[47:49] = cache_sel[1:3] (L3EVENT_SEL0)
68 * else if cache_sel[0] == 1:
69 * MMCRC[50:51] = cache_sel[2:3] (L3EVENT_SEL1)
70 * else if cache_sel[1]: # L1 event
71 * MMCR1[16] = cache_sel[2]
72 * MMCR1[17] = cache_sel[3]
73 *
74 * if mark:
75 * MMCRA[63] = 1 (SAMPLE_ENABLE)
76 * MMCRA[57:59] = sample[0:2] (RAND_SAMP_ELIG)
77 * MMCRA[61:62] = sample[3:4] (RAND_SAMP_MODE)
78 *
79 * if EBB and BHRB:
80 * MMCRA[32:33] = IFM
81 *
82 */
83
84#define EVENT_EBB_MASK 1ull
85#define EVENT_EBB_SHIFT PERF_EVENT_CONFIG_EBB_SHIFT
86#define EVENT_BHRB_MASK 1ull
87#define EVENT_BHRB_SHIFT 62
88#define EVENT_WANTS_BHRB (EVENT_BHRB_MASK << EVENT_BHRB_SHIFT)
89#define EVENT_IFM_MASK 3ull
90#define EVENT_IFM_SHIFT 60
91#define EVENT_THR_CMP_SHIFT 40 /* Threshold CMP value */
92#define EVENT_THR_CMP_MASK 0x3ff
93#define EVENT_THR_CTL_SHIFT 32 /* Threshold control value (start/stop) */
94#define EVENT_THR_CTL_MASK 0xffull
95#define EVENT_THR_SEL_SHIFT 29 /* Threshold select value */
96#define EVENT_THR_SEL_MASK 0x7
97#define EVENT_THRESH_SHIFT 29 /* All threshold bits */
98#define EVENT_THRESH_MASK 0x1fffffull
99#define EVENT_SAMPLE_SHIFT 24 /* Sampling mode & eligibility */
100#define EVENT_SAMPLE_MASK 0x1f
101#define EVENT_CACHE_SEL_SHIFT 20 /* L2/L3 cache select */
102#define EVENT_CACHE_SEL_MASK 0xf
103#define EVENT_IS_L1 (4 << EVENT_CACHE_SEL_SHIFT)
104#define EVENT_PMC_SHIFT 16 /* PMC number (1-based) */
105#define EVENT_PMC_MASK 0xf
106#define EVENT_UNIT_SHIFT 12 /* Unit */
107#define EVENT_UNIT_MASK 0xf
108#define EVENT_COMBINE_SHIFT 11 /* Combine bit */
109#define EVENT_COMBINE_MASK 0x1
110#define EVENT_MARKED_SHIFT 8 /* Marked bit */
111#define EVENT_MARKED_MASK 0x1
112#define EVENT_IS_MARKED (EVENT_MARKED_MASK << EVENT_MARKED_SHIFT)
113#define EVENT_PSEL_MASK 0xff /* PMCxSEL value */
114
115/* Bits defined by Linux */
116#define EVENT_LINUX_MASK \
117 ((EVENT_EBB_MASK << EVENT_EBB_SHIFT) | \
118 (EVENT_BHRB_MASK << EVENT_BHRB_SHIFT) | \
119 (EVENT_IFM_MASK << EVENT_IFM_SHIFT))
120
121#define EVENT_VALID_MASK \
122 ((EVENT_THRESH_MASK << EVENT_THRESH_SHIFT) | \
123 (EVENT_SAMPLE_MASK << EVENT_SAMPLE_SHIFT) | \
124 (EVENT_CACHE_SEL_MASK << EVENT_CACHE_SEL_SHIFT) | \
125 (EVENT_PMC_MASK << EVENT_PMC_SHIFT) | \
126 (EVENT_UNIT_MASK << EVENT_UNIT_SHIFT) | \
127 (EVENT_COMBINE_MASK << EVENT_COMBINE_SHIFT) | \
128 (EVENT_MARKED_MASK << EVENT_MARKED_SHIFT) | \
129 EVENT_LINUX_MASK | \
130 EVENT_PSEL_MASK)
131
132#define ONLY_PLM \
133 (PERF_SAMPLE_BRANCH_USER |\
134 PERF_SAMPLE_BRANCH_KERNEL |\
135 PERF_SAMPLE_BRANCH_HV)
136
137/*
138 * Layout of constraint bits:
139 *
140 * 60 56 52 48 44 40 36 32
141 * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - |
142 * [ fab_match ] [ thresh_cmp ] [ thresh_ctl ] [ ]
143 * |
144 * thresh_sel -*
145 *
146 * 28 24 20 16 12 8 4 0
147 * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - |
148 * [ ] | [ ] [ sample ] [ ] [6] [5] [4] [3] [2] [1]
149 * | | | |
150 * BHRB IFM -* | | | Count of events for each PMC.
151 * EBB -* | | p1, p2, p3, p4, p5, p6.
152 * L1 I/D qualifier -* |
153 * nc - number of counters -*
154 *
155 * The PMC fields P1..P6, and NC, are adder fields. As we accumulate constraints
156 * we want the low bit of each field to be added to any existing value.
157 *
158 * Everything else is a value field.
159 */
160
161#define CNST_FAB_MATCH_VAL(v) (((v) & EVENT_THR_CTL_MASK) << 56)
162#define CNST_FAB_MATCH_MASK CNST_FAB_MATCH_VAL(EVENT_THR_CTL_MASK)
163
164/* We just throw all the threshold bits into the constraint */
165#define CNST_THRESH_VAL(v) (((v) & EVENT_THRESH_MASK) << 32)
166#define CNST_THRESH_MASK CNST_THRESH_VAL(EVENT_THRESH_MASK)
167
168#define CNST_EBB_VAL(v) (((v) & EVENT_EBB_MASK) << 24)
169#define CNST_EBB_MASK CNST_EBB_VAL(EVENT_EBB_MASK)
170
171#define CNST_IFM_VAL(v) (((v) & EVENT_IFM_MASK) << 25)
172#define CNST_IFM_MASK CNST_IFM_VAL(EVENT_IFM_MASK)
173
174#define CNST_L1_QUAL_VAL(v) (((v) & 3) << 22)
175#define CNST_L1_QUAL_MASK CNST_L1_QUAL_VAL(3)
176
177#define CNST_SAMPLE_VAL(v) (((v) & EVENT_SAMPLE_MASK) << 16)
178#define CNST_SAMPLE_MASK CNST_SAMPLE_VAL(EVENT_SAMPLE_MASK)
179
180/*
181 * For NC we are counting up to 4 events. This requires three bits, and we need
182 * the fifth event to overflow and set the 4th bit. To achieve that we bias the
183 * fields by 3 in test_adder.
184 */
185#define CNST_NC_SHIFT 12
186#define CNST_NC_VAL (1 << CNST_NC_SHIFT)
187#define CNST_NC_MASK (8 << CNST_NC_SHIFT)
188#define ISA207_TEST_ADDER (3 << CNST_NC_SHIFT)
189
190/*
191 * For the per-PMC fields we have two bits. The low bit is added, so if two
192 * events ask for the same PMC the sum will overflow, setting the high bit,
193 * indicating an error. So our mask sets the high bit.
194 */
195#define CNST_PMC_SHIFT(pmc) ((pmc - 1) * 2)
196#define CNST_PMC_VAL(pmc) (1 << CNST_PMC_SHIFT(pmc))
197#define CNST_PMC_MASK(pmc) (2 << CNST_PMC_SHIFT(pmc))
198
199/* Our add_fields is defined as: */
200#define ISA207_ADD_FIELDS \
201 CNST_PMC_VAL(1) | CNST_PMC_VAL(2) | CNST_PMC_VAL(3) | \
202 CNST_PMC_VAL(4) | CNST_PMC_VAL(5) | CNST_PMC_VAL(6) | CNST_NC_VAL
203
204
205/* Bits in MMCR1 for PowerISA v2.07 */
206#define MMCR1_UNIT_SHIFT(pmc) (60 - (4 * ((pmc) - 1)))
207#define MMCR1_COMBINE_SHIFT(pmc) (35 - ((pmc) - 1))
208#define MMCR1_PMCSEL_SHIFT(pmc) (24 - (((pmc) - 1)) * 8)
209#define MMCR1_FAB_SHIFT 36
210#define MMCR1_DC_QUAL_SHIFT 47
211#define MMCR1_IC_QUAL_SHIFT 46
212
213/* Bits in MMCRA for PowerISA v2.07 */
214#define MMCRA_SAMP_MODE_SHIFT 1
215#define MMCRA_SAMP_ELIG_SHIFT 4
216#define MMCRA_THR_CTL_SHIFT 8
217#define MMCRA_THR_SEL_SHIFT 16
218#define MMCRA_THR_CMP_SHIFT 32
219#define MMCRA_SDAR_MODE_TLB (1ull << 42)
220#define MMCRA_IFM_SHIFT 30
221
222/* Bits in MMCR2 for PowerISA v2.07 */
223#define MMCR2_FCS(pmc) (1ull << (63 - (((pmc) - 1) * 9)))
224#define MMCR2_FCP(pmc) (1ull << (62 - (((pmc) - 1) * 9)))
225#define MMCR2_FCH(pmc) (1ull << (57 - (((pmc) - 1) * 9)))
226
227#define MAX_ALT 2
228#define MAX_PMU_COUNTERS 6
229
7ffd948f
MS
230int isa207_get_constraint(u64 event, unsigned long *maskp, unsigned long *valp);
231int isa207_compute_mmcr(u64 event[], int n_ev,
232 unsigned int hwc[], unsigned long mmcr[],
233 struct perf_event *pevents[]);
234void isa207_disable_pmc(unsigned int pmc, unsigned long mmcr[]);
235
4d3576b2 236#endif
This page took 0.043681 seconds and 5 git commands to generate.