Merge branch 'draw-instanced'
[mesa.git] / src / gallium / drivers / r600 / r600.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_H
27 #define R600_H
28
29 #include <assert.h>
30 #include <stdint.h>
31 #include <stdio.h>
32 #include <util/u_double_list.h>
33 #include <pipe/p_compiler.h>
34
35 #define RADEON_CTX_MAX_PM4 (64 * 1024 / 4)
36
37 #define R600_ERR(fmt, args...) \
38 fprintf(stderr, "EE %s:%d %s - "fmt, __FILE__, __LINE__, __func__, ##args)
39
40 typedef uint64_t u64;
41 typedef uint32_t u32;
42 typedef uint16_t u16;
43 typedef uint8_t u8;
44
45 struct radeon;
46 struct winsys_handle;
47
48 enum radeon_family {
49 CHIP_UNKNOWN,
50 CHIP_R100,
51 CHIP_RV100,
52 CHIP_RS100,
53 CHIP_RV200,
54 CHIP_RS200,
55 CHIP_R200,
56 CHIP_RV250,
57 CHIP_RS300,
58 CHIP_RV280,
59 CHIP_R300,
60 CHIP_R350,
61 CHIP_RV350,
62 CHIP_RV380,
63 CHIP_R420,
64 CHIP_R423,
65 CHIP_RV410,
66 CHIP_RS400,
67 CHIP_RS480,
68 CHIP_RS600,
69 CHIP_RS690,
70 CHIP_RS740,
71 CHIP_RV515,
72 CHIP_R520,
73 CHIP_RV530,
74 CHIP_RV560,
75 CHIP_RV570,
76 CHIP_R580,
77 CHIP_R600,
78 CHIP_RV610,
79 CHIP_RV630,
80 CHIP_RV670,
81 CHIP_RV620,
82 CHIP_RV635,
83 CHIP_RS780,
84 CHIP_RS880,
85 CHIP_RV770,
86 CHIP_RV730,
87 CHIP_RV710,
88 CHIP_RV740,
89 CHIP_CEDAR,
90 CHIP_REDWOOD,
91 CHIP_JUNIPER,
92 CHIP_CYPRESS,
93 CHIP_HEMLOCK,
94 CHIP_PALM,
95 CHIP_BARTS,
96 CHIP_TURKS,
97 CHIP_CAICOS,
98 CHIP_LAST,
99 };
100
101 enum chip_class {
102 R600,
103 R700,
104 EVERGREEN,
105 };
106
107 struct r600_tiling_info {
108 unsigned num_channels;
109 unsigned num_banks;
110 unsigned group_bytes;
111 };
112
113 enum radeon_family r600_get_family(struct radeon *rw);
114 enum chip_class r600_get_family_class(struct radeon *radeon);
115 struct r600_tiling_info *r600_get_tiling_info(struct radeon *radeon);
116
117 /* r600_bo.c */
118 struct r600_bo;
119 struct r600_bo *r600_bo(struct radeon *radeon,
120 unsigned size, unsigned alignment,
121 unsigned binding, unsigned usage);
122 struct r600_bo *r600_bo_handle(struct radeon *radeon,
123 unsigned handle, unsigned *array_mode);
124 void *r600_bo_map(struct radeon *radeon, struct r600_bo *bo, unsigned usage, void *ctx);
125 void r600_bo_unmap(struct radeon *radeon, struct r600_bo *bo);
126 void r600_bo_reference(struct radeon *radeon, struct r600_bo **dst,
127 struct r600_bo *src);
128 boolean r600_bo_get_winsys_handle(struct radeon *radeon, struct r600_bo *pb_bo,
129 unsigned stride, struct winsys_handle *whandle);
130 static INLINE unsigned r600_bo_offset(struct r600_bo *bo)
131 {
132 return 0;
133 }
134
135
136 /* R600/R700 STATES */
137 #define R600_GROUP_MAX 16
138 #define R600_BLOCK_MAX_BO 32
139 #define R600_BLOCK_MAX_REG 128
140
141 struct r600_pipe_reg {
142 u32 offset;
143 u32 mask;
144 u32 value;
145 struct r600_bo *bo;
146 };
147
148 struct r600_pipe_state {
149 unsigned id;
150 unsigned nregs;
151 struct r600_pipe_reg regs[R600_BLOCK_MAX_REG];
152 };
153
154 static inline void r600_pipe_state_add_reg(struct r600_pipe_state *state,
155 u32 offset, u32 value, u32 mask,
156 struct r600_bo *bo)
157 {
158 state->regs[state->nregs].offset = offset;
159 state->regs[state->nregs].value = value;
160 state->regs[state->nregs].mask = mask;
161 state->regs[state->nregs].bo = bo;
162 state->nregs++;
163 assert(state->nregs < R600_BLOCK_MAX_REG);
164 }
165
166 #define R600_BLOCK_STATUS_ENABLED (1 << 0)
167 #define R600_BLOCK_STATUS_DIRTY (1 << 1)
168
169 struct r600_block_reloc {
170 struct r600_bo *bo;
171 unsigned flush_flags;
172 unsigned flush_mask;
173 unsigned bo_pm4_index;
174 };
175
176 struct r600_block {
177 struct list_head list;
178 unsigned status;
179 unsigned start_offset;
180 unsigned pm4_ndwords;
181 unsigned pm4_flush_ndwords;
182 unsigned nbo;
183 unsigned nreg;
184 u32 *reg;
185 u32 pm4[R600_BLOCK_MAX_REG];
186 unsigned pm4_bo_index[R600_BLOCK_MAX_REG];
187 struct r600_block_reloc reloc[R600_BLOCK_MAX_BO];
188 };
189
190 struct r600_range {
191 unsigned start_offset;
192 unsigned end_offset;
193 struct r600_block **blocks;
194 };
195
196 /*
197 * relocation
198 */
199 #pragma pack(1)
200 struct r600_reloc {
201 uint32_t handle;
202 uint32_t read_domain;
203 uint32_t write_domain;
204 uint32_t flags;
205 };
206 #pragma pack()
207
208 /*
209 * query
210 */
211 struct r600_query {
212 u64 result;
213 /* The kind of query. Currently only OQ is supported. */
214 unsigned type;
215 /* How many results have been written, in dwords. It's incremented
216 * after end_query and flush. */
217 unsigned num_results;
218 /* if we've flushed the query */
219 unsigned state;
220 /* The buffer where query results are stored. */
221 struct r600_bo *buffer;
222 unsigned buffer_size;
223 /* linked list of queries */
224 struct list_head list;
225 };
226
227 #define R600_QUERY_STATE_STARTED (1 << 0)
228 #define R600_QUERY_STATE_ENDED (1 << 1)
229 #define R600_QUERY_STATE_SUSPENDED (1 << 2)
230
231
232 struct r600_context {
233 struct radeon *radeon;
234 unsigned hash_size;
235 unsigned hash_shift;
236 struct r600_range range[256];
237 unsigned nblocks;
238 struct r600_block **blocks;
239 struct list_head dirty;
240 unsigned pm4_ndwords;
241 unsigned pm4_cdwords;
242 unsigned pm4_dirty_cdwords;
243 unsigned ctx_pm4_ndwords;
244 unsigned nreloc;
245 unsigned creloc;
246 struct r600_reloc *reloc;
247 struct radeon_bo **bo;
248 u32 *pm4;
249 struct list_head query_list;
250 unsigned num_query_running;
251 struct list_head fenced_bo;
252 };
253
254 struct r600_draw {
255 u32 vgt_num_indices;
256 u32 vgt_num_instances;
257 u32 vgt_index_type;
258 u32 vgt_draw_initiator;
259 u32 indices_bo_offset;
260 struct r600_bo *indices;
261 };
262
263 int r600_context_init(struct r600_context *ctx, struct radeon *radeon);
264 void r600_context_fini(struct r600_context *ctx);
265 void r600_context_pipe_state_set(struct r600_context *ctx, struct r600_pipe_state *state);
266 void r600_context_pipe_state_set_ps_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
267 void r600_context_pipe_state_set_vs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
268 void r600_context_pipe_state_set_fs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
269 void r600_context_pipe_state_set_ps_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
270 void r600_context_pipe_state_set_vs_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
271 void r600_context_flush(struct r600_context *ctx);
272 void r600_context_dump_bof(struct r600_context *ctx, const char *file);
273 void r600_context_draw(struct r600_context *ctx, const struct r600_draw *draw);
274
275 struct r600_query *r600_context_query_create(struct r600_context *ctx, unsigned query_type);
276 void r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query);
277 boolean r600_context_query_result(struct r600_context *ctx,
278 struct r600_query *query,
279 boolean wait, void *vresult);
280 void r600_query_begin(struct r600_context *ctx, struct r600_query *query);
281 void r600_query_end(struct r600_context *ctx, struct r600_query *query);
282 void r600_context_queries_suspend(struct r600_context *ctx);
283 void r600_context_queries_resume(struct r600_context *ctx);
284
285 int evergreen_context_init(struct r600_context *ctx, struct radeon *radeon);
286 void evergreen_context_draw(struct r600_context *ctx, const struct r600_draw *draw);
287 void evergreen_context_pipe_state_set_ps_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
288 void evergreen_context_pipe_state_set_vs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
289 void evergreen_context_pipe_state_set_fs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
290 void evergreen_context_pipe_state_set_ps_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
291 void evergreen_context_pipe_state_set_vs_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
292
293 struct radeon *radeon_decref(struct radeon *radeon);
294
295 #endif