etnaviv: rework etna_acc_sample_provider
[mesa.git] / src / gallium / drivers / etnaviv / etnaviv_query_acc.h
1 /*
2 * Copyright (c) 2017 Etnaviv Project
3 * Copyright (C) 2017 Zodiac Inflight Innovations
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sub license,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
14 * of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Rob Clark <robclark@freedesktop.org>
26 * Christian Gmeiner <christian.gmeiner@gmail.com>
27 */
28
29 #ifndef H_ETNAVIV_QUERY_HW
30 #define H_ETNAVIV_QUERY_HW
31
32 #include "etnaviv_query.h"
33
34 struct etna_acc_query;
35
36 struct etna_acc_sample_provider {
37 void (*resume)(struct etna_acc_query *aq, struct etna_context *ctx);
38 void (*suspend)(struct etna_acc_query *aq, struct etna_context *ctx);
39
40 void (*result)(struct etna_acc_query *aq, void *buf,
41 union pipe_query_result *result);
42 };
43
44 struct etna_acc_query {
45 struct etna_query base;
46
47 struct pipe_resource *prsc;
48 unsigned samples; /* number of samples stored in resource */
49 unsigned no_wait_cnt; /* see etna_hw_get_query_result() */
50 struct list_head node; /* list-node in ctx->active_hw_queries */
51
52 const struct etna_acc_sample_provider *provider;
53 };
54
55 static inline struct etna_acc_query *
56 etna_acc_query(struct etna_query *q)
57 {
58 return (struct etna_acc_query *)q;
59 }
60
61 struct etna_query *
62 etna_acc_create_query(struct etna_context *ctx, unsigned query_type);
63
64 static inline void
65 etna_acc_query_suspend(struct etna_acc_query *aq, struct etna_context *ctx)
66 {
67 const struct etna_acc_sample_provider *p = aq->provider;
68
69 if (!aq->base.active)
70 return;
71
72 p->suspend(aq, ctx);
73 aq->samples++;
74 }
75
76 static inline void
77 etna_acc_query_resume(struct etna_acc_query *aq, struct etna_context *ctx)
78 {
79 const struct etna_acc_sample_provider *p = aq->provider;
80
81 if (!aq->base.active)
82 return;
83
84 p->resume(aq, ctx);
85 aq->samples++;
86 }
87
88 #endif