summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
blob: 8225755d85e3be1eb6619fc82957bfd42618e91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef __NVC0_QUERY_HW_H__
#define __NVC0_QUERY_HW_H__

#include "nouveau_fence.h"
#include "nouveau_mm.h"

#include "nvc0_query.h"

#define NVC0_HW_QUERY_TFB_BUFFER_OFFSET (PIPE_QUERY_TYPES + 0)

struct nvc0_hw_query;

struct nvc0_hw_query_funcs {
   void (*destroy_query)(struct nvc0_context *, struct nvc0_hw_query *);
   boolean (*begin_query)(struct nvc0_context *, struct nvc0_hw_query *);
   void (*end_query)(struct nvc0_context *, struct nvc0_hw_query *);
   boolean (*get_query_result)(struct nvc0_context *, struct nvc0_hw_query *,
                               boolean, union pipe_query_result *);
};

struct nvc0_hw_query {
   struct nvc0_query base;
   const struct nvc0_hw_query_funcs *funcs;
   uint32_t *data;
   uint32_t sequence;
   struct nouveau_bo *bo;
   uint32_t base_offset;
   uint32_t offset; /* base_offset + i * rotate */
   uint8_t state;
   boolean is64bit;
   uint8_t rotate;
   int nesting; /* only used for occlusion queries */
   struct nouveau_mm_allocation *mm;
   struct nouveau_fence *fence;
};

static inline struct nvc0_hw_query *
nvc0_hw_query(struct nvc0_query *q)
{
   return (struct nvc0_hw_query *)q;
}

struct nvc0_query *
nvc0_hw_create_query(struct nvc0_context *, unsigned, unsigned);
int
nvc0_hw_get_driver_query_info(struct nvc0_screen *, unsigned,
                              struct pipe_driver_query_info *);
bool
nvc0_hw_query_allocate(struct nvc0_context *, struct nvc0_query *, int);
void
nvc0_hw_query_pushbuf_submit(struct nouveau_pushbuf *, struct nvc0_query *,
                             unsigned);
void
nvc0_hw_query_fifo_wait(struct nvc0_context *, struct nvc0_query *);

#endif