OSDN Git Service

WIP nouveau: add locking
[android-x86/external-mesa.git] / src / gallium / drivers / nouveau / nv50 / nv50_query_hw_sm.c
1 /*
2  * Copyright 2015 Samuel Pitoiset
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  */
22
23 #define NV50_PUSH_EXPLICIT_SPACE_CHECKING
24
25 #include "nv50/nv50_context.h"
26 #include "nv50/nv50_query_hw_sm.h"
27
28 #include "nv_object.xml.h"
29 #include "nv50/nv50_compute.xml.h"
30
31 /* === PERFORMANCE MONITORING COUNTERS for NV84+ === */
32
33 /* NOTE: intentionally using the same names as NV */
34 static const char *nv50_hw_sm_query_names[] =
35 {
36    "branch",
37    "divergent_branch",
38    "instructions",
39    "prof_trigger_00",
40    "prof_trigger_01",
41    "prof_trigger_02",
42    "prof_trigger_03",
43    "prof_trigger_04",
44    "prof_trigger_05",
45    "prof_trigger_06",
46    "prof_trigger_07",
47    "sm_cta_launched",
48    "warp_serialize",
49 };
50
51 static const uint64_t nv50_read_hw_sm_counters_code[] =
52 {
53    /* and b32 $r0 $r0 0x0000ffff
54     * add b32 $c0 $r0 $r0 $r0
55     * (lg $c0) ret
56     * mov $r0 $pm0
57     * mov $r1 $pm1
58     * mov $r2 $pm2
59     * mov $r3 $pm3
60     * mov $r4 $physid
61     * ld $r5 b32 s[0x10]
62     * ld $r6 b32 s[0x14]
63     * and b32 $r4 $r4 0x000f0000
64     * shr u32 $r4 $r4 0x10
65     * mul $r4 u24 $r4 0x14
66     * add b32 $r5 $r5 $r4
67     * st b32 g15[$r5] $r0
68     * add b32 $r5 $r5 0x04
69     * st b32 g15[$r5] $r1
70     * add b32 $r5 $r5 0x04
71     * st b32 g15[$r5] $r2
72     * add b32 $r5 $r5 0x04
73     * st b32 g15[$r5] $r3
74     * add b32 $r5 $r5 0x04
75     * exit st b32 g15[$r5] $r6 */
76    0x00000fffd03f0001ULL,
77    0x040007c020000001ULL,
78    0x0000028030000003ULL,
79    0x6001078000000001ULL,
80    0x6001478000000005ULL,
81    0x6001878000000009ULL,
82    0x6001c7800000000dULL,
83    0x6000078000000011ULL,
84    0x4400c78010000815ULL,
85    0x4400c78010000a19ULL,
86    0x0000f003d0000811ULL,
87    0xe410078030100811ULL,
88    0x0000000340540811ULL,
89    0x0401078020000a15ULL,
90    0xa0c00780d00f0a01ULL,
91    0x0000000320048a15ULL,
92    0xa0c00780d00f0a05ULL,
93    0x0000000320048a15ULL,
94    0xa0c00780d00f0a09ULL,
95    0x0000000320048a15ULL,
96    0xa0c00780d00f0a0dULL,
97    0x0000000320048a15ULL,
98    0xa0c00781d00f0a19ULL,
99 };
100
101 struct nv50_hw_sm_counter_cfg
102 {
103    uint32_t mode : 4;    /* LOGOP, LOGOP_PULSE */
104    uint32_t unit : 8;    /* UNK[0-5] */
105    uint32_t sig  : 8;    /* signal selection */
106 };
107
108 struct nv50_hw_sm_query_cfg
109 {
110    struct nv50_hw_sm_counter_cfg ctr[4];
111    uint8_t num_counters;
112 };
113
114 #define _Q(n, m, u, s) [NV50_HW_SM_QUERY_##n] = { { { NV50_COMPUTE_MP_PM_CONTROL_MODE_##m, NV50_COMPUTE_MP_PM_CONTROL_UNIT_##u, s, }, {}, {}, {} }, 1 }
115
116 /* ==== Compute capability 1.1 (G84+) ==== */
117 static const struct nv50_hw_sm_query_cfg sm11_hw_sm_queries[] =
118 {
119    _Q(BRANCH,           LOGOP, UNK4, 0x02),
120    _Q(DIVERGENT_BRANCH, LOGOP, UNK4, 0x09),
121    _Q(INSTRUCTIONS,     LOGOP, UNK4, 0x04),
122    _Q(PROF_TRIGGER_0,   LOGOP, UNK1, 0x26),
123    _Q(PROF_TRIGGER_1,   LOGOP, UNK1, 0x27),
124    _Q(PROF_TRIGGER_2,   LOGOP, UNK1, 0x28),
125    _Q(PROF_TRIGGER_3,   LOGOP, UNK1, 0x29),
126    _Q(PROF_TRIGGER_4,   LOGOP, UNK1, 0x2a),
127    _Q(PROF_TRIGGER_5,   LOGOP, UNK1, 0x2b),
128    _Q(PROF_TRIGGER_6,   LOGOP, UNK1, 0x2c),
129    _Q(PROF_TRIGGER_7,   LOGOP, UNK1, 0x2d),
130    _Q(SM_CTA_LAUNCHED,  LOGOP, UNK1, 0x33),
131    _Q(WARP_SERIALIZE,   LOGOP, UNK0, 0x0b),
132 };
133
134 static inline uint16_t nv50_hw_sm_get_func(uint8_t slot)
135 {
136    switch (slot) {
137    case 0: return 0xaaaa;
138    case 1: return 0xcccc;
139    case 2: return 0xf0f0;
140    case 3: return 0xff00;
141    }
142    return 0;
143 }
144
145 static const struct nv50_hw_sm_query_cfg *
146 nv50_hw_sm_query_get_cfg(struct nv50_context *nv50, struct nv50_hw_query *hq)
147 {
148    struct nv50_query *q = &hq->base;
149    return &sm11_hw_sm_queries[q->type - NV50_HW_SM_QUERY(0)];
150 }
151
152 static void
153 nv50_hw_sm_destroy_query(struct nv50_context *nv50, struct nv50_hw_query *hq)
154 {
155    struct nv50_query *q = &hq->base;
156    nv50_hw_query_allocate(nv50, q, 0);
157    nouveau_fence_ref(NULL, &hq->fence);
158    FREE(hq);
159 }
160
161 static boolean
162 nv50_hw_sm_begin_query(struct nv50_context *nv50, struct nv50_hw_query *hq)
163 {
164    struct nv50_screen *screen = nv50->screen;
165    struct nouveau_pushbuf *push = nv50->base.pushbuf;
166    struct nv50_hw_sm_query *hsq = nv50_hw_sm_query(hq);
167    const struct nv50_hw_sm_query_cfg *cfg;
168    uint16_t func;
169    int i, c;
170
171    cfg = nv50_hw_sm_query_get_cfg(nv50, hq);
172
173    /* check if we have enough free counter slots */
174    if (screen->pm.num_hw_sm_active + cfg->num_counters > 4) {
175       NOUVEAU_ERR("Not enough free MP counter slots !\n");
176       return false;
177    }
178
179    pipe_mutex_lock(screen->base.push_mutex);
180    assert(cfg->num_counters <= 4);
181    PUSH_SPACE(push, 4 * 4);
182
183    /* set sequence field to 0 (used to check if result is available) */
184    for (i = 0; i < screen->MPsInTP; ++i) {
185       const unsigned b = (0x14 / 4) * i;
186       hq->data[b + 16] = 0;
187    }
188    hq->sequence++;
189
190    for (i = 0; i < cfg->num_counters; i++) {
191       screen->pm.num_hw_sm_active++;
192
193       /* find free counter slots */
194       for (c = 0; c < 4; ++c) {
195          if (!screen->pm.mp_counter[c]) {
196             hsq->ctr[i] = c;
197             screen->pm.mp_counter[c] = hsq;
198             break;
199          }
200       }
201
202       /* select func to aggregate counters */
203       func = nv50_hw_sm_get_func(c);
204
205       /* configure and reset the counter(s) */
206       BEGIN_NV04(push, NV50_CP(MP_PM_CONTROL(c)), 1);
207       PUSH_DATA (push, (cfg->ctr[i].sig << 24) | (func << 8)
208                         | cfg->ctr[i].unit | cfg->ctr[i].mode);
209       BEGIN_NV04(push, NV50_CP(MP_PM_SET(c)), 1);
210       PUSH_DATA (push, 0);
211    }
212    pipe_mutex_unlock(screen->base.push_mutex);
213    return true;
214 }
215
216 static void
217 nv50_hw_sm_end_query(struct nv50_context *nv50, struct nv50_hw_query *hq)
218 {
219    struct nv50_screen *screen = nv50->screen;
220    struct pipe_context *pipe = &nv50->base.pipe;
221    struct nouveau_pushbuf *push = nv50->base.pushbuf;
222    struct nv50_hw_sm_query *hsq = nv50_hw_sm_query(hq);
223    struct nv50_program *old = nv50->compprog;
224    struct pipe_grid_info info = {};
225    uint32_t mask;
226    uint32_t input[3];
227    const uint block[3] = { 32, 1, 1 };
228    const uint grid[3] = { screen->MPsInTP, screen->TPs, 1 };
229    int c, i;
230
231    if (unlikely(!screen->pm.prog)) {
232       struct nv50_program *prog = CALLOC_STRUCT(nv50_program);
233       prog->type = PIPE_SHADER_COMPUTE;
234       prog->translated = true;
235       prog->max_gpr = 7;
236       prog->parm_size = 8;
237       prog->code = (uint32_t *)nv50_read_hw_sm_counters_code;
238       prog->code_size = sizeof(nv50_read_hw_sm_counters_code);
239       screen->pm.prog = prog;
240    }
241
242    pipe_mutex_lock(screen->base.push_mutex);
243    /* disable all counting */
244    PUSH_SPACE(push, 8);
245    for (c = 0; c < 4; c++) {
246       if (screen->pm.mp_counter[c]) {
247          BEGIN_NV04(push, NV50_CP(MP_PM_CONTROL(c)), 1);
248          PUSH_DATA (push, 0);
249       }
250    }
251
252    /* release counters for this query */
253    for (c = 0; c < 4; c++) {
254       if (screen->pm.mp_counter[c] == hsq) {
255          screen->pm.num_hw_sm_active--;
256          screen->pm.mp_counter[c] = NULL;
257       }
258    }
259
260    BCTX_REFN_bo(nv50->bufctx_cp, CP_QUERY, NOUVEAU_BO_GART | NOUVEAU_BO_WR,
261                 hq->bo);
262
263    PUSH_SPACE(push, 2);
264    BEGIN_NV04(push, SUBC_CP(NV50_GRAPH_SERIALIZE), 1);
265    PUSH_DATA (push, 0);
266    pipe_mutex_unlock(screen->base.push_mutex);
267
268    pipe->bind_compute_state(pipe, screen->pm.prog);
269    input[0] = hq->bo->offset + hq->base_offset;
270    input[1] = hq->sequence;
271
272    for (i = 0; i < 3; i++) {
273       info.block[i] = block[i];
274       info.grid[i] = grid[i];
275    }
276    info.pc = 0;
277    info.input = input;
278    pipe->launch_grid(pipe, &info);
279    pipe->bind_compute_state(pipe, old);
280
281    nouveau_bufctx_reset(nv50->bufctx_cp, NV50_BIND_CP_QUERY);
282
283    pipe_mutex_lock(screen->base.push_mutex);
284    /* re-active other counters */
285    PUSH_SPACE(push, 8);
286    mask = 0;
287    for (c = 0; c < 4; c++) {
288       const struct nv50_hw_sm_query_cfg *cfg;
289       unsigned i;
290
291       hsq = screen->pm.mp_counter[c];
292       if (!hsq)
293          continue;
294
295       cfg = nv50_hw_sm_query_get_cfg(nv50, &hsq->base);
296       for (i = 0; i < cfg->num_counters; i++) {
297          uint16_t func;
298
299          if (mask & (1 << hsq->ctr[i]))
300             break;
301
302          mask |= 1 << hsq->ctr[i];
303          func  = nv50_hw_sm_get_func(hsq->ctr[i]);
304
305          BEGIN_NV04(push, NV50_CP(MP_PM_CONTROL(hsq->ctr[i])), 1);
306          PUSH_DATA (push, (cfg->ctr[i].sig << 24) | (func << 8)
307                     | cfg->ctr[i].unit | cfg->ctr[i].mode);
308       }
309    }
310    pipe_mutex_unlock(screen->base.push_mutex);
311 }
312
313 static inline bool
314 nv50_hw_sm_query_read_data(uint32_t count[32][4],
315                            struct nv50_context *nv50, bool wait,
316                            struct nv50_hw_query *hq,
317                            const struct nv50_hw_sm_query_cfg *cfg,
318                            unsigned mp_count)
319 {
320    struct nv50_hw_sm_query *hsq = nv50_hw_sm_query(hq);
321    unsigned p, c;
322
323    for (p = 0; p < mp_count; ++p) {
324       const unsigned b = (0x14 / 4) * p;
325
326       for (c = 0; c < cfg->num_counters; ++c) {
327          if (hq->data[b + 4] != hq->sequence) {
328             if (!wait)
329                return false;
330             if (nouveau_bo_wait(hq->bo, NOUVEAU_BO_RD, nv50->base.client))
331                return false;
332          }
333          count[p][c] = hq->data[b + hsq->ctr[c]];
334       }
335    }
336    return true;
337 }
338
339 static boolean
340 nv50_hw_sm_get_query_result(struct nv50_context *nv50, struct nv50_hw_query *hq,
341                             boolean wait, union pipe_query_result *result)
342 {
343    uint32_t count[32][4];
344    uint64_t value = 0;
345    unsigned mp_count = MIN2(nv50->screen->MPsInTP, 32);
346    unsigned p, c;
347    const struct nv50_hw_sm_query_cfg *cfg;
348    bool ret;
349
350    cfg = nv50_hw_sm_query_get_cfg(nv50, hq);
351
352    pipe_mutex_lock(nv50->screen->base.push_mutex);
353    ret = nv50_hw_sm_query_read_data(count, nv50, wait, hq, cfg, mp_count);
354    pipe_mutex_lock(nv50->screen->base.push_mutex);
355    if (!ret)
356       return false;
357
358    for (c = 0; c < cfg->num_counters; ++c)
359       for (p = 0; p < mp_count; ++p)
360          value += count[p][c];
361
362    /* We only count a single TP, and simply multiply by the total number of
363     * TPs to compute result over all TPs. This is inaccurate, but enough! */
364    value *= nv50->screen->TPs;
365
366    *(uint64_t *)result = value;
367    return true;
368 }
369
370 static const struct nv50_hw_query_funcs hw_sm_query_funcs = {
371    .destroy_query = nv50_hw_sm_destroy_query,
372    .begin_query = nv50_hw_sm_begin_query,
373    .end_query = nv50_hw_sm_end_query,
374    .get_query_result = nv50_hw_sm_get_query_result,
375 };
376
377 struct nv50_hw_query *
378 nv50_hw_sm_create_query(struct nv50_context *nv50, unsigned type)
379 {
380    struct nv50_hw_sm_query *hsq;
381    struct nv50_hw_query *hq;
382    unsigned space;
383
384    if (type < NV50_HW_SM_QUERY(0) || type > NV50_HW_SM_QUERY_LAST)
385       return NULL;
386
387    hsq = CALLOC_STRUCT(nv50_hw_sm_query);
388    if (!hsq)
389       return NULL;
390
391    hq = &hsq->base;
392    hq->funcs = &hw_sm_query_funcs;
393    hq->base.type = type;
394
395    /*
396     * for each MP:
397     * [00] = MP.C0
398     * [04] = MP.C1
399     * [08] = MP.C2
400     * [0c] = MP.C3
401     * [10] = MP.sequence
402     */
403    space = (4 + 1) * nv50->screen->MPsInTP * sizeof(uint32_t);
404
405    if (!nv50_hw_query_allocate(nv50, &hq->base, space)) {
406       FREE(hq);
407       return NULL;
408    }
409
410    return hq;
411 }
412
413 int
414 nv50_hw_sm_get_driver_query_info(struct nv50_screen *screen, unsigned id,
415                                  struct pipe_driver_query_info *info)
416 {
417    int count = 0;
418
419    if (screen->compute)
420       if (screen->base.class_3d >= NV84_3D_CLASS)
421          count += NV50_HW_SM_QUERY_COUNT;
422
423    if (!info)
424       return count;
425
426    if (id < count) {
427       if (screen->compute) {
428          if (screen->base.class_3d >= NV84_3D_CLASS) {
429             info->name = nv50_hw_sm_query_names[id];
430             info->query_type = NV50_HW_SM_QUERY(id);
431             info->group_id = NV50_HW_SM_QUERY_GROUP;
432             return 1;
433          }
434       }
435    }
436    return 0;
437 }