blob: ef20822a1586a03d05f149098f172fedf55b7f4b [file] [log] [blame]
Alex Deucher27849042010-09-09 11:31:13 -04001/*
2 * Copyright 2009 Advanced Micro Devices, Inc.
3 * Copyright 2009 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 */
25
Jerome Glisse3ce0a232009-09-08 10:10:24 +100026#include "drmP.h"
27#include "drm.h"
28#include "radeon_drm.h"
29#include "radeon.h"
30
31#include "r600d.h"
32#include "r600_blit_shaders.h"
Ilija Hadzic86a4d692012-02-01 11:42:38 -050033#include "radeon_blit_common.h"
Alex Deucher7dbf41d2011-05-17 05:09:43 -040034
Jerome Glisse3ce0a232009-09-08 10:10:24 +100035/* emits 21 on rv770+, 23 on r600 */
36static void
37set_render_target(struct radeon_device *rdev, int format,
38 int w, int h, u64 gpu_addr)
39{
Christian Könige32eb502011-10-23 12:56:27 +020040 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +100041 u32 cb_color_info;
42 int pitch, slice;
43
Matt Turnerd964fc52010-02-25 04:23:31 +000044 h = ALIGN(h, 8);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100045 if (h < 8)
46 h = 8;
47
Ilija Hadzic3a386122011-10-12 23:29:37 -040048 cb_color_info = CB_FORMAT(format) |
49 CB_SOURCE_FORMAT(CB_SF_EXPORT_NORM) |
50 CB_ARRAY_MODE(ARRAY_1D_TILED_THIN1);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100051 pitch = (w / 8) - 1;
52 slice = ((w * h) / 64) - 1;
53
Christian Könige32eb502011-10-23 12:56:27 +020054 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
55 radeon_ring_write(ring, (CB_COLOR0_BASE - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
56 radeon_ring_write(ring, gpu_addr >> 8);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100057
58 if (rdev->family > CHIP_R600 && rdev->family < CHIP_RV770) {
Christian Könige32eb502011-10-23 12:56:27 +020059 radeon_ring_write(ring, PACKET3(PACKET3_SURFACE_BASE_UPDATE, 0));
60 radeon_ring_write(ring, 2 << 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100061 }
62
Christian Könige32eb502011-10-23 12:56:27 +020063 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
64 radeon_ring_write(ring, (CB_COLOR0_SIZE - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
65 radeon_ring_write(ring, (pitch << 0) | (slice << 10));
Jerome Glisse3ce0a232009-09-08 10:10:24 +100066
Christian Könige32eb502011-10-23 12:56:27 +020067 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
68 radeon_ring_write(ring, (CB_COLOR0_VIEW - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
69 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100070
Christian Könige32eb502011-10-23 12:56:27 +020071 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
72 radeon_ring_write(ring, (CB_COLOR0_INFO - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
73 radeon_ring_write(ring, cb_color_info);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100074
Christian Könige32eb502011-10-23 12:56:27 +020075 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
76 radeon_ring_write(ring, (CB_COLOR0_TILE - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
77 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100078
Christian Könige32eb502011-10-23 12:56:27 +020079 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
80 radeon_ring_write(ring, (CB_COLOR0_FRAG - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
81 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100082
Christian Könige32eb502011-10-23 12:56:27 +020083 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
84 radeon_ring_write(ring, (CB_COLOR0_MASK - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
85 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +100086}
87
88/* emits 5dw */
89static void
90cp_set_surface_sync(struct radeon_device *rdev,
91 u32 sync_type, u32 size,
92 u64 mc_addr)
93{
Christian Könige32eb502011-10-23 12:56:27 +020094 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +100095 u32 cp_coher_size;
96
97 if (size == 0xffffffff)
98 cp_coher_size = 0xffffffff;
99 else
100 cp_coher_size = ((size + 255) >> 8);
101
Christian Könige32eb502011-10-23 12:56:27 +0200102 radeon_ring_write(ring, PACKET3(PACKET3_SURFACE_SYNC, 3));
103 radeon_ring_write(ring, sync_type);
104 radeon_ring_write(ring, cp_coher_size);
105 radeon_ring_write(ring, mc_addr >> 8);
106 radeon_ring_write(ring, 10); /* poll interval */
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000107}
108
109/* emits 21dw + 1 surface sync = 26dw */
110static void
111set_shaders(struct radeon_device *rdev)
112{
Christian Könige32eb502011-10-23 12:56:27 +0200113 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000114 u64 gpu_addr;
115 u32 sq_pgm_resources;
116
117 /* setup shader regs */
118 sq_pgm_resources = (1 << 0);
119
120 /* VS */
121 gpu_addr = rdev->r600_blit.shader_gpu_addr + rdev->r600_blit.vs_offset;
Christian Könige32eb502011-10-23 12:56:27 +0200122 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
123 radeon_ring_write(ring, (SQ_PGM_START_VS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
124 radeon_ring_write(ring, gpu_addr >> 8);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000125
Christian Könige32eb502011-10-23 12:56:27 +0200126 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
127 radeon_ring_write(ring, (SQ_PGM_RESOURCES_VS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
128 radeon_ring_write(ring, sq_pgm_resources);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000129
Christian Könige32eb502011-10-23 12:56:27 +0200130 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
131 radeon_ring_write(ring, (SQ_PGM_CF_OFFSET_VS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
132 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000133
134 /* PS */
135 gpu_addr = rdev->r600_blit.shader_gpu_addr + rdev->r600_blit.ps_offset;
Christian Könige32eb502011-10-23 12:56:27 +0200136 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
137 radeon_ring_write(ring, (SQ_PGM_START_PS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
138 radeon_ring_write(ring, gpu_addr >> 8);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000139
Christian Könige32eb502011-10-23 12:56:27 +0200140 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
141 radeon_ring_write(ring, (SQ_PGM_RESOURCES_PS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
142 radeon_ring_write(ring, sq_pgm_resources | (1 << 28));
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000143
Christian Könige32eb502011-10-23 12:56:27 +0200144 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
145 radeon_ring_write(ring, (SQ_PGM_EXPORTS_PS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
146 radeon_ring_write(ring, 2);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000147
Christian Könige32eb502011-10-23 12:56:27 +0200148 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 1));
149 radeon_ring_write(ring, (SQ_PGM_CF_OFFSET_PS - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
150 radeon_ring_write(ring, 0);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000151
Alex Deucher119e20d2009-09-10 02:53:50 -0400152 gpu_addr = rdev->r600_blit.shader_gpu_addr + rdev->r600_blit.vs_offset;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000153 cp_set_surface_sync(rdev, PACKET3_SH_ACTION_ENA, 512, gpu_addr);
154}
155
156/* emits 9 + 1 sync (5) = 14*/
157static void
158set_vtx_resource(struct radeon_device *rdev, u64 gpu_addr)
159{
Christian Könige32eb502011-10-23 12:56:27 +0200160 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000161 u32 sq_vtx_constant_word2;
162
Ilija Hadzic3a386122011-10-12 23:29:37 -0400163 sq_vtx_constant_word2 = SQ_VTXC_BASE_ADDR_HI(upper_32_bits(gpu_addr) & 0xff) |
164 SQ_VTXC_STRIDE(16);
Cédric Cano4eace7f2011-02-11 19:45:38 -0500165#ifdef __BIG_ENDIAN
Ilija Hadzic3a386122011-10-12 23:29:37 -0400166 sq_vtx_constant_word2 |= SQ_VTXC_ENDIAN_SWAP(SQ_ENDIAN_8IN32);
Cédric Cano4eace7f2011-02-11 19:45:38 -0500167#endif
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000168
Christian Könige32eb502011-10-23 12:56:27 +0200169 radeon_ring_write(ring, PACKET3(PACKET3_SET_RESOURCE, 7));
170 radeon_ring_write(ring, 0x460);
171 radeon_ring_write(ring, gpu_addr & 0xffffffff);
172 radeon_ring_write(ring, 48 - 1);
173 radeon_ring_write(ring, sq_vtx_constant_word2);
174 radeon_ring_write(ring, 1 << 0);
175 radeon_ring_write(ring, 0);
176 radeon_ring_write(ring, 0);
177 radeon_ring_write(ring, SQ_TEX_VTX_VALID_BUFFER << 30);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000178
179 if ((rdev->family == CHIP_RV610) ||
180 (rdev->family == CHIP_RV620) ||
181 (rdev->family == CHIP_RS780) ||
182 (rdev->family == CHIP_RS880) ||
183 (rdev->family == CHIP_RV710))
184 cp_set_surface_sync(rdev,
185 PACKET3_TC_ACTION_ENA, 48, gpu_addr);
186 else
187 cp_set_surface_sync(rdev,
188 PACKET3_VC_ACTION_ENA, 48, gpu_addr);
189}
190
191/* emits 9 */
192static void
193set_tex_resource(struct radeon_device *rdev,
194 int format, int w, int h, int pitch,
Alex Deucher9bb77032011-10-22 10:07:09 -0400195 u64 gpu_addr, u32 size)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000196{
Christian Könige32eb502011-10-23 12:56:27 +0200197 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000198 uint32_t sq_tex_resource_word0, sq_tex_resource_word1, sq_tex_resource_word4;
199
200 if (h < 1)
201 h = 1;
202
Ilija Hadzic3a386122011-10-12 23:29:37 -0400203 sq_tex_resource_word0 = S_038000_DIM(V_038000_SQ_TEX_DIM_2D) |
204 S_038000_TILE_MODE(V_038000_ARRAY_1D_TILED_THIN1);
205 sq_tex_resource_word0 |= S_038000_PITCH((pitch >> 3) - 1) |
206 S_038000_TEX_WIDTH(w - 1);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000207
Ilija Hadzic3a386122011-10-12 23:29:37 -0400208 sq_tex_resource_word1 = S_038004_DATA_FORMAT(format);
209 sq_tex_resource_word1 |= S_038004_TEX_HEIGHT(h - 1);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000210
Ilija Hadzic3a386122011-10-12 23:29:37 -0400211 sq_tex_resource_word4 = S_038010_REQUEST_SIZE(1) |
212 S_038010_DST_SEL_X(SQ_SEL_X) |
213 S_038010_DST_SEL_Y(SQ_SEL_Y) |
214 S_038010_DST_SEL_Z(SQ_SEL_Z) |
215 S_038010_DST_SEL_W(SQ_SEL_W);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000216
Alex Deucher9bb77032011-10-22 10:07:09 -0400217 cp_set_surface_sync(rdev,
218 PACKET3_TC_ACTION_ENA, size, gpu_addr);
219
Christian Könige32eb502011-10-23 12:56:27 +0200220 radeon_ring_write(ring, PACKET3(PACKET3_SET_RESOURCE, 7));
221 radeon_ring_write(ring, 0);
222 radeon_ring_write(ring, sq_tex_resource_word0);
223 radeon_ring_write(ring, sq_tex_resource_word1);
224 radeon_ring_write(ring, gpu_addr >> 8);
225 radeon_ring_write(ring, gpu_addr >> 8);
226 radeon_ring_write(ring, sq_tex_resource_word4);
227 radeon_ring_write(ring, 0);
228 radeon_ring_write(ring, SQ_TEX_VTX_VALID_TEXTURE << 30);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000229}
230
231/* emits 12 */
232static void
233set_scissors(struct radeon_device *rdev, int x1, int y1,
234 int x2, int y2)
235{
Christian Könige32eb502011-10-23 12:56:27 +0200236 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
237 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 2));
238 radeon_ring_write(ring, (PA_SC_SCREEN_SCISSOR_TL - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
239 radeon_ring_write(ring, (x1 << 0) | (y1 << 16));
240 radeon_ring_write(ring, (x2 << 0) | (y2 << 16));
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000241
Christian Könige32eb502011-10-23 12:56:27 +0200242 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 2));
243 radeon_ring_write(ring, (PA_SC_GENERIC_SCISSOR_TL - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
244 radeon_ring_write(ring, (x1 << 0) | (y1 << 16) | (1 << 31));
245 radeon_ring_write(ring, (x2 << 0) | (y2 << 16));
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000246
Christian Könige32eb502011-10-23 12:56:27 +0200247 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONTEXT_REG, 2));
248 radeon_ring_write(ring, (PA_SC_WINDOW_SCISSOR_TL - PACKET3_SET_CONTEXT_REG_OFFSET) >> 2);
249 radeon_ring_write(ring, (x1 << 0) | (y1 << 16) | (1 << 31));
250 radeon_ring_write(ring, (x2 << 0) | (y2 << 16));
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000251}
252
253/* emits 10 */
254static void
255draw_auto(struct radeon_device *rdev)
256{
Christian Könige32eb502011-10-23 12:56:27 +0200257 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
258 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONFIG_REG, 1));
259 radeon_ring_write(ring, (VGT_PRIMITIVE_TYPE - PACKET3_SET_CONFIG_REG_OFFSET) >> 2);
260 radeon_ring_write(ring, DI_PT_RECTLIST);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000261
Christian Könige32eb502011-10-23 12:56:27 +0200262 radeon_ring_write(ring, PACKET3(PACKET3_INDEX_TYPE, 0));
263 radeon_ring_write(ring,
Cédric Cano4eace7f2011-02-11 19:45:38 -0500264#ifdef __BIG_ENDIAN
265 (2 << 2) |
266#endif
267 DI_INDEX_SIZE_16_BIT);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000268
Christian Könige32eb502011-10-23 12:56:27 +0200269 radeon_ring_write(ring, PACKET3(PACKET3_NUM_INSTANCES, 0));
270 radeon_ring_write(ring, 1);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000271
Christian Könige32eb502011-10-23 12:56:27 +0200272 radeon_ring_write(ring, PACKET3(PACKET3_DRAW_INDEX_AUTO, 1));
273 radeon_ring_write(ring, 3);
274 radeon_ring_write(ring, DI_SRC_SEL_AUTO_INDEX);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000275
276}
277
278/* emits 14 */
279static void
280set_default_state(struct radeon_device *rdev)
281{
Christian Könige32eb502011-10-23 12:56:27 +0200282 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000283 u32 sq_config, sq_gpr_resource_mgmt_1, sq_gpr_resource_mgmt_2;
284 u32 sq_thread_resource_mgmt, sq_stack_resource_mgmt_1, sq_stack_resource_mgmt_2;
285 int num_ps_gprs, num_vs_gprs, num_temp_gprs, num_gs_gprs, num_es_gprs;
286 int num_ps_threads, num_vs_threads, num_gs_threads, num_es_threads;
287 int num_ps_stack_entries, num_vs_stack_entries, num_gs_stack_entries, num_es_stack_entries;
288 u64 gpu_addr;
Alex Deucher119e20d2009-09-10 02:53:50 -0400289 int dwords;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000290
291 switch (rdev->family) {
292 case CHIP_R600:
293 num_ps_gprs = 192;
294 num_vs_gprs = 56;
295 num_temp_gprs = 4;
296 num_gs_gprs = 0;
297 num_es_gprs = 0;
298 num_ps_threads = 136;
299 num_vs_threads = 48;
300 num_gs_threads = 4;
301 num_es_threads = 4;
302 num_ps_stack_entries = 128;
303 num_vs_stack_entries = 128;
304 num_gs_stack_entries = 0;
305 num_es_stack_entries = 0;
306 break;
307 case CHIP_RV630:
308 case CHIP_RV635:
309 num_ps_gprs = 84;
310 num_vs_gprs = 36;
311 num_temp_gprs = 4;
312 num_gs_gprs = 0;
313 num_es_gprs = 0;
314 num_ps_threads = 144;
315 num_vs_threads = 40;
316 num_gs_threads = 4;
317 num_es_threads = 4;
318 num_ps_stack_entries = 40;
319 num_vs_stack_entries = 40;
320 num_gs_stack_entries = 32;
321 num_es_stack_entries = 16;
322 break;
323 case CHIP_RV610:
324 case CHIP_RV620:
325 case CHIP_RS780:
326 case CHIP_RS880:
327 default:
328 num_ps_gprs = 84;
329 num_vs_gprs = 36;
330 num_temp_gprs = 4;
331 num_gs_gprs = 0;
332 num_es_gprs = 0;
333 num_ps_threads = 136;
334 num_vs_threads = 48;
335 num_gs_threads = 4;
336 num_es_threads = 4;
337 num_ps_stack_entries = 40;
338 num_vs_stack_entries = 40;
339 num_gs_stack_entries = 32;
340 num_es_stack_entries = 16;
341 break;
342 case CHIP_RV670:
343 num_ps_gprs = 144;
344 num_vs_gprs = 40;
345 num_temp_gprs = 4;
346 num_gs_gprs = 0;
347 num_es_gprs = 0;
348 num_ps_threads = 136;
349 num_vs_threads = 48;
350 num_gs_threads = 4;
351 num_es_threads = 4;
352 num_ps_stack_entries = 40;
353 num_vs_stack_entries = 40;
354 num_gs_stack_entries = 32;
355 num_es_stack_entries = 16;
356 break;
357 case CHIP_RV770:
358 num_ps_gprs = 192;
359 num_vs_gprs = 56;
360 num_temp_gprs = 4;
361 num_gs_gprs = 0;
362 num_es_gprs = 0;
363 num_ps_threads = 188;
364 num_vs_threads = 60;
365 num_gs_threads = 0;
366 num_es_threads = 0;
367 num_ps_stack_entries = 256;
368 num_vs_stack_entries = 256;
369 num_gs_stack_entries = 0;
370 num_es_stack_entries = 0;
371 break;
372 case CHIP_RV730:
373 case CHIP_RV740:
374 num_ps_gprs = 84;
375 num_vs_gprs = 36;
376 num_temp_gprs = 4;
377 num_gs_gprs = 0;
378 num_es_gprs = 0;
379 num_ps_threads = 188;
380 num_vs_threads = 60;
381 num_gs_threads = 0;
382 num_es_threads = 0;
383 num_ps_stack_entries = 128;
384 num_vs_stack_entries = 128;
385 num_gs_stack_entries = 0;
386 num_es_stack_entries = 0;
387 break;
388 case CHIP_RV710:
389 num_ps_gprs = 192;
390 num_vs_gprs = 56;
391 num_temp_gprs = 4;
392 num_gs_gprs = 0;
393 num_es_gprs = 0;
394 num_ps_threads = 144;
395 num_vs_threads = 48;
396 num_gs_threads = 0;
397 num_es_threads = 0;
398 num_ps_stack_entries = 128;
399 num_vs_stack_entries = 128;
400 num_gs_stack_entries = 0;
401 num_es_stack_entries = 0;
402 break;
403 }
404
405 if ((rdev->family == CHIP_RV610) ||
406 (rdev->family == CHIP_RV620) ||
407 (rdev->family == CHIP_RS780) ||
Alex Deucheree59f2b2009-11-05 13:11:46 -0500408 (rdev->family == CHIP_RS880) ||
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000409 (rdev->family == CHIP_RV710))
410 sq_config = 0;
411 else
412 sq_config = VC_ENABLE;
413
414 sq_config |= (DX9_CONSTS |
415 ALU_INST_PREFER_VECTOR |
416 PS_PRIO(0) |
417 VS_PRIO(1) |
418 GS_PRIO(2) |
419 ES_PRIO(3));
420
421 sq_gpr_resource_mgmt_1 = (NUM_PS_GPRS(num_ps_gprs) |
422 NUM_VS_GPRS(num_vs_gprs) |
423 NUM_CLAUSE_TEMP_GPRS(num_temp_gprs));
424 sq_gpr_resource_mgmt_2 = (NUM_GS_GPRS(num_gs_gprs) |
425 NUM_ES_GPRS(num_es_gprs));
426 sq_thread_resource_mgmt = (NUM_PS_THREADS(num_ps_threads) |
427 NUM_VS_THREADS(num_vs_threads) |
428 NUM_GS_THREADS(num_gs_threads) |
429 NUM_ES_THREADS(num_es_threads));
430 sq_stack_resource_mgmt_1 = (NUM_PS_STACK_ENTRIES(num_ps_stack_entries) |
431 NUM_VS_STACK_ENTRIES(num_vs_stack_entries));
432 sq_stack_resource_mgmt_2 = (NUM_GS_STACK_ENTRIES(num_gs_stack_entries) |
433 NUM_ES_STACK_ENTRIES(num_es_stack_entries));
434
435 /* emit an IB pointing at default state */
Matt Turnerd964fc52010-02-25 04:23:31 +0000436 dwords = ALIGN(rdev->r600_blit.state_len, 0x10);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000437 gpu_addr = rdev->r600_blit.shader_gpu_addr + rdev->r600_blit.state_offset;
Christian Könige32eb502011-10-23 12:56:27 +0200438 radeon_ring_write(ring, PACKET3(PACKET3_INDIRECT_BUFFER, 2));
439 radeon_ring_write(ring,
Cédric Cano4eace7f2011-02-11 19:45:38 -0500440#ifdef __BIG_ENDIAN
441 (2 << 0) |
442#endif
443 (gpu_addr & 0xFFFFFFFC));
Christian Könige32eb502011-10-23 12:56:27 +0200444 radeon_ring_write(ring, upper_32_bits(gpu_addr) & 0xFF);
445 radeon_ring_write(ring, dwords);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000446
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000447 /* SQ config */
Christian Könige32eb502011-10-23 12:56:27 +0200448 radeon_ring_write(ring, PACKET3(PACKET3_SET_CONFIG_REG, 6));
449 radeon_ring_write(ring, (SQ_CONFIG - PACKET3_SET_CONFIG_REG_OFFSET) >> 2);
450 radeon_ring_write(ring, sq_config);
451 radeon_ring_write(ring, sq_gpr_resource_mgmt_1);
452 radeon_ring_write(ring, sq_gpr_resource_mgmt_2);
453 radeon_ring_write(ring, sq_thread_resource_mgmt);
454 radeon_ring_write(ring, sq_stack_resource_mgmt_1);
455 radeon_ring_write(ring, sq_stack_resource_mgmt_2);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000456}
457
Ilija Hadzic52b53a02012-02-02 10:26:24 -0500458#define I2F_MAX_BITS 15
459#define I2F_MAX_INPUT ((1 << I2F_MAX_BITS) - 1)
460#define I2F_SHIFT (24 - I2F_MAX_BITS)
461
462/*
463 * Converts unsigned integer into 32-bit IEEE floating point representation.
464 * Conversion is not universal and only works for the range from 0
465 * to 2^I2F_MAX_BITS-1. Currently we only use it with inputs between
466 * 0 and 16384 (inclusive), so I2F_MAX_BITS=15 is enough. If necessary,
467 * I2F_MAX_BITS can be increased, but that will add to the loop iterations
468 * and slow us down. Conversion is done by shifting the input and counting
469 * down until the first 1 reaches bit position 23. The resulting counter
470 * and the shifted input are, respectively, the exponent and the fraction.
471 * The sign is always zero.
472 */
Andi Kleence580fa2011-10-13 16:08:47 -0700473static uint32_t i2f(uint32_t input)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000474{
475 u32 result, i, exponent, fraction;
476
Ilija Hadzic52b53a02012-02-02 10:26:24 -0500477 WARN_ON_ONCE(input > I2F_MAX_INPUT);
478
479 if ((input & I2F_MAX_INPUT) == 0)
480 result = 0;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000481 else {
Ilija Hadzic52b53a02012-02-02 10:26:24 -0500482 exponent = 126 + I2F_MAX_BITS;
483 fraction = (input & I2F_MAX_INPUT) << I2F_SHIFT;
484
485 for (i = 0; i < I2F_MAX_BITS; i++) {
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000486 if (fraction & 0x800000)
487 break;
488 else {
Ilija Hadzic52b53a02012-02-02 10:26:24 -0500489 fraction = fraction << 1;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000490 exponent = exponent - 1;
491 }
492 }
Ilija Hadzic52b53a02012-02-02 10:26:24 -0500493 result = exponent << 23 | (fraction & 0x7fffff);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000494 }
495 return result;
496}
497
498int r600_blit_init(struct radeon_device *rdev)
499{
500 u32 obj_size;
Cédric Cano4eace7f2011-02-11 19:45:38 -0500501 int i, r, dwords;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000502 void *ptr;
Alex Deucher119e20d2009-09-10 02:53:50 -0400503 u32 packet2s[16];
504 int num_packet2s = 0;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000505
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400506 rdev->r600_blit.primitives.set_render_target = set_render_target;
507 rdev->r600_blit.primitives.cp_set_surface_sync = cp_set_surface_sync;
508 rdev->r600_blit.primitives.set_shaders = set_shaders;
509 rdev->r600_blit.primitives.set_vtx_resource = set_vtx_resource;
510 rdev->r600_blit.primitives.set_tex_resource = set_tex_resource;
511 rdev->r600_blit.primitives.set_scissors = set_scissors;
512 rdev->r600_blit.primitives.draw_auto = draw_auto;
513 rdev->r600_blit.primitives.set_default_state = set_default_state;
514
515 rdev->r600_blit.ring_size_common = 40; /* shaders + def state */
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400516 rdev->r600_blit.ring_size_common += 5; /* done copy */
Jerome Glisse77b1bad2011-10-26 11:41:22 -0400517 rdev->r600_blit.ring_size_common += 16; /* fence emit for done copy */
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400518
519 rdev->r600_blit.ring_size_per_loop = 76;
520 /* set_render_target emits 2 extra dwords on rv6xx */
521 if (rdev->family > CHIP_R600 && rdev->family < CHIP_RV770)
522 rdev->r600_blit.ring_size_per_loop += 2;
523
524 rdev->r600_blit.max_dim = 8192;
525
Alex Deucherb70d6bb2010-08-06 21:36:58 -0400526 /* pin copy shader into vram if already initialized */
Jerome Glisse90aca4d2010-03-09 14:45:12 +0000527 if (rdev->r600_blit.shader_obj)
Alex Deucherb70d6bb2010-08-06 21:36:58 -0400528 goto done;
529
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000530 rdev->r600_blit.state_offset = 0;
531
532 if (rdev->family >= CHIP_RV770)
Alex Deucher119e20d2009-09-10 02:53:50 -0400533 rdev->r600_blit.state_len = r7xx_default_size;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000534 else
Alex Deucher119e20d2009-09-10 02:53:50 -0400535 rdev->r600_blit.state_len = r6xx_default_size;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000536
Alex Deucher119e20d2009-09-10 02:53:50 -0400537 dwords = rdev->r600_blit.state_len;
538 while (dwords & 0xf) {
Cédric Cano4eace7f2011-02-11 19:45:38 -0500539 packet2s[num_packet2s++] = cpu_to_le32(PACKET2(0));
Alex Deucher119e20d2009-09-10 02:53:50 -0400540 dwords++;
541 }
542
543 obj_size = dwords * 4;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000544 obj_size = ALIGN(obj_size, 256);
545
546 rdev->r600_blit.vs_offset = obj_size;
547 obj_size += r6xx_vs_size * 4;
548 obj_size = ALIGN(obj_size, 256);
549
550 rdev->r600_blit.ps_offset = obj_size;
551 obj_size += r6xx_ps_size * 4;
552 obj_size = ALIGN(obj_size, 256);
553
Daniel Vetter441921d2011-02-18 17:59:16 +0100554 r = radeon_bo_create(rdev, obj_size, PAGE_SIZE, true, RADEON_GEM_DOMAIN_VRAM,
Jerome Glisse4c788672009-11-20 14:29:23 +0100555 &rdev->r600_blit.shader_obj);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000556 if (r) {
557 DRM_ERROR("r600 failed to allocate shader\n");
558 return r;
559 }
560
Dave Airliebc1a6312009-09-15 11:07:52 +1000561 DRM_DEBUG("r6xx blit allocated bo %08x vs %08x ps %08x\n",
562 obj_size,
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000563 rdev->r600_blit.vs_offset, rdev->r600_blit.ps_offset);
564
Jerome Glisse4c788672009-11-20 14:29:23 +0100565 r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false);
566 if (unlikely(r != 0))
567 return r;
568 r = radeon_bo_kmap(rdev->r600_blit.shader_obj, &ptr);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000569 if (r) {
570 DRM_ERROR("failed to map blit object %d\n", r);
571 return r;
572 }
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000573 if (rdev->family >= CHIP_RV770)
Alex Deucher119e20d2009-09-10 02:53:50 -0400574 memcpy_toio(ptr + rdev->r600_blit.state_offset,
575 r7xx_default_state, rdev->r600_blit.state_len * 4);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000576 else
Alex Deucher119e20d2009-09-10 02:53:50 -0400577 memcpy_toio(ptr + rdev->r600_blit.state_offset,
578 r6xx_default_state, rdev->r600_blit.state_len * 4);
579 if (num_packet2s)
580 memcpy_toio(ptr + rdev->r600_blit.state_offset + (rdev->r600_blit.state_len * 4),
581 packet2s, num_packet2s * 4);
Cédric Cano4eace7f2011-02-11 19:45:38 -0500582 for (i = 0; i < r6xx_vs_size; i++)
583 *(u32 *)((unsigned long)ptr + rdev->r600_blit.vs_offset + i * 4) = cpu_to_le32(r6xx_vs[i]);
584 for (i = 0; i < r6xx_ps_size; i++)
585 *(u32 *)((unsigned long)ptr + rdev->r600_blit.ps_offset + i * 4) = cpu_to_le32(r6xx_ps[i]);
Jerome Glisse4c788672009-11-20 14:29:23 +0100586 radeon_bo_kunmap(rdev->r600_blit.shader_obj);
587 radeon_bo_unreserve(rdev->r600_blit.shader_obj);
Alex Deucherb70d6bb2010-08-06 21:36:58 -0400588
589done:
590 r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false);
591 if (unlikely(r != 0))
592 return r;
593 r = radeon_bo_pin(rdev->r600_blit.shader_obj, RADEON_GEM_DOMAIN_VRAM,
594 &rdev->r600_blit.shader_gpu_addr);
595 radeon_bo_unreserve(rdev->r600_blit.shader_obj);
596 if (r) {
597 dev_err(rdev->dev, "(%d) pin blit object failed\n", r);
598 return r;
599 }
Dave Airlie53595332011-03-14 09:47:24 +1000600 radeon_ttm_set_active_vram_size(rdev, rdev->mc.real_vram_size);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000601 return 0;
602}
603
604void r600_blit_fini(struct radeon_device *rdev)
605{
Jerome Glisse4c788672009-11-20 14:29:23 +0100606 int r;
607
Dave Airlie53595332011-03-14 09:47:24 +1000608 radeon_ttm_set_active_vram_size(rdev, rdev->mc.visible_vram_size);
Jerome Glisse30d2d9a2010-01-13 10:29:27 +0100609 if (rdev->r600_blit.shader_obj == NULL)
610 return;
611 /* If we can't reserve the bo, unref should be enough to destroy
612 * it when it becomes idle.
613 */
Jerome Glisse4c788672009-11-20 14:29:23 +0100614 r = radeon_bo_reserve(rdev->r600_blit.shader_obj, false);
Jerome Glisse30d2d9a2010-01-13 10:29:27 +0100615 if (!r) {
616 radeon_bo_unpin(rdev->r600_blit.shader_obj);
617 radeon_bo_unreserve(rdev->r600_blit.shader_obj);
Jerome Glisse4c788672009-11-20 14:29:23 +0100618 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100619 radeon_bo_unref(&rdev->r600_blit.shader_obj);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000620}
621
Ilija Hadzicb3530962011-10-12 23:29:42 -0400622static unsigned r600_blit_create_rect(unsigned num_gpu_pages,
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400623 int *width, int *height, int max_dim)
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400624{
625 unsigned max_pages;
Ilija Hadzicb3530962011-10-12 23:29:42 -0400626 unsigned pages = num_gpu_pages;
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400627 int w, h;
628
Ilija Hadzicb3530962011-10-12 23:29:42 -0400629 if (num_gpu_pages == 0) {
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400630 /* not supposed to be called with no pages, but just in case */
631 h = 0;
632 w = 0;
633 pages = 0;
634 WARN_ON(1);
635 } else {
636 int rect_order = 2;
637 h = RECT_UNIT_H;
Ilija Hadzicb3530962011-10-12 23:29:42 -0400638 while (num_gpu_pages / rect_order) {
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400639 h *= 2;
640 rect_order *= 4;
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400641 if (h >= max_dim) {
642 h = max_dim;
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400643 break;
644 }
645 }
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400646 max_pages = (max_dim * h) / (RECT_UNIT_W * RECT_UNIT_H);
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400647 if (pages > max_pages)
648 pages = max_pages;
649 w = (pages * RECT_UNIT_W * RECT_UNIT_H) / h;
650 w = (w / RECT_UNIT_W) * RECT_UNIT_W;
651 pages = (w * h) / (RECT_UNIT_W * RECT_UNIT_H);
652 BUG_ON(pages == 0);
653 }
654
655
656 DRM_DEBUG("blit_rectangle: h=%d, w=%d, pages=%d\n", h, w, pages);
657
658 /* return width and height only of the caller wants it */
659 if (height)
660 *height = h;
661 if (width)
662 *width = w;
663
664 return pages;
665}
666
667
Christian Königf2377502012-05-09 15:35:01 +0200668int r600_blit_prepare_copy(struct radeon_device *rdev, unsigned num_gpu_pages,
669 struct radeon_sa_bo **vb)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000670{
Christian Könige32eb502011-10-23 12:56:27 +0200671 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000672 int r;
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400673 int ring_size;
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400674 int num_loops = 0;
675 int dwords_per_loop = rdev->r600_blit.ring_size_per_loop;
Dave Airlie7cbb3552009-09-17 16:11:31 +1000676
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400677 /* num loops */
Ilija Hadzicb3530962011-10-12 23:29:42 -0400678 while (num_gpu_pages) {
679 num_gpu_pages -=
680 r600_blit_create_rect(num_gpu_pages, NULL, NULL,
681 rdev->r600_blit.max_dim);
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400682 num_loops++;
683 }
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000684
Jerome Glisse69e130a2011-12-21 12:13:46 -0500685 /* 48 bytes for vertex per loop */
Christian Königf2377502012-05-09 15:35:01 +0200686 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo, vb,
687 (num_loops*48)+256, 256, true);
688 if (r) {
Jerome Glisse69e130a2011-12-21 12:13:46 -0500689 return r;
Christian Königf2377502012-05-09 15:35:01 +0200690 }
Jerome Glisse69e130a2011-12-21 12:13:46 -0500691
Dave Airlie7cbb3552009-09-17 16:11:31 +1000692 /* calculate number of loops correctly */
693 ring_size = num_loops * dwords_per_loop;
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400694 ring_size += rdev->r600_blit.ring_size_common;
Christian Könige32eb502011-10-23 12:56:27 +0200695 r = radeon_ring_lock(rdev, ring, ring_size);
Christian Königf2377502012-05-09 15:35:01 +0200696 if (r) {
697 radeon_sa_bo_free(rdev, vb, NULL);
Jerome Glisseff82f052010-01-22 15:19:00 +0100698 return r;
Christian Königf2377502012-05-09 15:35:01 +0200699 }
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000700
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400701 rdev->r600_blit.primitives.set_default_state(rdev);
702 rdev->r600_blit.primitives.set_shaders(rdev);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000703 return 0;
704}
705
Christian Königf2377502012-05-09 15:35:01 +0200706void r600_blit_done_copy(struct radeon_device *rdev, struct radeon_fence *fence,
707 struct radeon_sa_bo *vb)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000708{
Christian Königf2377502012-05-09 15:35:01 +0200709 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000710 int r;
711
Christian Königf2377502012-05-09 15:35:01 +0200712 r = radeon_fence_emit(rdev, fence);
713 if (r) {
714 radeon_ring_unlock_undo(rdev, ring);
715 return;
716 }
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000717
Christian Königf2377502012-05-09 15:35:01 +0200718 radeon_ring_unlock_commit(rdev, ring);
719 radeon_sa_bo_free(rdev, &vb, fence);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000720}
721
722void r600_kms_blit_copy(struct radeon_device *rdev,
723 u64 src_gpu_addr, u64 dst_gpu_addr,
Christian Königf2377502012-05-09 15:35:01 +0200724 unsigned num_gpu_pages,
725 struct radeon_sa_bo *vb)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000726{
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000727 u64 vb_gpu_addr;
Christian Königf2377502012-05-09 15:35:01 +0200728 u32 *vb_cpu_addr;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000729
Christian Königf2377502012-05-09 15:35:01 +0200730 DRM_DEBUG("emitting copy %16llx %16llx %d\n",
731 src_gpu_addr, dst_gpu_addr, num_gpu_pages);
732 vb_cpu_addr = (u32 *)radeon_sa_bo_cpu_addr(vb);
733 vb_gpu_addr = radeon_sa_bo_gpu_addr(vb);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000734
Ilija Hadzicb3530962011-10-12 23:29:42 -0400735 while (num_gpu_pages) {
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400736 int w, h;
737 unsigned size_in_bytes;
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400738 unsigned pages_per_loop =
Ilija Hadzicb3530962011-10-12 23:29:42 -0400739 r600_blit_create_rect(num_gpu_pages, &w, &h,
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400740 rdev->r600_blit.max_dim);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000741
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400742 size_in_bytes = pages_per_loop * RADEON_GPU_PAGE_SIZE;
743 DRM_DEBUG("rectangle w=%d h=%d\n", w, h);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000744
Christian Königf2377502012-05-09 15:35:01 +0200745 vb_cpu_addr[0] = 0;
746 vb_cpu_addr[1] = 0;
747 vb_cpu_addr[2] = 0;
748 vb_cpu_addr[3] = 0;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000749
Christian Königf2377502012-05-09 15:35:01 +0200750 vb_cpu_addr[4] = 0;
751 vb_cpu_addr[5] = i2f(h);
752 vb_cpu_addr[6] = 0;
753 vb_cpu_addr[7] = i2f(h);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000754
Christian Königf2377502012-05-09 15:35:01 +0200755 vb_cpu_addr[8] = i2f(w);
756 vb_cpu_addr[9] = i2f(h);
757 vb_cpu_addr[10] = i2f(w);
758 vb_cpu_addr[11] = i2f(h);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000759
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400760 rdev->r600_blit.primitives.set_tex_resource(rdev, FMT_8_8_8_8,
Alex Deucher9bb77032011-10-22 10:07:09 -0400761 w, h, w, src_gpu_addr, size_in_bytes);
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400762 rdev->r600_blit.primitives.set_render_target(rdev, COLOR_8_8_8_8,
763 w, h, dst_gpu_addr);
764 rdev->r600_blit.primitives.set_scissors(rdev, 0, 0, w, h);
Ilija Hadzic8eec9d62011-10-12 23:29:40 -0400765 rdev->r600_blit.primitives.set_vtx_resource(rdev, vb_gpu_addr);
766 rdev->r600_blit.primitives.draw_auto(rdev);
767 rdev->r600_blit.primitives.cp_set_surface_sync(rdev,
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400768 PACKET3_CB_ACTION_ENA | PACKET3_CB0_DEST_BASE_ENA,
769 size_in_bytes, dst_gpu_addr);
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000770
Christian Königf2377502012-05-09 15:35:01 +0200771 vb_cpu_addr += 12;
772 vb_gpu_addr += 4*12;
Alex Deucher7dbf41d2011-05-17 05:09:43 -0400773 src_gpu_addr += size_in_bytes;
774 dst_gpu_addr += size_in_bytes;
Ilija Hadzicb3530962011-10-12 23:29:42 -0400775 num_gpu_pages -= pages_per_loop;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000776 }
777}