OSDN Git Service

gallium: add pipe_context::set_active_query_state for pausing queries
[android-x86/external-mesa.git] / src / gallium / drivers / nouveau / nv50 / nv50_query.c
1 /*
2  * Copyright 2011 Nouveau Project
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  * Authors: Christoph Bumiller
23  */
24
25 #define NV50_PUSH_EXPLICIT_SPACE_CHECKING
26
27 #include "nv50/nv50_context.h"
28 #include "nv50/nv50_query.h"
29 #include "nv50/nv50_query_hw.h"
30 #include "nv50/nv50_query_hw_metric.h"
31 #include "nv50/nv50_query_hw_sm.h"
32
33 static struct pipe_query *
34 nv50_create_query(struct pipe_context *pipe, unsigned type, unsigned index)
35 {
36    struct nv50_context *nv50 = nv50_context(pipe);
37    struct nv50_query *q;
38
39    q = nv50_hw_create_query(nv50, type, index);
40    return (struct pipe_query *)q;
41 }
42
43 static void
44 nv50_destroy_query(struct pipe_context *pipe, struct pipe_query *pq)
45 {
46    struct nv50_query *q = nv50_query(pq);
47    q->funcs->destroy_query(nv50_context(pipe), q);
48 }
49
50 static boolean
51 nv50_begin_query(struct pipe_context *pipe, struct pipe_query *pq)
52 {
53    struct nv50_query *q = nv50_query(pq);
54    return q->funcs->begin_query(nv50_context(pipe), q);
55 }
56
57 static void
58 nv50_end_query(struct pipe_context *pipe, struct pipe_query *pq)
59 {
60    struct nv50_query *q = nv50_query(pq);
61    q->funcs->end_query(nv50_context(pipe), q);
62 }
63
64 static boolean
65 nv50_get_query_result(struct pipe_context *pipe, struct pipe_query *pq,
66                       boolean wait, union pipe_query_result *result)
67 {
68    struct nv50_query *q = nv50_query(pq);
69    return q->funcs->get_query_result(nv50_context(pipe), q, wait, result);
70 }
71
72 static void
73 nv50_render_condition(struct pipe_context *pipe,
74                       struct pipe_query *pq,
75                       boolean condition, uint mode)
76 {
77    struct nv50_context *nv50 = nv50_context(pipe);
78    struct nouveau_pushbuf *push = nv50->base.pushbuf;
79    struct nv50_query *q = nv50_query(pq);
80    struct nv50_hw_query *hq = nv50_hw_query(q);
81    uint32_t cond;
82    bool wait =
83       mode != PIPE_RENDER_COND_NO_WAIT &&
84       mode != PIPE_RENDER_COND_BY_REGION_NO_WAIT;
85
86    if (!pq) {
87       cond = NV50_3D_COND_MODE_ALWAYS;
88    }
89    else {
90       /* NOTE: comparison of 2 queries only works if both have completed */
91       switch (q->type) {
92       case PIPE_QUERY_SO_OVERFLOW_PREDICATE:
93          cond = condition ? NV50_3D_COND_MODE_EQUAL :
94                             NV50_3D_COND_MODE_NOT_EQUAL;
95          wait = true;
96          break;
97       case PIPE_QUERY_OCCLUSION_COUNTER:
98       case PIPE_QUERY_OCCLUSION_PREDICATE:
99          if (likely(!condition)) {
100             if (unlikely(hq->nesting))
101                cond = wait ? NV50_3D_COND_MODE_NOT_EQUAL :
102                              NV50_3D_COND_MODE_ALWAYS;
103             else
104                cond = NV50_3D_COND_MODE_RES_NON_ZERO;
105          } else {
106             cond = wait ? NV50_3D_COND_MODE_EQUAL : NV50_3D_COND_MODE_ALWAYS;
107          }
108          break;
109       default:
110          assert(!"render condition query not a predicate");
111          cond = NV50_3D_COND_MODE_ALWAYS;
112          break;
113       }
114    }
115
116    nv50->cond_query = pq;
117    nv50->cond_cond = condition;
118    nv50->cond_condmode = cond;
119    nv50->cond_mode = mode;
120
121    if (!pq) {
122       PUSH_SPACE(push, 2);
123       BEGIN_NV04(push, NV50_3D(COND_MODE), 1);
124       PUSH_DATA (push, cond);
125       return;
126    }
127
128    PUSH_SPACE(push, 9);
129
130    if (wait) {
131       BEGIN_NV04(push, SUBC_3D(NV50_GRAPH_SERIALIZE), 1);
132       PUSH_DATA (push, 0);
133    }
134
135    PUSH_REFN (push, hq->bo, NOUVEAU_BO_GART | NOUVEAU_BO_RD);
136    BEGIN_NV04(push, NV50_3D(COND_ADDRESS_HIGH), 3);
137    PUSH_DATAh(push, hq->bo->offset + hq->offset);
138    PUSH_DATA (push, hq->bo->offset + hq->offset);
139    PUSH_DATA (push, cond);
140
141    BEGIN_NV04(push, NV50_2D(COND_ADDRESS_HIGH), 2);
142    PUSH_DATAh(push, hq->bo->offset + hq->offset);
143    PUSH_DATA (push, hq->bo->offset + hq->offset);
144 }
145
146 static void
147 nv50_set_active_query_state(struct pipe_context *pipe, boolean enable)
148 {
149 }
150
151 void
152 nv50_init_query_functions(struct nv50_context *nv50)
153 {
154    struct pipe_context *pipe = &nv50->base.pipe;
155
156    pipe->create_query = nv50_create_query;
157    pipe->destroy_query = nv50_destroy_query;
158    pipe->begin_query = nv50_begin_query;
159    pipe->end_query = nv50_end_query;
160    pipe->get_query_result = nv50_get_query_result;
161    pipe->set_active_query_state = nv50_set_active_query_state;
162    pipe->render_condition = nv50_render_condition;
163    nv50->cond_condmode = NV50_3D_COND_MODE_ALWAYS;
164 }
165
166 int
167 nv50_screen_get_driver_query_info(struct pipe_screen *pscreen,
168                                   unsigned id,
169                                   struct pipe_driver_query_info *info)
170 {
171    struct nv50_screen *screen = nv50_screen(pscreen);
172    int num_hw_queries = 0;
173
174    num_hw_queries = nv50_hw_get_driver_query_info(screen, 0, NULL);
175
176    if (!info)
177       return num_hw_queries;
178
179    /* Init default values. */
180    info->name = "this_is_not_the_query_you_are_looking_for";
181    info->query_type = 0xdeadd01d;
182    info->max_value.u64 = 0;
183    info->type = PIPE_DRIVER_QUERY_TYPE_UINT64;
184    info->group_id = -1;
185    info->flags = 0;
186
187    return nv50_hw_get_driver_query_info(screen, id, info);
188 }
189
190 int
191 nv50_screen_get_driver_query_group_info(struct pipe_screen *pscreen,
192                                         unsigned id,
193                                         struct pipe_driver_query_group_info *info)
194 {
195    struct nv50_screen *screen = nv50_screen(pscreen);
196    int count = 0;
197
198    if (screen->compute)
199       if (screen->base.class_3d >= NV84_3D_CLASS)
200          count += 2;
201
202    if (!info)
203       return count;
204
205    if (id == NV50_HW_SM_QUERY_GROUP) {
206       if (screen->compute) {
207          if (screen->base.class_3d >= NV84_3D_CLASS) {
208             info->name = "MP counters";
209
210             /* Because we can't expose the number of hardware counters needed
211              * for each different query, we don't want to allow more than one
212              * active query simultaneously to avoid failure when the maximum
213              * number of counters is reached. Note that these groups of GPU
214              * counters are currently only used by AMD_performance_monitor.
215              */
216             info->max_active_queries = 1;
217             info->num_queries = NV50_HW_SM_QUERY_COUNT;
218             return 1;
219          }
220       }
221    } else
222    if (id == NV50_HW_METRIC_QUERY_GROUP) {
223       if (screen->compute) {
224          if (screen->base.class_3d >= NV84_3D_CLASS) {
225             info->name = "Performance metrics";
226             info->max_active_queries = 1;
227             info->num_queries = NV50_HW_METRIC_QUERY_COUNT;
228             return 1;
229          }
230       }
231    }
232
233    /* user asked for info about non-existing query group */
234    info->name = "this_is_not_the_query_group_you_are_looking_for";
235    info->max_active_queries = 0;
236    info->num_queries = 0;
237    return 0;
238 }