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