r600g: use burst exports in shaders
[mesa.git] / src / gallium / drivers / r600 / r600_asm.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 #ifndef R600_ASM_H
24 #define R600_ASM_H
25
26 #include "util/u_double_list.h"
27
28 struct r600_vertex_element;
29 struct r600_pipe_context;
30
31 struct r600_bc_alu_src {
32 unsigned sel;
33 unsigned chan;
34 unsigned neg;
35 unsigned abs;
36 unsigned rel;
37 u32 *value;
38 };
39
40 struct r600_bc_alu_dst {
41 unsigned sel;
42 unsigned chan;
43 unsigned clamp;
44 unsigned write;
45 unsigned rel;
46 };
47
48 struct r600_bc_alu {
49 struct list_head list;
50 struct r600_bc_alu_src src[3];
51 struct r600_bc_alu_dst dst;
52 unsigned inst;
53 unsigned last;
54 unsigned is_op3;
55 unsigned predicate;
56 unsigned bank_swizzle;
57 unsigned bank_swizzle_force;
58 unsigned omod;
59 };
60
61 struct r600_bc_tex {
62 struct list_head list;
63 unsigned inst;
64 unsigned resource_id;
65 unsigned src_gpr;
66 unsigned src_rel;
67 unsigned dst_gpr;
68 unsigned dst_rel;
69 unsigned dst_sel_x;
70 unsigned dst_sel_y;
71 unsigned dst_sel_z;
72 unsigned dst_sel_w;
73 unsigned lod_bias;
74 unsigned coord_type_x;
75 unsigned coord_type_y;
76 unsigned coord_type_z;
77 unsigned coord_type_w;
78 unsigned offset_x;
79 unsigned offset_y;
80 unsigned offset_z;
81 unsigned sampler_id;
82 unsigned src_sel_x;
83 unsigned src_sel_y;
84 unsigned src_sel_z;
85 unsigned src_sel_w;
86 };
87
88 struct r600_bc_vtx {
89 struct list_head list;
90 unsigned inst;
91 unsigned fetch_type;
92 unsigned buffer_id;
93 unsigned src_gpr;
94 unsigned src_sel_x;
95 unsigned mega_fetch_count;
96 unsigned dst_gpr;
97 unsigned dst_sel_x;
98 unsigned dst_sel_y;
99 unsigned dst_sel_z;
100 unsigned dst_sel_w;
101 unsigned use_const_fields;
102 unsigned data_format;
103 unsigned num_format_all;
104 unsigned format_comp_all;
105 unsigned srf_mode_all;
106 };
107
108 struct r600_bc_output {
109 unsigned array_base;
110 unsigned type;
111 unsigned end_of_program;
112 unsigned inst;
113 unsigned elem_size;
114 unsigned gpr;
115 unsigned swizzle_x;
116 unsigned swizzle_y;
117 unsigned swizzle_z;
118 unsigned swizzle_w;
119 unsigned burst_count;
120 unsigned barrier;
121 };
122
123 struct r600_bc_kcache {
124 unsigned bank;
125 unsigned mode;
126 unsigned addr;
127 };
128
129 struct r600_bc_cf {
130 struct list_head list;
131 unsigned inst;
132 unsigned addr;
133 unsigned ndw;
134 unsigned id;
135 unsigned cond;
136 unsigned pop_count;
137 unsigned cf_addr; /* control flow addr */
138 struct r600_bc_kcache kcache[2];
139 unsigned r6xx_uses_waterfall;
140 struct list_head alu;
141 struct list_head tex;
142 struct list_head vtx;
143 struct r600_bc_output output;
144 struct r600_bc_alu *curr_bs_head;
145 struct r600_bc_alu *prev_bs_head;
146 struct r600_bc_alu *prev2_bs_head;
147 };
148
149 #define FC_NONE 0
150 #define FC_IF 1
151 #define FC_LOOP 2
152 #define FC_REP 3
153 #define FC_PUSH_VPM 4
154 #define FC_PUSH_WQM 5
155
156 struct r600_cf_stack_entry {
157 int type;
158 struct r600_bc_cf *start;
159 struct r600_bc_cf **mid; /* used to store the else point */
160 int num_mid;
161 };
162
163 #define SQ_MAX_CALL_DEPTH 0x00000020
164 struct r600_cf_callstack {
165 unsigned fc_sp_before_entry;
166 int sub_desc_index;
167 int current;
168 int max;
169 };
170
171 struct r600_bc {
172 enum radeon_family family;
173 int chiprev; /* 0 - r600, 1 - r700, 2 - evergreen */
174 int type;
175 struct list_head cf;
176 struct r600_bc_cf *cf_last;
177 unsigned ndw;
178 unsigned ncf;
179 unsigned ngpr;
180 unsigned nstack;
181 unsigned nresource;
182 unsigned force_add_cf;
183 u32 *bytecode;
184 u32 fc_sp;
185 struct r600_cf_stack_entry fc_stack[32];
186 unsigned call_sp;
187 struct r600_cf_callstack callstack[SQ_MAX_CALL_DEPTH];
188 };
189
190 /* eg_asm.c */
191 int eg_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf);
192 void eg_cf_vtx(struct r600_vertex_element *ve, u32 *bytecode, unsigned count);
193
194 /* r600_asm.c */
195 int r600_bc_init(struct r600_bc *bc, enum radeon_family family);
196 void r600_bc_clear(struct r600_bc *bc);
197 int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu);
198 int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx);
199 int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex);
200 int r600_bc_add_output(struct r600_bc *bc, const struct r600_bc_output *output);
201 int r600_bc_build(struct r600_bc *bc);
202 int r600_bc_add_cfinst(struct r600_bc *bc, int inst);
203 int r600_bc_add_alu_type(struct r600_bc *bc, const struct r600_bc_alu *alu, int type);
204 void r600_bc_special_constants(u32 value, unsigned *sel, unsigned *neg);
205 void r600_bc_dump(struct r600_bc *bc);
206 void r600_cf_vtx(struct r600_vertex_element *ve, u32 *bytecode, unsigned count);
207 void r600_cf_vtx_tc(struct r600_vertex_element *ve, u32 *bytecode, unsigned count);
208
209 int r600_vertex_elements_build_fetch_shader(struct r600_pipe_context *rctx, struct r600_vertex_element *ve);
210
211 /* r700_asm.c */
212 int r700_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id);
213
214 #endif