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