gallium/u_queue: add an option to have multiple worker threads
[mesa.git] / src / gallium / winsys / radeon / drm / radeon_drm_cs.h
1 /*
2 * Copyright © 2011 Marek Olšák <maraeo@gmail.com>
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 */
26
27 #ifndef RADEON_DRM_CS_H
28 #define RADEON_DRM_CS_H
29
30 #include "radeon_drm_bo.h"
31
32 struct radeon_bo_item {
33 struct radeon_bo *bo;
34 uint64_t priority_usage;
35 };
36
37 struct radeon_cs_context {
38 uint32_t buf[16 * 1024];
39
40 int fd;
41 struct drm_radeon_cs cs;
42 struct drm_radeon_cs_chunk chunks[3];
43 uint64_t chunk_array[3];
44 uint32_t flags[2];
45
46 /* Buffers. */
47 unsigned nrelocs;
48 unsigned crelocs;
49 unsigned validated_crelocs;
50 struct radeon_bo_item *relocs_bo;
51 struct drm_radeon_cs_reloc *relocs;
52 uint64_t *priority_usage;
53
54 int reloc_indices_hashlist[4096];
55
56 uint64_t used_vram;
57 uint64_t used_gart;
58 };
59
60 struct radeon_drm_cs {
61 struct radeon_winsys_cs base;
62 enum ring_type ring_type;
63
64 /* We flip between these two CS. While one is being consumed
65 * by the kernel in another thread, the other one is being filled
66 * by the pipe driver. */
67 struct radeon_cs_context csc1;
68 struct radeon_cs_context csc2;
69 /* The currently-used CS. */
70 struct radeon_cs_context *csc;
71 /* The CS being currently-owned by the other thread. */
72 struct radeon_cs_context *cst;
73
74 /* The winsys. */
75 struct radeon_drm_winsys *ws;
76
77 /* Flush CS. */
78 void (*flush_cs)(void *ctx, unsigned flags, struct pipe_fence_handle **fence);
79 void *flush_data;
80
81 struct util_queue_fence flush_completed;
82 };
83
84 int radeon_lookup_buffer(struct radeon_cs_context *csc, struct radeon_bo *bo);
85
86 static inline struct radeon_drm_cs *
87 radeon_drm_cs(struct radeon_winsys_cs *base)
88 {
89 return (struct radeon_drm_cs*)base;
90 }
91
92 static inline boolean
93 radeon_bo_is_referenced_by_cs(struct radeon_drm_cs *cs,
94 struct radeon_bo *bo)
95 {
96 int num_refs = bo->num_cs_references;
97 return num_refs == bo->rws->num_cs ||
98 (num_refs && radeon_lookup_buffer(cs->csc, bo) != -1);
99 }
100
101 static inline boolean
102 radeon_bo_is_referenced_by_cs_for_write(struct radeon_drm_cs *cs,
103 struct radeon_bo *bo)
104 {
105 int index;
106
107 if (!bo->num_cs_references)
108 return FALSE;
109
110 index = radeon_lookup_buffer(cs->csc, bo);
111 if (index == -1)
112 return FALSE;
113
114 return cs->csc->relocs[index].write_domain != 0;
115 }
116
117 static inline boolean
118 radeon_bo_is_referenced_by_any_cs(struct radeon_bo *bo)
119 {
120 return bo->num_cs_references != 0;
121 }
122
123 void radeon_drm_cs_sync_flush(struct radeon_winsys_cs *rcs);
124 void radeon_drm_cs_init_functions(struct radeon_drm_winsys *ws);
125 void radeon_drm_cs_emit_ioctl_oneshot(void *job, int thread_index);
126
127 #endif