Merge branch 'gallium-polygon-stipple'
[mesa.git] / src / gallium / winsys / r600 / drm / r600_priv.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef R600_PRIV_H
27 #define R600_PRIV_H
28
29 #include <errno.h>
30 #include <stdint.h>
31 #include <stdlib.h>
32 #include <assert.h>
33 #include <util/u_double_list.h>
34 #include <util/u_inlines.h>
35 #include "util/u_hash_table.h"
36 #include <os/os_thread.h>
37 #include "r600.h"
38
39 #define PKT_COUNT_C 0xC000FFFF
40 #define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
41
42 struct r600_bomgr;
43 struct r600_bo;
44
45 struct radeon {
46 int fd;
47 int refcount;
48 unsigned device;
49 unsigned family;
50 enum chip_class chip_class;
51 struct r600_tiling_info tiling_info;
52 struct r600_bomgr *bomgr;
53 unsigned fence;
54 unsigned *cfence;
55 struct r600_bo *fence_bo;
56 unsigned clock_crystal_freq;
57 unsigned num_backends;
58 unsigned minor_version;
59
60 /* List of buffer handles and its mutex. */
61 struct util_hash_table *bo_handles;
62 pipe_mutex bo_handles_mutex;
63 };
64
65 /* these flags are used in register flags and added into block flags */
66 #define REG_FLAG_NEED_BO 1
67 #define REG_FLAG_DIRTY_ALWAYS 2
68 #define REG_FLAG_RV6XX_SBU 4
69 #define REG_FLAG_NOT_R600 8
70 #define REG_FLAG_ENABLE_ALWAYS 16
71 #define BLOCK_FLAG_RESOURCE 32
72 #define REG_FLAG_FLUSH_CHANGE 64
73
74 struct r600_reg {
75 unsigned offset;
76 unsigned flags;
77 unsigned flush_flags;
78 unsigned flush_mask;
79 };
80
81 #define BO_BOUND_TEXTURE 1
82 struct radeon_bo {
83 struct pipe_reference reference;
84 unsigned handle;
85 unsigned size;
86 unsigned alignment;
87 int map_count;
88 void *data;
89 struct list_head fencedlist;
90 unsigned fence;
91 struct r600_context *ctx;
92 boolean shared;
93 struct r600_reloc *reloc;
94 unsigned reloc_id;
95 unsigned last_flush;
96 unsigned name;
97 unsigned binding;
98 };
99
100 struct r600_bo {
101 struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
102 /* DO NOT MOVE THIS ^ */
103 unsigned size;
104 unsigned tiling_flags;
105 unsigned kernel_pitch;
106 unsigned domains;
107 struct radeon_bo *bo;
108 unsigned fence;
109 /* manager data */
110 struct list_head list;
111 unsigned manager_id;
112 unsigned alignment;
113 unsigned offset;
114 int64_t start;
115 int64_t end;
116 };
117
118 struct r600_bomgr {
119 struct radeon *radeon;
120 unsigned usecs;
121 pipe_mutex mutex;
122 struct list_head delayed;
123 unsigned num_delayed;
124 };
125
126 /*
127 * r600_drm.c
128 */
129 struct radeon *r600_new(int fd, unsigned device);
130 void r600_delete(struct radeon *r600);
131
132 /*
133 * radeon_pciid.c
134 */
135 unsigned radeon_family_from_device(unsigned device);
136
137 /*
138 * radeon_bo.c
139 */
140 struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
141 unsigned size, unsigned alignment, unsigned initial_domain);
142 void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
143 struct radeon_bo *src);
144 int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
145 int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
146 int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
147 int radeon_bo_get_tiling_flags(struct radeon *radeon,
148 struct radeon_bo *bo,
149 uint32_t *tiling_flags,
150 uint32_t *pitch);
151 int radeon_bo_get_name(struct radeon *radeon,
152 struct radeon_bo *bo,
153 uint32_t *name);
154 int radeon_bo_fixed_map(struct radeon *radeon, struct radeon_bo *bo);
155
156 /*
157 * r600_hw_context.c
158 */
159 int r600_context_init_fence(struct r600_context *ctx);
160 void r600_context_get_reloc(struct r600_context *ctx, struct r600_bo *rbo);
161 void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
162 unsigned flush_mask, struct r600_bo *rbo);
163 struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
164 int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
165 unsigned opcode, unsigned offset_base);
166 void r600_context_pipe_state_set_resource(struct r600_context *ctx, struct r600_pipe_resource_state *state, struct r600_block *block);
167 void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
168 void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
169 void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
170 int dirty, int index);
171 int r600_setup_block_table(struct r600_context *ctx);
172 void r600_context_reg(struct r600_context *ctx,
173 unsigned offset, unsigned value,
174 unsigned mask);
175 void r600_init_cs(struct r600_context *ctx);
176 int r600_resource_init(struct r600_context *ctx, struct r600_range *range, unsigned offset, unsigned nblocks, unsigned stride, struct r600_reg *reg, int nreg, unsigned offset_base);
177
178 static INLINE void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo)
179 {
180 struct radeon_bo *bo = rbo->bo;
181
182 assert(bo != NULL);
183
184 if (!bo->reloc)
185 r600_context_get_reloc(ctx, rbo);
186
187 /* set PKT3 to point to proper reloc */
188 *pm4 = bo->reloc_id;
189 }
190
191 /*
192 * r600_bo.c
193 */
194 void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
195
196 /*
197 * r600_bomgr.c
198 */
199 struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
200 void r600_bomgr_destroy(struct r600_bomgr *mgr);
201 boolean r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
202 void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
203 struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
204 unsigned size,
205 unsigned alignment,
206 unsigned cfence);
207
208
209 /*
210 * helpers
211 */
212
213
214 /*
215 * radeon_bo.c
216 */
217 static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
218 {
219 if (bo->map_count == 0 && !bo->data)
220 return radeon_bo_fixed_map(radeon, bo);
221 bo->map_count++;
222 return 0;
223 }
224
225 static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
226 {
227 bo->map_count--;
228 assert(bo->map_count >= 0);
229 }
230
231 /*
232 * fence
233 */
234 static inline boolean fence_is_after(unsigned fence, unsigned ofence)
235 {
236 /* handle wrap around */
237 if (fence < 0x80000000 && ofence > 0x80000000)
238 return TRUE;
239 if (fence > ofence)
240 return TRUE;
241 return FALSE;
242 }
243
244 #endif