r600g: Silence uninitialized variable warning.
[mesa.git] / src / gallium / drivers / r600 / r600_asm.c
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 #include "r600_asm.h"
24 #include "r600_context.h"
25 #include "util/u_memory.h"
26 #include "r600_sq.h"
27 #include "r600_opcodes.h"
28 #include <stdio.h>
29 #include <errno.h>
30
31 static inline unsigned int r600_bc_get_num_operands(struct r600_bc_alu *alu)
32 {
33 if(alu->is_op3)
34 return 3;
35
36 switch (alu->inst) {
37 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_NOP:
38 return 0;
39 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_ADD:
40 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLE:
41 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGT:
42 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGE:
43 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLNE:
44 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL:
45 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MAX:
46 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MIN:
47 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETE:
48 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETNE:
49 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETGT:
50 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETGE:
51 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETE:
52 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETGT:
53 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETGE:
54 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETNE:
55 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_DOT4:
56 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_DOT4_IEEE:
57 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_CUBE:
58 return 2;
59
60 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOV:
61 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOVA_FLOOR:
62 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FRACT:
63 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLOOR:
64 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_TRUNC:
65 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_EXP_IEEE:
66 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_CLAMPED:
67 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_IEEE:
68 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIP_IEEE:
69 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIPSQRT_IEEE:
70 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT:
71 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SIN:
72 case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_COS:
73 return 1;
74
75 default: R600_ERR(
76 "Need instruction operand number for 0x%x.\n", alu->inst);
77 };
78
79 return 3;
80 }
81
82 int r700_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id);
83
84 static struct r600_bc_cf *r600_bc_cf(void)
85 {
86 struct r600_bc_cf *cf = CALLOC_STRUCT(r600_bc_cf);
87
88 if (cf == NULL)
89 return NULL;
90 LIST_INITHEAD(&cf->list);
91 LIST_INITHEAD(&cf->alu);
92 LIST_INITHEAD(&cf->vtx);
93 LIST_INITHEAD(&cf->tex);
94 return cf;
95 }
96
97 static struct r600_bc_alu *r600_bc_alu(void)
98 {
99 struct r600_bc_alu *alu = CALLOC_STRUCT(r600_bc_alu);
100
101 if (alu == NULL)
102 return NULL;
103 LIST_INITHEAD(&alu->list);
104 LIST_INITHEAD(&alu->bs_list);
105 return alu;
106 }
107
108 static struct r600_bc_vtx *r600_bc_vtx(void)
109 {
110 struct r600_bc_vtx *vtx = CALLOC_STRUCT(r600_bc_vtx);
111
112 if (vtx == NULL)
113 return NULL;
114 LIST_INITHEAD(&vtx->list);
115 return vtx;
116 }
117
118 static struct r600_bc_tex *r600_bc_tex(void)
119 {
120 struct r600_bc_tex *tex = CALLOC_STRUCT(r600_bc_tex);
121
122 if (tex == NULL)
123 return NULL;
124 LIST_INITHEAD(&tex->list);
125 return tex;
126 }
127
128 int r600_bc_init(struct r600_bc *bc, enum radeon_family family)
129 {
130 LIST_INITHEAD(&bc->cf);
131 bc->family = family;
132 switch (bc->family) {
133 case CHIP_R600:
134 case CHIP_RV610:
135 case CHIP_RV630:
136 case CHIP_RV670:
137 case CHIP_RV620:
138 case CHIP_RV635:
139 case CHIP_RS780:
140 case CHIP_RS880:
141 bc->chiprev = 0;
142 break;
143 case CHIP_RV770:
144 case CHIP_RV730:
145 case CHIP_RV710:
146 case CHIP_RV740:
147 bc->chiprev = 1;
148 break;
149 case CHIP_CEDAR:
150 case CHIP_REDWOOD:
151 case CHIP_JUNIPER:
152 case CHIP_CYPRESS:
153 case CHIP_HEMLOCK:
154 bc->chiprev = 2;
155 break;
156 default:
157 R600_ERR("unknown family %d\n", bc->family);
158 return -EINVAL;
159 }
160 return 0;
161 }
162
163 static int r600_bc_add_cf(struct r600_bc *bc)
164 {
165 struct r600_bc_cf *cf = r600_bc_cf();
166
167 if (cf == NULL)
168 return -ENOMEM;
169 LIST_ADDTAIL(&cf->list, &bc->cf);
170 if (bc->cf_last)
171 cf->id = bc->cf_last->id + 2;
172 bc->cf_last = cf;
173 bc->ncf++;
174 bc->ndw += 2;
175 bc->force_add_cf = 0;
176 return 0;
177 }
178
179 int r600_bc_add_output(struct r600_bc *bc, const struct r600_bc_output *output)
180 {
181 int r;
182
183 r = r600_bc_add_cf(bc);
184 if (r)
185 return r;
186 bc->cf_last->inst = output->inst;
187 memcpy(&bc->cf_last->output, output, sizeof(struct r600_bc_output));
188 return 0;
189 }
190
191 const unsigned bank_swizzle_vec[8] = {SQ_ALU_VEC_210, //000
192 SQ_ALU_VEC_120, //001
193 SQ_ALU_VEC_102, //010
194
195 SQ_ALU_VEC_201, //011
196 SQ_ALU_VEC_012, //100
197 SQ_ALU_VEC_021, //101
198
199 SQ_ALU_VEC_012, //110
200 SQ_ALU_VEC_012}; //111
201
202 const unsigned bank_swizzle_scl[8] = {SQ_ALU_SCL_210, //000
203 SQ_ALU_SCL_122, //001
204 SQ_ALU_SCL_122, //010
205
206 SQ_ALU_SCL_221, //011
207 SQ_ALU_SCL_212, //100
208 SQ_ALU_SCL_122, //101
209
210 SQ_ALU_SCL_122, //110
211 SQ_ALU_SCL_122}; //111
212
213 static int init_gpr(struct r600_bc_alu *alu)
214 {
215 int cycle, component;
216 /* set up gpr use */
217 for (cycle = 0; cycle < NUM_OF_CYCLES; cycle++)
218 for (component = 0; component < NUM_OF_COMPONENTS; component++)
219 alu->hw_gpr[cycle][component] = -1;
220 return 0;
221 }
222
223 #if 0
224 static int reserve_gpr(struct r600_bc_alu *alu, unsigned sel, unsigned chan, unsigned cycle)
225 {
226 if (alu->hw_gpr[cycle][chan] < 0)
227 alu->hw_gpr[cycle][chan] = sel;
228 else if (alu->hw_gpr[cycle][chan] != (int)sel) {
229 R600_ERR("Another scalar operation has already used GPR read port for channel\n");
230 return -1;
231 }
232 return 0;
233 }
234
235 static int cycle_for_scalar_bank_swizzle(const int swiz, const int sel, unsigned *p_cycle)
236 {
237 int table[3];
238 int ret = 0;
239 switch (swiz) {
240 case SQ_ALU_SCL_210:
241 table[0] = 2; table[1] = 1; table[2] = 0;
242 *p_cycle = table[sel];
243 break;
244 case SQ_ALU_SCL_122:
245 table[0] = 1; table[1] = 2; table[2] = 2;
246 *p_cycle = table[sel];
247 break;
248 case SQ_ALU_SCL_212:
249 table[0] = 2; table[1] = 1; table[2] = 2;
250 *p_cycle = table[sel];
251 break;
252 case SQ_ALU_SCL_221:
253 table[0] = 2; table[1] = 2; table[2] = 1;
254 *p_cycle = table[sel];
255 break;
256 break;
257 default:
258 R600_ERR("bad scalar bank swizzle value\n");
259 ret = -1;
260 break;
261 }
262 return ret;
263 }
264
265 static int cycle_for_vector_bank_swizzle(const int swiz, const int sel, unsigned *p_cycle)
266 {
267 int table[3];
268 int ret;
269
270 switch (swiz) {
271 case SQ_ALU_VEC_012:
272 table[0] = 0; table[1] = 1; table[2] = 2;
273 *p_cycle = table[sel];
274 break;
275 case SQ_ALU_VEC_021:
276 table[0] = 0; table[1] = 2; table[2] = 1;
277 *p_cycle = table[sel];
278 break;
279 case SQ_ALU_VEC_120:
280 table[0] = 1; table[1] = 2; table[2] = 0;
281 *p_cycle = table[sel];
282 break;
283 case SQ_ALU_VEC_102:
284 table[0] = 1; table[1] = 0; table[2] = 2;
285 *p_cycle = table[sel];
286 break;
287 case SQ_ALU_VEC_201:
288 table[0] = 2; table[1] = 0; table[2] = 1;
289 *p_cycle = table[sel];
290 break;
291 case SQ_ALU_VEC_210:
292 table[0] = 2; table[1] = 1; table[2] = 0;
293 *p_cycle = table[sel];
294 break;
295 default:
296 R600_ERR("bad vector bank swizzle value\n");
297 ret = -1;
298 break;
299 }
300 return ret;
301 }
302
303
304
305 static void update_chan_counter(struct r600_bc_alu *alu, int *chan_counter)
306 {
307 int num_src;
308 int i;
309 int channel_swizzle;
310
311 num_src = r600_bc_get_num_operands(alu);
312
313 for (i = 0; i < num_src; i++) {
314 channel_swizzle = alu->src[i].chan;
315 if ((alu->src[i].sel > 0 && alu->src[i].sel < 128) && channel_swizzle <= 3)
316 chan_counter[channel_swizzle]++;
317 }
318 }
319
320 /* we need something like this I think - but this is bogus */
321 int check_read_slots(struct r600_bc *bc, struct r600_bc_alu *alu_first)
322 {
323 struct r600_bc_alu *alu;
324 int chan_counter[4] = { 0 };
325
326 update_chan_counter(alu_first, chan_counter);
327
328 LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
329 update_chan_counter(alu, chan_counter);
330 }
331
332 if (chan_counter[0] > 3 ||
333 chan_counter[1] > 3 ||
334 chan_counter[2] > 3 ||
335 chan_counter[3] > 3) {
336 R600_ERR("needed to split instruction for input ran out of banks %x %d %d %d %d\n",
337 alu_first->inst, chan_counter[0], chan_counter[1], chan_counter[2], chan_counter[3]);
338 return -1;
339 }
340 return 0;
341 }
342 #endif
343
344 static int is_const(int sel)
345 {
346 if (sel > 255 && sel < 512)
347 return 1;
348 if (sel >= V_SQ_ALU_SRC_0 && sel <= V_SQ_ALU_SRC_LITERAL)
349 return 1;
350 return 0;
351 }
352
353 static int check_scalar(struct r600_bc *bc, struct r600_bc_alu *alu)
354 {
355 unsigned swizzle_key;
356
357 if (alu->bank_swizzle_force) {
358 alu->bank_swizzle = alu->bank_swizzle_force;
359 return 0;
360 }
361 swizzle_key = (is_const(alu->src[0].sel) ? 4 : 0 ) +
362 (is_const(alu->src[1].sel) ? 2 : 0 ) +
363 (is_const(alu->src[2].sel) ? 1 : 0 );
364
365 alu->bank_swizzle = bank_swizzle_scl[swizzle_key];
366 return 0;
367 }
368
369 static int check_vector(struct r600_bc *bc, struct r600_bc_alu *alu)
370 {
371 unsigned swizzle_key;
372
373 if (alu->bank_swizzle_force) {
374 alu->bank_swizzle = alu->bank_swizzle_force;
375 return 0;
376 }
377 swizzle_key = (is_const(alu->src[0].sel) ? 4 : 0 ) +
378 (is_const(alu->src[1].sel) ? 2 : 0 ) +
379 (is_const(alu->src[2].sel) ? 1 : 0 );
380
381 alu->bank_swizzle = bank_swizzle_vec[swizzle_key];
382 return 0;
383 }
384
385 static int check_and_set_bank_swizzle(struct r600_bc *bc, struct r600_bc_alu *alu_first)
386 {
387 struct r600_bc_alu *alu = NULL;
388 int num_instr = 1;
389
390 init_gpr(alu_first);
391
392 LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
393 num_instr++;
394 }
395
396 if (num_instr == 1) {
397 check_scalar(bc, alu_first);
398
399 } else {
400 /* check_read_slots(bc, bc->cf_last->curr_bs_head);*/
401 check_vector(bc, alu_first);
402 LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
403 check_vector(bc, alu);
404 }
405 }
406 return 0;
407 }
408
409 int r600_bc_add_alu_type(struct r600_bc *bc, const struct r600_bc_alu *alu, int type)
410 {
411 struct r600_bc_alu *nalu = r600_bc_alu();
412 struct r600_bc_alu *lalu;
413 int i, r;
414
415 if (nalu == NULL)
416 return -ENOMEM;
417 memcpy(nalu, alu, sizeof(struct r600_bc_alu));
418 nalu->nliteral = 0;
419
420 /* cf can contains only alu or only vtx or only tex */
421 if (bc->cf_last == NULL || bc->cf_last->inst != (type << 3) ||
422 bc->force_add_cf) {
423 /* at most 128 slots, one add alu can add 4 slots + 4 constant worst case */
424 r = r600_bc_add_cf(bc);
425 if (r) {
426 free(nalu);
427 return r;
428 }
429 bc->cf_last->inst = (type << 3);
430 }
431 if (!bc->cf_last->curr_bs_head) {
432 bc->cf_last->curr_bs_head = nalu;
433 LIST_INITHEAD(&nalu->bs_list);
434 } else {
435 LIST_ADDTAIL(&nalu->bs_list, &bc->cf_last->curr_bs_head->bs_list);
436 }
437 if (alu->last && (bc->cf_last->ndw >> 1) >= 124) {
438 bc->force_add_cf = 1;
439 }
440 /* number of gpr == the last gpr used in any alu */
441 for (i = 0; i < 3; i++) {
442 if (alu->src[i].sel >= bc->ngpr && alu->src[i].sel < 128) {
443 bc->ngpr = alu->src[i].sel + 1;
444 }
445 /* compute how many literal are needed
446 * either 2 or 4 literals
447 */
448 if (alu->src[i].sel == 253) {
449 if (((alu->src[i].chan + 2) & 0x6) > nalu->nliteral) {
450 nalu->nliteral = (alu->src[i].chan + 2) & 0x6;
451 }
452 }
453 }
454 if (!LIST_IS_EMPTY(&bc->cf_last->alu)) {
455 lalu = LIST_ENTRY(struct r600_bc_alu, bc->cf_last->alu.prev, list);
456 if (!lalu->last && lalu->nliteral > nalu->nliteral) {
457 nalu->nliteral = lalu->nliteral;
458 }
459 }
460 if (alu->dst.sel >= bc->ngpr) {
461 bc->ngpr = alu->dst.sel + 1;
462 }
463 LIST_ADDTAIL(&nalu->list, &bc->cf_last->alu);
464 /* each alu use 2 dwords */
465 bc->cf_last->ndw += 2;
466 bc->ndw += 2;
467
468 if (bc->use_mem_constant)
469 bc->cf_last->kcache0_mode = 2;
470
471 /* process cur ALU instructions for bank swizzle */
472 if (alu->last) {
473 check_and_set_bank_swizzle(bc, bc->cf_last->curr_bs_head);
474 bc->cf_last->curr_bs_head = NULL;
475 }
476 return 0;
477 }
478
479 int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu)
480 {
481 return r600_bc_add_alu_type(bc, alu, BC_INST(bc, V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU));
482 }
483
484 int r600_bc_add_literal(struct r600_bc *bc, const u32 *value)
485 {
486 struct r600_bc_alu *alu;
487
488 if (bc->cf_last == NULL) {
489 return 0;
490 }
491 if (bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_TEX) {
492 return 0;
493 }
494 /* all same on EG */
495 if (bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_JUMP ||
496 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_ELSE ||
497 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL ||
498 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK ||
499 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE ||
500 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END ||
501 bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_POP) {
502 return 0;
503 }
504 /* same on EG */
505 if (((bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3)) &&
506 (bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3))) ||
507 LIST_IS_EMPTY(&bc->cf_last->alu)) {
508 R600_ERR("last CF is not ALU (%p)\n", bc->cf_last);
509 return -EINVAL;
510 }
511 alu = LIST_ENTRY(struct r600_bc_alu, bc->cf_last->alu.prev, list);
512 if (!alu->last || !alu->nliteral || alu->literal_added) {
513 return 0;
514 }
515 memcpy(alu->value, value, 4 * 4);
516 bc->cf_last->ndw += alu->nliteral;
517 bc->ndw += alu->nliteral;
518 alu->literal_added = 1;
519 return 0;
520 }
521
522 int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx)
523 {
524 struct r600_bc_vtx *nvtx = r600_bc_vtx();
525 int r;
526
527 if (nvtx == NULL)
528 return -ENOMEM;
529 memcpy(nvtx, vtx, sizeof(struct r600_bc_vtx));
530
531 /* cf can contains only alu or only vtx or only tex */
532 if (bc->cf_last == NULL ||
533 (bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_VTX &&
534 bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC)) {
535 r = r600_bc_add_cf(bc);
536 if (r) {
537 free(nvtx);
538 return r;
539 }
540 bc->cf_last->inst = V_SQ_CF_WORD1_SQ_CF_INST_VTX;
541 }
542 LIST_ADDTAIL(&nvtx->list, &bc->cf_last->vtx);
543 /* each fetch use 4 dwords */
544 bc->cf_last->ndw += 4;
545 bc->ndw += 4;
546 return 0;
547 }
548
549 int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex)
550 {
551 struct r600_bc_tex *ntex = r600_bc_tex();
552 int r;
553
554 if (ntex == NULL)
555 return -ENOMEM;
556 memcpy(ntex, tex, sizeof(struct r600_bc_tex));
557
558 /* cf can contains only alu or only vtx or only tex */
559 if (bc->cf_last == NULL ||
560 bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_TEX) {
561 r = r600_bc_add_cf(bc);
562 if (r) {
563 free(ntex);
564 return r;
565 }
566 bc->cf_last->inst = V_SQ_CF_WORD1_SQ_CF_INST_TEX;
567 }
568 LIST_ADDTAIL(&ntex->list, &bc->cf_last->tex);
569 /* each texture fetch use 4 dwords */
570 bc->cf_last->ndw += 4;
571 bc->ndw += 4;
572 return 0;
573 }
574
575 int r600_bc_add_cfinst(struct r600_bc *bc, int inst)
576 {
577 int r;
578 r = r600_bc_add_cf(bc);
579 if (r)
580 return r;
581
582 bc->cf_last->cond = V_SQ_CF_COND_ACTIVE;
583 bc->cf_last->inst = inst;
584 return 0;
585 }
586
587 /* common to all 3 families */
588 static int r600_bc_vtx_build(struct r600_bc *bc, struct r600_bc_vtx *vtx, unsigned id)
589 {
590 bc->bytecode[id++] = S_SQ_VTX_WORD0_BUFFER_ID(vtx->buffer_id) |
591 S_SQ_VTX_WORD0_SRC_GPR(vtx->src_gpr) |
592 S_SQ_VTX_WORD0_SRC_SEL_X(vtx->src_sel_x) |
593 S_SQ_VTX_WORD0_MEGA_FETCH_COUNT(vtx->mega_fetch_count);
594 bc->bytecode[id++] = S_SQ_VTX_WORD1_DST_SEL_X(vtx->dst_sel_x) |
595 S_SQ_VTX_WORD1_DST_SEL_Y(vtx->dst_sel_y) |
596 S_SQ_VTX_WORD1_DST_SEL_Z(vtx->dst_sel_z) |
597 S_SQ_VTX_WORD1_DST_SEL_W(vtx->dst_sel_w) |
598 S_SQ_VTX_WORD1_USE_CONST_FIELDS(1) |
599 S_SQ_VTX_WORD1_GPR_DST_GPR(vtx->dst_gpr);
600 bc->bytecode[id++] = S_SQ_VTX_WORD2_MEGA_FETCH(1);
601 bc->bytecode[id++] = 0;
602 return 0;
603 }
604
605 /* common to all 3 families */
606 static int r600_bc_tex_build(struct r600_bc *bc, struct r600_bc_tex *tex, unsigned id)
607 {
608 bc->bytecode[id++] = S_SQ_TEX_WORD0_TEX_INST(tex->inst) |
609 S_SQ_TEX_WORD0_RESOURCE_ID(tex->resource_id) |
610 S_SQ_TEX_WORD0_SRC_GPR(tex->src_gpr) |
611 S_SQ_TEX_WORD0_SRC_REL(tex->src_rel);
612 bc->bytecode[id++] = S_SQ_TEX_WORD1_DST_GPR(tex->dst_gpr) |
613 S_SQ_TEX_WORD1_DST_REL(tex->dst_rel) |
614 S_SQ_TEX_WORD1_DST_SEL_X(tex->dst_sel_x) |
615 S_SQ_TEX_WORD1_DST_SEL_Y(tex->dst_sel_y) |
616 S_SQ_TEX_WORD1_DST_SEL_Z(tex->dst_sel_z) |
617 S_SQ_TEX_WORD1_DST_SEL_W(tex->dst_sel_w) |
618 S_SQ_TEX_WORD1_LOD_BIAS(tex->lod_bias) |
619 S_SQ_TEX_WORD1_COORD_TYPE_X(tex->coord_type_x) |
620 S_SQ_TEX_WORD1_COORD_TYPE_Y(tex->coord_type_y) |
621 S_SQ_TEX_WORD1_COORD_TYPE_Z(tex->coord_type_z) |
622 S_SQ_TEX_WORD1_COORD_TYPE_W(tex->coord_type_w);
623 bc->bytecode[id++] = S_SQ_TEX_WORD2_OFFSET_X(tex->offset_x) |
624 S_SQ_TEX_WORD2_OFFSET_Y(tex->offset_y) |
625 S_SQ_TEX_WORD2_OFFSET_Z(tex->offset_z) |
626 S_SQ_TEX_WORD2_SAMPLER_ID(tex->sampler_id) |
627 S_SQ_TEX_WORD2_SRC_SEL_X(tex->src_sel_x) |
628 S_SQ_TEX_WORD2_SRC_SEL_Y(tex->src_sel_y) |
629 S_SQ_TEX_WORD2_SRC_SEL_Z(tex->src_sel_z) |
630 S_SQ_TEX_WORD2_SRC_SEL_W(tex->src_sel_w);
631 bc->bytecode[id++] = 0;
632 return 0;
633 }
634
635 /* r600 only, r700/eg bits in r700_asm.c */
636 static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id)
637 {
638 unsigned i;
639
640 /* don't replace gpr by pv or ps for destination register */
641 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
642 S_SQ_ALU_WORD0_SRC0_REL(alu->src[0].rel) |
643 S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
644 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
645 S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
646 S_SQ_ALU_WORD0_SRC1_REL(alu->src[1].rel) |
647 S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
648 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
649 S_SQ_ALU_WORD0_LAST(alu->last);
650
651 if (alu->is_op3) {
652 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
653 S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) |
654 S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) |
655 S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) |
656 S_SQ_ALU_WORD1_OP3_SRC2_SEL(alu->src[2].sel) |
657 S_SQ_ALU_WORD1_OP3_SRC2_REL(alu->src[2].rel) |
658 S_SQ_ALU_WORD1_OP3_SRC2_CHAN(alu->src[2].chan) |
659 S_SQ_ALU_WORD1_OP3_SRC2_NEG(alu->src[2].neg) |
660 S_SQ_ALU_WORD1_OP3_ALU_INST(alu->inst) |
661 S_SQ_ALU_WORD1_BANK_SWIZZLE(alu->bank_swizzle);
662 } else {
663 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
664 S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) |
665 S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) |
666 S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) |
667 S_SQ_ALU_WORD1_OP2_SRC0_ABS(alu->src[0].abs) |
668 S_SQ_ALU_WORD1_OP2_SRC1_ABS(alu->src[1].abs) |
669 S_SQ_ALU_WORD1_OP2_WRITE_MASK(alu->dst.write) |
670 S_SQ_ALU_WORD1_OP2_ALU_INST(alu->inst) |
671 S_SQ_ALU_WORD1_BANK_SWIZZLE(alu->bank_swizzle) |
672 S_SQ_ALU_WORD1_OP2_UPDATE_EXECUTE_MASK(alu->predicate) |
673 S_SQ_ALU_WORD1_OP2_UPDATE_PRED(alu->predicate);
674 }
675 if (alu->last) {
676 if (alu->nliteral && !alu->literal_added) {
677 R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n", alu->inst);
678 }
679 for (i = 0; i < alu->nliteral; i++) {
680 bc->bytecode[id++] = alu->value[i];
681 }
682 }
683 return 0;
684 }
685
686 /* common for r600/r700 - eg in eg_asm.c */
687 static int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf)
688 {
689 unsigned id = cf->id;
690
691 switch (cf->inst) {
692 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
693 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
694 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) |
695 S_SQ_CF_ALU_WORD0_KCACHE_MODE0(cf->kcache0_mode);
696
697 bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(cf->inst >> 3) |
698 S_SQ_CF_ALU_WORD1_BARRIER(1) |
699 S_SQ_CF_ALU_WORD1_COUNT((cf->ndw / 2) - 1);
700 break;
701 case V_SQ_CF_WORD1_SQ_CF_INST_TEX:
702 case V_SQ_CF_WORD1_SQ_CF_INST_VTX:
703 case V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC:
704 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1);
705 bc->bytecode[id++] = S_SQ_CF_WORD1_CF_INST(cf->inst) |
706 S_SQ_CF_WORD1_BARRIER(1) |
707 S_SQ_CF_WORD1_COUNT((cf->ndw / 4) - 1);
708 break;
709 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
710 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
711 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) |
712 S_SQ_CF_ALLOC_EXPORT_WORD0_ELEM_SIZE(cf->output.elem_size) |
713 S_SQ_CF_ALLOC_EXPORT_WORD0_ARRAY_BASE(cf->output.array_base) |
714 S_SQ_CF_ALLOC_EXPORT_WORD0_TYPE(cf->output.type);
715 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_X(cf->output.swizzle_x) |
716 S_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_Y(cf->output.swizzle_y) |
717 S_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_Z(cf->output.swizzle_z) |
718 S_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_W(cf->output.swizzle_w) |
719 S_SQ_CF_ALLOC_EXPORT_WORD1_BARRIER(cf->output.barrier) |
720 S_SQ_CF_ALLOC_EXPORT_WORD1_CF_INST(cf->output.inst) |
721 S_SQ_CF_ALLOC_EXPORT_WORD1_END_OF_PROGRAM(cf->output.end_of_program);
722 break;
723 case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
724 case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
725 case V_SQ_CF_WORD1_SQ_CF_INST_POP:
726 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
727 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
728 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
729 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
730 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->cf_addr >> 1);
731 bc->bytecode[id++] = S_SQ_CF_WORD1_CF_INST(cf->inst) |
732 S_SQ_CF_WORD1_BARRIER(1) |
733 S_SQ_CF_WORD1_COND(cf->cond) |
734 S_SQ_CF_WORD1_POP_COUNT(cf->pop_count);
735
736 break;
737 default:
738 R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);
739 return -EINVAL;
740 }
741 return 0;
742 }
743
744 int r600_bc_build(struct r600_bc *bc)
745 {
746 struct r600_bc_cf *cf;
747 struct r600_bc_alu *alu;
748 struct r600_bc_vtx *vtx;
749 struct r600_bc_tex *tex;
750 unsigned addr;
751 int r;
752
753 if (bc->callstack[0].max > 0)
754 bc->nstack = ((bc->callstack[0].max + 3) >> 2) + 2;
755
756 /* first path compute addr of each CF block */
757 /* addr start after all the CF instructions */
758 addr = bc->cf_last->id + 2;
759 LIST_FOR_EACH_ENTRY(cf, &bc->cf, list) {
760 switch (cf->inst) {
761 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
762 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
763 break;
764 case V_SQ_CF_WORD1_SQ_CF_INST_TEX:
765 case V_SQ_CF_WORD1_SQ_CF_INST_VTX:
766 case V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC:
767 /* fetch node need to be 16 bytes aligned*/
768 addr += 3;
769 addr &= 0xFFFFFFFCUL;
770 break;
771 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
772 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
773 case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
774 case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
775 break;
776 case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
777 case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
778 case V_SQ_CF_WORD1_SQ_CF_INST_POP:
779 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
780 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
781 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
782 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
783 break;
784 default:
785 R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);
786 return -EINVAL;
787 }
788 cf->addr = addr;
789 addr += cf->ndw;
790 bc->ndw = cf->addr + cf->ndw;
791 }
792 free(bc->bytecode);
793 bc->bytecode = calloc(1, bc->ndw * 4);
794 if (bc->bytecode == NULL)
795 return -ENOMEM;
796 LIST_FOR_EACH_ENTRY(cf, &bc->cf, list) {
797 addr = cf->addr;
798 if (bc->chiprev == 2)
799 r = eg_bc_cf_build(bc, cf);
800 else
801 r = r600_bc_cf_build(bc, cf);
802 if (r)
803 return r;
804 switch (cf->inst) {
805 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
806 case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
807 LIST_FOR_EACH_ENTRY(alu, &cf->alu, list) {
808 switch(bc->chiprev) {
809 case 0:
810 r = r600_bc_alu_build(bc, alu, addr);
811 break;
812 case 1:
813 case 2: /* eg alu is same encoding as r700 */
814 r = r700_bc_alu_build(bc, alu, addr);
815 break;
816 default:
817 R600_ERR("unknown family %d\n", bc->family);
818 return -EINVAL;
819 }
820 if (r)
821 return r;
822 addr += 2;
823 if (alu->last) {
824 addr += alu->nliteral;
825 }
826 }
827 break;
828 case V_SQ_CF_WORD1_SQ_CF_INST_VTX:
829 case V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC:
830 LIST_FOR_EACH_ENTRY(vtx, &cf->vtx, list) {
831 r = r600_bc_vtx_build(bc, vtx, addr);
832 if (r)
833 return r;
834 addr += 4;
835 }
836 break;
837 case V_SQ_CF_WORD1_SQ_CF_INST_TEX:
838 LIST_FOR_EACH_ENTRY(tex, &cf->tex, list) {
839 r = r600_bc_tex_build(bc, tex, addr);
840 if (r)
841 return r;
842 addr += 4;
843 }
844 break;
845 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
846 case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
847 case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
848 case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
849 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
850 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
851 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
852 case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
853 case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
854 case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
855 case V_SQ_CF_WORD1_SQ_CF_INST_POP:
856 break;
857 default:
858 R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);
859 return -EINVAL;
860 }
861 }
862 return 0;
863 }