Subversion Repositories Kolibri OS

Rev

Rev 3278 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3254 Serge 1
/*
2
 * Copyright © 2006,2008,2011 Intel Corporation
3
 * Copyright © 2007 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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 * SOFTWARE.
23
 *
24
 * Authors:
25
 *    Wang Zhenyu 
26
 *    Eric Anholt 
27
 *    Carl Worth 
28
 *    Keith Packard 
29
 *    Chris Wilson 
30
 *
31
 */
32
 
33
#ifdef HAVE_CONFIG_H
34
#include "config.h"
35
#endif
36
 
37
#include "sna.h"
38
#include "sna_reg.h"
39
#include "sna_render.h"
3278 Serge 40
#include "sna_render_inline.h"
3254 Serge 41
//#include "sna_video.h"
42
 
43
#include "brw/brw.h"
44
#include "gen6_render.h"
45
 
46
#include "gen4_vertex.h"
47
 
48
#define NO_COMPOSITE 0
49
#define NO_COMPOSITE_SPANS 0
50
#define NO_COPY 0
51
#define NO_COPY_BOXES 0
52
#define NO_FILL 0
53
#define NO_FILL_BOXES 0
54
#define NO_FILL_ONE 0
55
#define NO_FILL_CLEAR 0
56
 
57
#define NO_RING_SWITCH 1
58
#define PREFER_RENDER 0
59
 
60
#define USE_8_PIXEL_DISPATCH 1
61
#define USE_16_PIXEL_DISPATCH 1
62
#define USE_32_PIXEL_DISPATCH 0
63
 
64
#if !USE_8_PIXEL_DISPATCH && !USE_16_PIXEL_DISPATCH && !USE_32_PIXEL_DISPATCH
65
#error "Must select at least 8, 16 or 32 pixel dispatch"
66
#endif
67
 
68
#define GEN6_MAX_SIZE 8192
69
 
70
struct gt_info {
71
	int max_vs_threads;
72
	int max_gs_threads;
73
	int max_wm_threads;
74
	struct {
75
		int size;
76
		int max_vs_entries;
77
		int max_gs_entries;
78
	} urb;
79
};
80
 
81
static const struct gt_info gt1_info = {
82
	.max_vs_threads = 24,
83
	.max_gs_threads = 21,
84
	.max_wm_threads = 40,
85
	.urb = { 32, 256, 256 },
86
};
87
 
88
static const struct gt_info gt2_info = {
89
	.max_vs_threads = 60,
90
	.max_gs_threads = 60,
91
	.max_wm_threads = 80,
92
	.urb = { 64, 256, 256 },
93
};
94
 
95
static const uint32_t ps_kernel_packed[][4] = {
96
#include "exa_wm_src_affine.g6b"
97
#include "exa_wm_src_sample_argb.g6b"
98
#include "exa_wm_yuv_rgb.g6b"
99
#include "exa_wm_write.g6b"
100
};
101
 
102
static const uint32_t ps_kernel_planar[][4] = {
103
#include "exa_wm_src_affine.g6b"
104
#include "exa_wm_src_sample_planar.g6b"
105
#include "exa_wm_yuv_rgb.g6b"
106
#include "exa_wm_write.g6b"
107
};
108
 
109
#define NOKERNEL(kernel_enum, func, ns) \
110
    [GEN6_WM_KERNEL_##kernel_enum] = {#kernel_enum, func, 0, ns}
111
#define KERNEL(kernel_enum, kernel, ns) \
112
    [GEN6_WM_KERNEL_##kernel_enum] = {#kernel_enum, kernel, sizeof(kernel), ns}
113
 
114
static const struct wm_kernel_info {
115
	const char *name;
116
	const void *data;
117
	unsigned int size;
118
	unsigned int num_surfaces;
119
} wm_kernels[] = {
120
	NOKERNEL(NOMASK, brw_wm_kernel__affine, 2),
121
	NOKERNEL(NOMASK_P, brw_wm_kernel__projective, 2),
122
 
123
	NOKERNEL(MASK, brw_wm_kernel__affine_mask, 3),
124
	NOKERNEL(MASK_P, brw_wm_kernel__projective_mask, 3),
125
 
126
	NOKERNEL(MASKCA, brw_wm_kernel__affine_mask_ca, 3),
127
	NOKERNEL(MASKCA_P, brw_wm_kernel__projective_mask_ca, 3),
128
 
129
	NOKERNEL(MASKSA, brw_wm_kernel__affine_mask_sa, 3),
130
	NOKERNEL(MASKSA_P, brw_wm_kernel__projective_mask_sa, 3),
131
 
132
	NOKERNEL(OPACITY, brw_wm_kernel__affine_opacity, 2),
133
	NOKERNEL(OPACITY_P, brw_wm_kernel__projective_opacity, 2),
134
 
135
	KERNEL(VIDEO_PLANAR, ps_kernel_planar, 7),
136
	KERNEL(VIDEO_PACKED, ps_kernel_packed, 2),
137
};
138
#undef KERNEL
139
 
140
static const struct blendinfo {
141
	bool src_alpha;
142
	uint32_t src_blend;
143
	uint32_t dst_blend;
144
} gen6_blend_op[] = {
145
	/* Clear */	{0, GEN6_BLENDFACTOR_ZERO, GEN6_BLENDFACTOR_ZERO},
146
	/* Src */	{0, GEN6_BLENDFACTOR_ONE, GEN6_BLENDFACTOR_ZERO},
147
	/* Dst */	{0, GEN6_BLENDFACTOR_ZERO, GEN6_BLENDFACTOR_ONE},
148
	/* Over */	{1, GEN6_BLENDFACTOR_ONE, GEN6_BLENDFACTOR_INV_SRC_ALPHA},
149
	/* OverReverse */ {0, GEN6_BLENDFACTOR_INV_DST_ALPHA, GEN6_BLENDFACTOR_ONE},
150
	/* In */	{0, GEN6_BLENDFACTOR_DST_ALPHA, GEN6_BLENDFACTOR_ZERO},
151
	/* InReverse */	{1, GEN6_BLENDFACTOR_ZERO, GEN6_BLENDFACTOR_SRC_ALPHA},
152
	/* Out */	{0, GEN6_BLENDFACTOR_INV_DST_ALPHA, GEN6_BLENDFACTOR_ZERO},
153
	/* OutReverse */ {1, GEN6_BLENDFACTOR_ZERO, GEN6_BLENDFACTOR_INV_SRC_ALPHA},
154
	/* Atop */	{1, GEN6_BLENDFACTOR_DST_ALPHA, GEN6_BLENDFACTOR_INV_SRC_ALPHA},
155
	/* AtopReverse */ {1, GEN6_BLENDFACTOR_INV_DST_ALPHA, GEN6_BLENDFACTOR_SRC_ALPHA},
156
	/* Xor */	{1, GEN6_BLENDFACTOR_INV_DST_ALPHA, GEN6_BLENDFACTOR_INV_SRC_ALPHA},
157
	/* Add */	{0, GEN6_BLENDFACTOR_ONE, GEN6_BLENDFACTOR_ONE},
158
};
159
 
160
/**
161
 * Highest-valued BLENDFACTOR used in gen6_blend_op.
162
 *
163
 * This leaves out GEN6_BLENDFACTOR_INV_DST_COLOR,
164
 * GEN6_BLENDFACTOR_INV_CONST_{COLOR,ALPHA},
165
 * GEN6_BLENDFACTOR_INV_SRC1_{COLOR,ALPHA}
166
 */
167
#define GEN6_BLENDFACTOR_COUNT (GEN6_BLENDFACTOR_INV_DST_ALPHA + 1)
168
 
169
#define GEN6_BLEND_STATE_PADDED_SIZE	ALIGN(sizeof(struct gen6_blend_state), 64)
170
 
171
#define BLEND_OFFSET(s, d) \
172
	(((s) * GEN6_BLENDFACTOR_COUNT + (d)) * GEN6_BLEND_STATE_PADDED_SIZE)
173
 
174
#define NO_BLEND BLEND_OFFSET(GEN6_BLENDFACTOR_ONE, GEN6_BLENDFACTOR_ZERO)
175
#define CLEAR BLEND_OFFSET(GEN6_BLENDFACTOR_ZERO, GEN6_BLENDFACTOR_ZERO)
176
 
177
#define SAMPLER_OFFSET(sf, se, mf, me) \
178
	(((((sf) * EXTEND_COUNT + (se)) * FILTER_COUNT + (mf)) * EXTEND_COUNT + (me) + 2) * 2 * sizeof(struct gen6_sampler_state))
179
 
180
#define VERTEX_2s2s 0
181
 
182
#define COPY_SAMPLER 0
183
#define COPY_VERTEX VERTEX_2s2s
184
#define COPY_FLAGS(a) GEN6_SET_FLAGS(COPY_SAMPLER, (a) == GXcopy ? NO_BLEND : CLEAR, GEN6_WM_KERNEL_NOMASK, COPY_VERTEX)
185
 
186
#define FILL_SAMPLER (2 * sizeof(struct gen6_sampler_state))
187
#define FILL_VERTEX VERTEX_2s2s
188
#define FILL_FLAGS(op, format) GEN6_SET_FLAGS(FILL_SAMPLER, gen6_get_blend((op), false, (format)), GEN6_WM_KERNEL_NOMASK, FILL_VERTEX)
189
#define FILL_FLAGS_NOBLEND GEN6_SET_FLAGS(FILL_SAMPLER, NO_BLEND, GEN6_WM_KERNEL_NOMASK, FILL_VERTEX)
190
 
191
#define GEN6_SAMPLER(f) (((f) >> 16) & 0xfff0)
192
#define GEN6_BLEND(f) (((f) >> 0) & 0xfff0)
193
#define GEN6_KERNEL(f) (((f) >> 16) & 0xf)
194
#define GEN6_VERTEX(f) (((f) >> 0) & 0xf)
195
#define GEN6_SET_FLAGS(S, B, K, V)  (((S) | (K)) << 16 | ((B) | (V)))
196
 
197
#define OUT_BATCH(v) batch_emit(sna, v)
198
#define OUT_VERTEX(x,y) vertex_emit_2s(sna, x,y)
199
#define OUT_VERTEX_F(v) vertex_emit(sna, v)
200
 
201
static inline bool too_large(int width, int height)
202
{
203
	return width > GEN6_MAX_SIZE || height > GEN6_MAX_SIZE;
204
}
205
 
206
static uint32_t gen6_get_blend(int op,
207
			       bool has_component_alpha,
208
			       uint32_t dst_format)
209
{
210
	uint32_t src, dst;
211
 
212
//    src = GEN6_BLENDFACTOR_ONE; //gen6_blend_op[op].src_blend;
213
//    dst = GEN6_BLENDFACTOR_ZERO; //gen6_blend_op[op].dst_blend;
214
 
215
    src = GEN6_BLENDFACTOR_ONE; //gen6_blend_op[op].src_blend;
216
    dst = GEN6_BLENDFACTOR_INV_SRC_ALPHA; //gen6_blend_op[op].dst_blend;
217
 
218
#if 0
219
	/* If there's no dst alpha channel, adjust the blend op so that
220
	 * we'll treat it always as 1.
221
	 */
222
	if (PICT_FORMAT_A(dst_format) == 0) {
223
		if (src == GEN6_BLENDFACTOR_DST_ALPHA)
224
			src = GEN6_BLENDFACTOR_ONE;
225
		else if (src == GEN6_BLENDFACTOR_INV_DST_ALPHA)
226
			src = GEN6_BLENDFACTOR_ZERO;
227
	}
228
 
229
	/* If the source alpha is being used, then we should only be in a
230
	 * case where the source blend factor is 0, and the source blend
231
	 * value is the mask channels multiplied by the source picture's alpha.
232
	 */
233
	if (has_component_alpha && gen6_blend_op[op].src_alpha) {
234
		if (dst == GEN6_BLENDFACTOR_SRC_ALPHA)
235
			dst = GEN6_BLENDFACTOR_SRC_COLOR;
236
		else if (dst == GEN6_BLENDFACTOR_INV_SRC_ALPHA)
237
			dst = GEN6_BLENDFACTOR_INV_SRC_COLOR;
238
	}
239
 
240
	DBG(("blend op=%d, dst=%x [A=%d] => src=%d, dst=%d => offset=%x\n",
241
	     op, dst_format, PICT_FORMAT_A(dst_format),
242
	     src, dst, (int)BLEND_OFFSET(src, dst)));
243
#endif
244
 
245
	return BLEND_OFFSET(src, dst);
246
}
247
 
248
static uint32_t gen6_get_card_format(PictFormat format)
249
{
3278 Serge 250
	switch (format) {
251
	default:
252
		return -1;
253
	case PICT_a8r8g8b8:
3254 Serge 254
    return GEN6_SURFACEFORMAT_B8G8R8A8_UNORM;
3278 Serge 255
	case PICT_x8r8g8b8:
256
		return GEN6_SURFACEFORMAT_B8G8R8X8_UNORM;
257
	case PICT_a8:
258
		return GEN6_SURFACEFORMAT_A8_UNORM;
259
	};
3254 Serge 260
 
261
/*
262
	switch (format) {
263
	default:
264
		return -1;
265
	case PICT_a8r8g8b8:
266
		return GEN6_SURFACEFORMAT_B8G8R8A8_UNORM;
267
	case PICT_x8r8g8b8:
268
		return GEN6_SURFACEFORMAT_B8G8R8X8_UNORM;
269
	case PICT_a8b8g8r8:
270
		return GEN6_SURFACEFORMAT_R8G8B8A8_UNORM;
271
	case PICT_x8b8g8r8:
272
		return GEN6_SURFACEFORMAT_R8G8B8X8_UNORM;
273
	case PICT_a2r10g10b10:
274
		return GEN6_SURFACEFORMAT_B10G10R10A2_UNORM;
275
	case PICT_x2r10g10b10:
276
		return GEN6_SURFACEFORMAT_B10G10R10X2_UNORM;
277
	case PICT_r8g8b8:
278
		return GEN6_SURFACEFORMAT_R8G8B8_UNORM;
279
	case PICT_r5g6b5:
280
		return GEN6_SURFACEFORMAT_B5G6R5_UNORM;
281
	case PICT_a1r5g5b5:
282
		return GEN6_SURFACEFORMAT_B5G5R5A1_UNORM;
283
	case PICT_a8:
284
		return GEN6_SURFACEFORMAT_A8_UNORM;
285
	case PICT_a4r4g4b4:
286
		return GEN6_SURFACEFORMAT_B4G4R4A4_UNORM;
287
	}
288
 */
289
}
290
 
291
static uint32_t gen6_get_dest_format(PictFormat format)
292
{
293
    return GEN6_SURFACEFORMAT_B8G8R8A8_UNORM;
294
 
295
#if 0
296
 
297
	switch (format) {
298
	default:
299
		return -1;
300
	case PICT_a8r8g8b8:
301
	case PICT_x8r8g8b8:
302
		return GEN6_SURFACEFORMAT_B8G8R8A8_UNORM;
303
	case PICT_a8b8g8r8:
304
	case PICT_x8b8g8r8:
305
		return GEN6_SURFACEFORMAT_R8G8B8A8_UNORM;
306
	case PICT_a2r10g10b10:
307
	case PICT_x2r10g10b10:
308
		return GEN6_SURFACEFORMAT_B10G10R10A2_UNORM;
309
	case PICT_r5g6b5:
310
		return GEN6_SURFACEFORMAT_B5G6R5_UNORM;
311
	case PICT_x1r5g5b5:
312
	case PICT_a1r5g5b5:
313
		return GEN6_SURFACEFORMAT_B5G5R5A1_UNORM;
314
	case PICT_a8:
315
		return GEN6_SURFACEFORMAT_A8_UNORM;
316
	case PICT_a4r4g4b4:
317
	case PICT_x4r4g4b4:
318
		return GEN6_SURFACEFORMAT_B4G4R4A4_UNORM;
319
	}
320
#endif
321
 
322
}
323
 
324
#if 0
325
 
326
static bool gen6_check_dst_format(PictFormat format)
327
{
328
	if (gen6_get_dest_format(format) != -1)
329
		return true;
330
 
331
	DBG(("%s: unhandled format: %x\n", __FUNCTION__, (int)format));
332
	return false;
333
}
334
 
335
static bool gen6_check_format(uint32_t format)
336
{
337
	if (gen6_get_card_format(format) != -1)
338
		return true;
339
 
340
	DBG(("%s: unhandled format: %x\n", __FUNCTION__, (int)format));
341
		return false;
342
}
343
 
344
static uint32_t gen6_filter(uint32_t filter)
345
{
346
	switch (filter) {
347
	default:
348
		assert(0);
349
	case PictFilterNearest:
350
		return SAMPLER_FILTER_NEAREST;
351
	case PictFilterBilinear:
352
		return SAMPLER_FILTER_BILINEAR;
353
	}
354
}
355
 
356
static uint32_t gen6_check_filter(PicturePtr picture)
357
{
358
	switch (picture->filter) {
359
	case PictFilterNearest:
360
	case PictFilterBilinear:
361
		return true;
362
	default:
363
		return false;
364
	}
365
}
366
 
367
static uint32_t gen6_repeat(uint32_t repeat)
368
{
369
	switch (repeat) {
370
	default:
371
		assert(0);
372
	case RepeatNone:
373
		return SAMPLER_EXTEND_NONE;
374
	case RepeatNormal:
375
		return SAMPLER_EXTEND_REPEAT;
376
	case RepeatPad:
377
		return SAMPLER_EXTEND_PAD;
378
	case RepeatReflect:
379
		return SAMPLER_EXTEND_REFLECT;
380
	}
381
}
382
 
383
static bool gen6_check_repeat(PicturePtr picture)
384
{
385
	if (!picture->repeat)
386
		return true;
387
 
388
	switch (picture->repeatType) {
389
	case RepeatNone:
390
	case RepeatNormal:
391
	case RepeatPad:
392
	case RepeatReflect:
393
		return true;
394
	default:
395
		return false;
396
	}
397
}
398
#endif
399
 
400
static int
401
gen6_choose_composite_kernel(int op, bool has_mask, bool is_ca, bool is_affine)
402
{
403
	int base;
404
 
405
	if (has_mask) {
3278 Serge 406
 
3254 Serge 407
		if (is_ca) {
408
			if (gen6_blend_op[op].src_alpha)
3258 Serge 409
				base = GEN6_WM_KERNEL_MASKSA;
3254 Serge 410
			else
411
				base = GEN6_WM_KERNEL_MASKCA;
412
		} else
413
			base = GEN6_WM_KERNEL_MASK;
3278 Serge 414
 
3254 Serge 415
	} else
416
		base = GEN6_WM_KERNEL_NOMASK;
417
 
418
	return base + !is_affine;
419
}
420
 
421
static void
422
gen6_emit_urb(struct sna *sna)
423
{
424
	OUT_BATCH(GEN6_3DSTATE_URB | (3 - 2));
425
	OUT_BATCH(((1 - 1) << GEN6_3DSTATE_URB_VS_SIZE_SHIFT) |
426
		  (sna->render_state.gen6.info->urb.max_vs_entries << GEN6_3DSTATE_URB_VS_ENTRIES_SHIFT)); /* at least 24 on GEN6 */
427
	OUT_BATCH((0 << GEN6_3DSTATE_URB_GS_SIZE_SHIFT) |
428
		  (0 << GEN6_3DSTATE_URB_GS_ENTRIES_SHIFT)); /* no GS thread */
429
}
430
 
431
static void
432
gen6_emit_state_base_address(struct sna *sna)
433
{
434
	OUT_BATCH(GEN6_STATE_BASE_ADDRESS | (10 - 2));
435
	OUT_BATCH(0); /* general */
436
	OUT_BATCH(kgem_add_reloc(&sna->kgem, /* surface */
437
				 sna->kgem.nbatch,
438
				 NULL,
439
				 I915_GEM_DOMAIN_INSTRUCTION << 16,
440
				 BASE_ADDRESS_MODIFY));
441
	OUT_BATCH(kgem_add_reloc(&sna->kgem, /* instruction */
442
				 sna->kgem.nbatch,
443
				 sna->render_state.gen6.general_bo,
444
				 I915_GEM_DOMAIN_INSTRUCTION << 16,
445
				 BASE_ADDRESS_MODIFY));
446
	OUT_BATCH(0); /* indirect */
447
	OUT_BATCH(kgem_add_reloc(&sna->kgem,
448
				 sna->kgem.nbatch,
449
				 sna->render_state.gen6.general_bo,
450
				 I915_GEM_DOMAIN_INSTRUCTION << 16,
451
				 BASE_ADDRESS_MODIFY));
452
 
453
	/* upper bounds, disable */
454
	OUT_BATCH(0);
455
	OUT_BATCH(BASE_ADDRESS_MODIFY);
456
	OUT_BATCH(0);
457
	OUT_BATCH(BASE_ADDRESS_MODIFY);
458
}
459
 
460
static void
461
gen6_emit_viewports(struct sna *sna)
462
{
463
	OUT_BATCH(GEN6_3DSTATE_VIEWPORT_STATE_POINTERS |
464
		  GEN6_3DSTATE_VIEWPORT_STATE_MODIFY_CC |
465
		  (4 - 2));
466
	OUT_BATCH(0);
467
	OUT_BATCH(0);
468
	OUT_BATCH(0);
469
}
470
 
471
static void
472
gen6_emit_vs(struct sna *sna)
473
{
474
	/* disable VS constant buffer */
475
	OUT_BATCH(GEN6_3DSTATE_CONSTANT_VS | (5 - 2));
476
	OUT_BATCH(0);
477
	OUT_BATCH(0);
478
	OUT_BATCH(0);
479
	OUT_BATCH(0);
480
 
481
	OUT_BATCH(GEN6_3DSTATE_VS | (6 - 2));
482
	OUT_BATCH(0); /* no VS kernel */
483
	OUT_BATCH(0);
484
	OUT_BATCH(0);
485
	OUT_BATCH(0);
486
	OUT_BATCH(0); /* pass-through */
487
}
488
 
489
static void
490
gen6_emit_gs(struct sna *sna)
491
{
492
	/* disable GS constant buffer */
493
	OUT_BATCH(GEN6_3DSTATE_CONSTANT_GS | (5 - 2));
494
	OUT_BATCH(0);
495
	OUT_BATCH(0);
496
	OUT_BATCH(0);
497
	OUT_BATCH(0);
498
 
499
	OUT_BATCH(GEN6_3DSTATE_GS | (7 - 2));
500
	OUT_BATCH(0); /* no GS kernel */
501
	OUT_BATCH(0);
502
	OUT_BATCH(0);
503
	OUT_BATCH(0);
504
	OUT_BATCH(0);
505
	OUT_BATCH(0); /* pass-through */
506
}
507
 
508
static void
509
gen6_emit_clip(struct sna *sna)
510
{
511
	OUT_BATCH(GEN6_3DSTATE_CLIP | (4 - 2));
512
	OUT_BATCH(0);
513
	OUT_BATCH(0); /* pass-through */
514
	OUT_BATCH(0);
515
}
516
 
517
static void
518
gen6_emit_wm_constants(struct sna *sna)
519
{
520
	/* disable WM constant buffer */
521
	OUT_BATCH(GEN6_3DSTATE_CONSTANT_PS | (5 - 2));
522
	OUT_BATCH(0);
523
	OUT_BATCH(0);
524
	OUT_BATCH(0);
525
	OUT_BATCH(0);
526
}
527
 
528
static void
529
gen6_emit_null_depth_buffer(struct sna *sna)
530
{
531
	OUT_BATCH(GEN6_3DSTATE_DEPTH_BUFFER | (7 - 2));
532
	OUT_BATCH(GEN6_SURFACE_NULL << GEN6_3DSTATE_DEPTH_BUFFER_TYPE_SHIFT |
533
		  GEN6_DEPTHFORMAT_D32_FLOAT << GEN6_3DSTATE_DEPTH_BUFFER_FORMAT_SHIFT);
534
	OUT_BATCH(0);
535
	OUT_BATCH(0);
536
	OUT_BATCH(0);
537
	OUT_BATCH(0);
538
	OUT_BATCH(0);
539
 
540
	OUT_BATCH(GEN6_3DSTATE_CLEAR_PARAMS | (2 - 2));
541
	OUT_BATCH(0);
542
}
543
 
544
static void
545
gen6_emit_invariant(struct sna *sna)
546
{
547
	OUT_BATCH(GEN6_PIPELINE_SELECT | PIPELINE_SELECT_3D);
548
 
549
	OUT_BATCH(GEN6_3DSTATE_MULTISAMPLE | (3 - 2));
550
	OUT_BATCH(GEN6_3DSTATE_MULTISAMPLE_PIXEL_LOCATION_CENTER |
551
              GEN6_3DSTATE_MULTISAMPLE_NUMSAMPLES_1); /* 1 sample/pixel */
552
	OUT_BATCH(0);
553
 
554
	OUT_BATCH(GEN6_3DSTATE_SAMPLE_MASK | (2 - 2));
555
	OUT_BATCH(1);
556
 
557
	gen6_emit_urb(sna);
558
 
559
	gen6_emit_state_base_address(sna);
560
 
561
	gen6_emit_viewports(sna);
562
	gen6_emit_vs(sna);
563
	gen6_emit_gs(sna);
564
	gen6_emit_clip(sna);
565
	gen6_emit_wm_constants(sna);
566
	gen6_emit_null_depth_buffer(sna);
567
 
568
	sna->render_state.gen6.needs_invariant = false;
569
}
570
 
571
static bool
572
gen6_emit_cc(struct sna *sna, int blend)
573
{
574
	struct gen6_render_state *render = &sna->render_state.gen6;
575
 
576
	if (render->blend == blend)
577
		return blend != NO_BLEND;
578
 
579
	DBG(("%s: blend = %x\n", __FUNCTION__, blend));
580
 
581
	OUT_BATCH(GEN6_3DSTATE_CC_STATE_POINTERS | (4 - 2));
582
	OUT_BATCH((render->cc_blend + blend) | 1);
583
	if (render->blend == (unsigned)-1) {
584
		OUT_BATCH(1);
585
		OUT_BATCH(1);
586
	} else {
587
		OUT_BATCH(0);
588
		OUT_BATCH(0);
589
	}
590
 
591
	render->blend = blend;
592
	return blend != NO_BLEND;
593
}
594
 
595
static void
596
gen6_emit_sampler(struct sna *sna, uint32_t state)
597
{
598
	if (sna->render_state.gen6.samplers == state)
599
		return;
600
 
601
	sna->render_state.gen6.samplers = state;
602
 
603
	DBG(("%s: sampler = %x\n", __FUNCTION__, state));
604
 
605
	OUT_BATCH(GEN6_3DSTATE_SAMPLER_STATE_POINTERS |
606
		  GEN6_3DSTATE_SAMPLER_STATE_MODIFY_PS |
607
		  (4 - 2));
608
	OUT_BATCH(0); /* VS */
609
	OUT_BATCH(0); /* GS */
610
	OUT_BATCH(sna->render_state.gen6.wm_state + state);
611
}
612
 
613
static void
614
gen6_emit_sf(struct sna *sna, bool has_mask)
615
{
616
	int num_sf_outputs = has_mask ? 2 : 1;
617
 
618
	if (sna->render_state.gen6.num_sf_outputs == num_sf_outputs)
619
		return;
620
 
621
	DBG(("%s: num_sf_outputs=%d, read_length=%d, read_offset=%d\n",
622
	     __FUNCTION__, num_sf_outputs, 1, 0));
623
 
624
	sna->render_state.gen6.num_sf_outputs = num_sf_outputs;
625
 
626
	OUT_BATCH(GEN6_3DSTATE_SF | (20 - 2));
627
	OUT_BATCH(num_sf_outputs << GEN6_3DSTATE_SF_NUM_OUTPUTS_SHIFT |
628
		  1 << GEN6_3DSTATE_SF_URB_ENTRY_READ_LENGTH_SHIFT |
629
		  1 << GEN6_3DSTATE_SF_URB_ENTRY_READ_OFFSET_SHIFT);
630
	OUT_BATCH(0);
631
	OUT_BATCH(GEN6_3DSTATE_SF_CULL_NONE);
632
	OUT_BATCH(2 << GEN6_3DSTATE_SF_TRIFAN_PROVOKE_SHIFT); /* DW4 */
633
	OUT_BATCH(0);
634
	OUT_BATCH(0);
635
	OUT_BATCH(0);
636
	OUT_BATCH(0);
637
	OUT_BATCH(0); /* DW9 */
638
	OUT_BATCH(0);
639
	OUT_BATCH(0);
640
	OUT_BATCH(0);
641
	OUT_BATCH(0);
642
	OUT_BATCH(0); /* DW14 */
643
	OUT_BATCH(0);
644
	OUT_BATCH(0);
645
	OUT_BATCH(0);
646
	OUT_BATCH(0);
647
	OUT_BATCH(0); /* DW19 */
648
}
649
 
650
static void
651
gen6_emit_wm(struct sna *sna, unsigned int kernel, bool has_mask)
652
{
653
	const uint32_t *kernels;
654
 
655
	if (sna->render_state.gen6.kernel == kernel)
656
		return;
657
 
658
	sna->render_state.gen6.kernel = kernel;
659
	kernels = sna->render_state.gen6.wm_kernel[kernel];
660
 
661
	DBG(("%s: switching to %s, num_surfaces=%d (8-pixel? %d, 16-pixel? %d,32-pixel? %d)\n",
662
	     __FUNCTION__,
663
	     wm_kernels[kernel].name, wm_kernels[kernel].num_surfaces,
664
	    kernels[0], kernels[1], kernels[2]));
665
 
666
	OUT_BATCH(GEN6_3DSTATE_WM | (9 - 2));
667
	OUT_BATCH(kernels[0] ?: kernels[1] ?: kernels[2]);
668
	OUT_BATCH(1 << GEN6_3DSTATE_WM_SAMPLER_COUNT_SHIFT |
669
		  wm_kernels[kernel].num_surfaces << GEN6_3DSTATE_WM_BINDING_TABLE_ENTRY_COUNT_SHIFT);
670
	OUT_BATCH(0); /* scratch space */
671
	OUT_BATCH((kernels[0] ? 4 : kernels[1] ? 6 : 8) << GEN6_3DSTATE_WM_DISPATCH_0_START_GRF_SHIFT |
672
		  8 << GEN6_3DSTATE_WM_DISPATCH_1_START_GRF_SHIFT |
673
		  6 << GEN6_3DSTATE_WM_DISPATCH_2_START_GRF_SHIFT);
674
	OUT_BATCH((sna->render_state.gen6.info->max_wm_threads - 1) << GEN6_3DSTATE_WM_MAX_THREADS_SHIFT |
675
		  (kernels[0] ? GEN6_3DSTATE_WM_8_DISPATCH_ENABLE : 0) |
676
		  (kernels[1] ? GEN6_3DSTATE_WM_16_DISPATCH_ENABLE : 0) |
677
		  (kernels[2] ? GEN6_3DSTATE_WM_32_DISPATCH_ENABLE : 0) |
678
		  GEN6_3DSTATE_WM_DISPATCH_ENABLE);
679
	OUT_BATCH((1 + has_mask) << GEN6_3DSTATE_WM_NUM_SF_OUTPUTS_SHIFT |
680
		  GEN6_3DSTATE_WM_PERSPECTIVE_PIXEL_BARYCENTRIC);
681
	OUT_BATCH(kernels[2]);
682
	OUT_BATCH(kernels[1]);
683
}
684
 
685
static bool
686
gen6_emit_binding_table(struct sna *sna, uint16_t offset)
687
{
688
	if (sna->render_state.gen6.surface_table == offset)
689
		return false;
690
 
691
	/* Binding table pointers */
692
	OUT_BATCH(GEN6_3DSTATE_BINDING_TABLE_POINTERS |
693
		  GEN6_3DSTATE_BINDING_TABLE_MODIFY_PS |
694
		  (4 - 2));
695
	OUT_BATCH(0);		/* vs */
696
	OUT_BATCH(0);		/* gs */
697
	/* Only the PS uses the binding table */
698
	OUT_BATCH(offset*4);
699
 
700
	sna->render_state.gen6.surface_table = offset;
701
	return true;
702
}
703
 
704
static bool
705
gen6_emit_drawing_rectangle(struct sna *sna,
706
			    const struct sna_composite_op *op)
707
{
708
	uint32_t limit = (op->dst.height - 1) << 16 | (op->dst.width - 1);
709
	uint32_t offset = (uint16_t)op->dst.y << 16 | (uint16_t)op->dst.x;
710
 
711
	assert(!too_large(op->dst.x, op->dst.y));
712
	assert(!too_large(op->dst.width, op->dst.height));
713
 
714
	if (sna->render_state.gen6.drawrect_limit  == limit &&
715
	    sna->render_state.gen6.drawrect_offset == offset)
716
		return false;
717
 
718
	/* [DevSNB-C+{W/A}] Before any depth stall flush (including those
719
	 * produced by non-pipelined state commands), software needs to first
720
	 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
721
	 * 0.
722
	 *
723
	 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
724
	 * BEFORE the pipe-control with a post-sync op and no write-cache
725
	 * flushes.
726
	 */
727
	if (!sna->render_state.gen6.first_state_packet) {
728
	OUT_BATCH(GEN6_PIPE_CONTROL | (4 - 2));
729
	OUT_BATCH(GEN6_PIPE_CONTROL_CS_STALL |
730
		  GEN6_PIPE_CONTROL_STALL_AT_SCOREBOARD);
731
	OUT_BATCH(0);
732
	OUT_BATCH(0);
733
	}
734
 
735
	OUT_BATCH(GEN6_PIPE_CONTROL | (4 - 2));
736
	OUT_BATCH(GEN6_PIPE_CONTROL_WRITE_TIME);
737
	OUT_BATCH(kgem_add_reloc(&sna->kgem, sna->kgem.nbatch,
738
				 sna->render_state.gen6.general_bo,
739
				 I915_GEM_DOMAIN_INSTRUCTION << 16 |
740
				 I915_GEM_DOMAIN_INSTRUCTION,
741
				 64));
742
	OUT_BATCH(0);
743
 
744
	OUT_BATCH(GEN6_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
745
	OUT_BATCH(0);
746
	OUT_BATCH(limit);
747
	OUT_BATCH(offset);
748
 
749
	sna->render_state.gen6.drawrect_offset = offset;
750
	sna->render_state.gen6.drawrect_limit = limit;
751
	return true;
752
}
753
 
754
static void
755
gen6_emit_vertex_elements(struct sna *sna,
756
			  const struct sna_composite_op *op)
757
{
758
	/*
759
	 * vertex data in vertex buffer
760
	 *    position: (x, y)
761
	 *    texture coordinate 0: (u0, v0) if (is_affine is true) else (u0, v0, w0)
762
	 *    texture coordinate 1 if (has_mask is true): same as above
763
	 */
764
	struct gen6_render_state *render = &sna->render_state.gen6;
765
	uint32_t src_format, dw;
766
	int id = GEN6_VERTEX(op->u.gen6.flags);
767
	bool has_mask;
768
 
769
	DBG(("%s: setup id=%d\n", __FUNCTION__, id));
770
 
771
	if (render->ve_id == id)
772
		return;
773
	render->ve_id = id;
774
 
775
	/* The VUE layout
776
	 *    dword 0-3: pad (0.0, 0.0, 0.0. 0.0)
777
	 *    dword 4-7: position (x, y, 1.0, 1.0),
778
	 *    dword 8-11: texture coordinate 0 (u0, v0, w0, 1.0)
779
	 *    dword 12-15: texture coordinate 1 (u1, v1, w1, 1.0)
780
	 *
781
	 * dword 4-15 are fetched from vertex buffer
782
	 */
783
	has_mask = (id >> 2) != 0;
784
	OUT_BATCH(GEN6_3DSTATE_VERTEX_ELEMENTS |
785
		((2 * (3 + has_mask)) + 1 - 2));
786
 
787
	OUT_BATCH(id << VE0_VERTEX_BUFFER_INDEX_SHIFT | VE0_VALID |
788
		  GEN6_SURFACEFORMAT_R32G32B32A32_FLOAT << VE0_FORMAT_SHIFT |
789
 
790
	OUT_BATCH(GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_0_SHIFT |
791
		  GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_1_SHIFT |
792
		  GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT |
793
		  GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_3_SHIFT);
794
 
795
	/* x,y */
796
	OUT_BATCH(id << VE0_VERTEX_BUFFER_INDEX_SHIFT | VE0_VALID |
797
		  GEN6_SURFACEFORMAT_R16G16_SSCALED << VE0_FORMAT_SHIFT |
798
 
799
	OUT_BATCH(GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT |
800
		  GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT |
801
		  GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT |
802
		  GEN6_VFCOMPONENT_STORE_1_FLT << VE1_VFCOMPONENT_3_SHIFT);
803
 
804
	/* u0, v0, w0 */
805
	DBG(("%s: first channel %d floats, offset=4b\n", __FUNCTION__, id & 3));
806
	dw = GEN6_VFCOMPONENT_STORE_1_FLT << VE1_VFCOMPONENT_3_SHIFT;
807
	switch (id & 3) {
808
	default:
809
		assert(0);
810
	case 0:
811
		src_format = GEN6_SURFACEFORMAT_R16G16_SSCALED;
812
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
813
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT;
814
		dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT;
815
		break;
816
	case 1:
817
		src_format = GEN6_SURFACEFORMAT_R32_FLOAT;
818
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
819
		dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_1_SHIFT;
820
		dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT;
821
		break;
822
	case 2:
823
		src_format = GEN6_SURFACEFORMAT_R32G32_FLOAT;
824
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
825
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT;
826
		dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT;
827
		break;
828
	case 3:
829
		src_format = GEN6_SURFACEFORMAT_R32G32B32_FLOAT;
830
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
831
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT;
832
		dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_2_SHIFT;
833
		break;
834
	}
835
	OUT_BATCH(id << VE0_VERTEX_BUFFER_INDEX_SHIFT | VE0_VALID |
836
		  src_format << VE0_FORMAT_SHIFT |
837
		  4 << VE0_OFFSET_SHIFT);
838
	OUT_BATCH(dw);
839
 
840
	/* u1, v1, w1 */
841
	if (has_mask) {
842
		unsigned offset = 4 + ((id & 3) ?: 1) * sizeof(float);
843
		DBG(("%s: second channel %d floats, offset=%db\n", __FUNCTION__, id >> 2, offset));
844
		dw = GEN6_VFCOMPONENT_STORE_1_FLT << VE1_VFCOMPONENT_3_SHIFT;
845
		switch (id >> 2) {
846
		case 1:
847
			src_format = GEN6_SURFACEFORMAT_R32_FLOAT;
848
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
849
			dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_1_SHIFT;
850
			dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT;
851
			break;
852
		default:
853
			assert(0);
854
		case 2:
855
			src_format = GEN6_SURFACEFORMAT_R32G32_FLOAT;
856
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
857
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT;
858
			dw |= GEN6_VFCOMPONENT_STORE_0 << VE1_VFCOMPONENT_2_SHIFT;
859
			break;
860
		case 3:
861
			src_format = GEN6_SURFACEFORMAT_R32G32B32_FLOAT;
862
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_0_SHIFT;
863
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_1_SHIFT;
864
			dw |= GEN6_VFCOMPONENT_STORE_SRC << VE1_VFCOMPONENT_2_SHIFT;
865
			break;
866
		}
867
		OUT_BATCH(id << VE0_VERTEX_BUFFER_INDEX_SHIFT | VE0_VALID |
868
			  src_format << VE0_FORMAT_SHIFT |
869
			  offset << VE0_OFFSET_SHIFT);
870
		OUT_BATCH(dw);
871
	}
872
}
873
 
874
static void
875
gen6_emit_flush(struct sna *sna)
876
{
877
	OUT_BATCH(GEN6_PIPE_CONTROL | (4 - 2));
878
	OUT_BATCH(GEN6_PIPE_CONTROL_WC_FLUSH |
879
		  GEN6_PIPE_CONTROL_TC_FLUSH |
880
		  GEN6_PIPE_CONTROL_CS_STALL);
881
	OUT_BATCH(0);
882
	OUT_BATCH(0);
883
}
884
 
885
static void
886
gen6_emit_state(struct sna *sna,
887
		const struct sna_composite_op *op,
888
		uint16_t wm_binding_table)
889
{
890
	bool need_stall = wm_binding_table & 1;
891
 
892
	if (gen6_emit_cc(sna, GEN6_BLEND(op->u.gen6.flags)))
893
		need_stall = false;
894
	gen6_emit_sampler(sna, GEN6_SAMPLER(op->u.gen6.flags));
895
	gen6_emit_sf(sna, GEN6_VERTEX(op->u.gen6.flags) >> 2);
896
	gen6_emit_wm(sna, GEN6_KERNEL(op->u.gen6.flags), GEN6_VERTEX(op->u.gen6.flags) >> 2);
897
	gen6_emit_vertex_elements(sna, op);
898
 
899
	need_stall |= gen6_emit_binding_table(sna, wm_binding_table & ~1);
900
	if (gen6_emit_drawing_rectangle(sna, op))
901
		need_stall = false;
902
	if (kgem_bo_is_dirty(op->src.bo) || kgem_bo_is_dirty(op->mask.bo)) {
903
        gen6_emit_flush(sna);
904
        kgem_clear_dirty(&sna->kgem);
905
		if (op->dst.bo->exec)
906
		kgem_bo_mark_dirty(op->dst.bo);
907
		need_stall = false;
908
	}
909
	if (need_stall) {
910
		OUT_BATCH(GEN6_PIPE_CONTROL | (4 - 2));
911
		OUT_BATCH(GEN6_PIPE_CONTROL_CS_STALL |
912
			  GEN6_PIPE_CONTROL_STALL_AT_SCOREBOARD);
913
		OUT_BATCH(0);
914
		OUT_BATCH(0);
915
	}
916
	sna->render_state.gen6.first_state_packet = false;
917
}
918
 
919
static bool gen6_magic_ca_pass(struct sna *sna,
920
			       const struct sna_composite_op *op)
921
{
922
	struct gen6_render_state *state = &sna->render_state.gen6;
923
 
924
	if (!op->need_magic_ca_pass)
925
		return false;
926
 
927
	DBG(("%s: CA fixup (%d -> %d)\n", __FUNCTION__,
928
	     sna->render.vertex_start, sna->render.vertex_index));
929
 
930
	gen6_emit_flush(sna);
931
 
932
	gen6_emit_cc(sna, gen6_get_blend(PictOpAdd, true, op->dst.format));
933
	gen6_emit_wm(sna,
934
		     gen6_choose_composite_kernel(PictOpAdd,
935
						  true, true,
936
						  op->is_affine),
937
		     true);
938
 
939
	OUT_BATCH(GEN6_3DPRIMITIVE |
940
		  GEN6_3DPRIMITIVE_VERTEX_SEQUENTIAL |
941
		  _3DPRIM_RECTLIST << GEN6_3DPRIMITIVE_TOPOLOGY_SHIFT |
942
 
943
		  4);
944
	OUT_BATCH(sna->render.vertex_index - sna->render.vertex_start);
945
	OUT_BATCH(sna->render.vertex_start);
946
	OUT_BATCH(1);	/* single instance */
947
	OUT_BATCH(0);	/* start instance location */
948
	OUT_BATCH(0);	/* index buffer offset, ignored */
949
 
950
	state->last_primitive = sna->kgem.nbatch;
951
	return true;
952
}
953
 
954
typedef struct gen6_surface_state_padded {
955
	struct gen6_surface_state state;
956
	char pad[32 - sizeof(struct gen6_surface_state)];
957
} gen6_surface_state_padded;
958
 
959
static void null_create(struct sna_static_stream *stream)
960
{
961
	/* A bunch of zeros useful for legacy border color and depth-stencil */
962
	sna_static_stream_map(stream, 64, 64);
963
}
964
 
965
static void scratch_create(struct sna_static_stream *stream)
966
{
967
	/* 64 bytes of scratch space for random writes, such as
968
	 * the pipe-control w/a.
969
	 */
970
	sna_static_stream_map(stream, 64, 64);
971
}
972
 
973
static void
974
sampler_state_init(struct gen6_sampler_state *sampler_state,
975
		   sampler_filter_t filter,
976
		   sampler_extend_t extend)
977
{
978
	sampler_state->ss0.lod_preclamp = 1;	/* GL mode */
979
 
980
	/* We use the legacy mode to get the semantics specified by
981
	 * the Render extension. */
982
	sampler_state->ss0.border_color_mode = GEN6_BORDER_COLOR_MODE_LEGACY;
983
 
984
	switch (filter) {
985
	default:
986
	case SAMPLER_FILTER_NEAREST:
987
		sampler_state->ss0.min_filter = GEN6_MAPFILTER_NEAREST;
988
		sampler_state->ss0.mag_filter = GEN6_MAPFILTER_NEAREST;
989
		break;
990
	case SAMPLER_FILTER_BILINEAR:
991
		sampler_state->ss0.min_filter = GEN6_MAPFILTER_LINEAR;
992
		sampler_state->ss0.mag_filter = GEN6_MAPFILTER_LINEAR;
993
		break;
994
	}
995
 
996
	switch (extend) {
997
	default:
998
	case SAMPLER_EXTEND_NONE:
999
		sampler_state->ss1.r_wrap_mode = GEN6_TEXCOORDMODE_CLAMP_BORDER;
1000
		sampler_state->ss1.s_wrap_mode = GEN6_TEXCOORDMODE_CLAMP_BORDER;
1001
		sampler_state->ss1.t_wrap_mode = GEN6_TEXCOORDMODE_CLAMP_BORDER;
1002
		break;
1003
	case SAMPLER_EXTEND_REPEAT:
1004
		sampler_state->ss1.r_wrap_mode = GEN6_TEXCOORDMODE_WRAP;
1005
		sampler_state->ss1.s_wrap_mode = GEN6_TEXCOORDMODE_WRAP;
1006
		sampler_state->ss1.t_wrap_mode = GEN6_TEXCOORDMODE_WRAP;
1007
		break;
1008
	case SAMPLER_EXTEND_PAD:
1009
		sampler_state->ss1.r_wrap_mode = GEN6_TEXCOORDMODE_CLAMP;
1010
		sampler_state->ss1.s_wrap_mode = GEN6_TEXCOORDMODE_CLAMP;
1011
		sampler_state->ss1.t_wrap_mode = GEN6_TEXCOORDMODE_CLAMP;
1012
		break;
1013
	case SAMPLER_EXTEND_REFLECT:
1014
		sampler_state->ss1.r_wrap_mode = GEN6_TEXCOORDMODE_MIRROR;
1015
		sampler_state->ss1.s_wrap_mode = GEN6_TEXCOORDMODE_MIRROR;
1016
		sampler_state->ss1.t_wrap_mode = GEN6_TEXCOORDMODE_MIRROR;
1017
		break;
1018
	}
1019
}
1020
 
1021
static void
1022
sampler_copy_init(struct gen6_sampler_state *ss)
1023
{
1024
	sampler_state_init(ss, SAMPLER_FILTER_NEAREST, SAMPLER_EXTEND_NONE);
1025
	ss->ss3.non_normalized_coord = 1;
1026
 
1027
	sampler_state_init(ss+1, SAMPLER_FILTER_NEAREST, SAMPLER_EXTEND_NONE);
1028
}
1029
 
1030
static void
1031
sampler_fill_init(struct gen6_sampler_state *ss)
1032
{
1033
	sampler_state_init(ss, SAMPLER_FILTER_NEAREST, SAMPLER_EXTEND_REPEAT);
1034
	ss->ss3.non_normalized_coord = 1;
1035
 
1036
	sampler_state_init(ss+1, SAMPLER_FILTER_NEAREST, SAMPLER_EXTEND_NONE);
1037
}
1038
 
1039
static uint32_t
1040
gen6_tiling_bits(uint32_t tiling)
1041
{
1042
    return 0;
1043
/*
1044
	switch (tiling) {
1045
	default: assert(0);
1046
	case I915_TILING_NONE: return 0;
1047
	case I915_TILING_X: return GEN6_SURFACE_TILED;
1048
	case I915_TILING_Y: return GEN6_SURFACE_TILED | GEN6_SURFACE_TILED_Y;
1049
	}
1050
*/
1051
}
1052
 
1053
/**
1054
 * Sets up the common fields for a surface state buffer for the given
1055
 * picture in the given surface state buffer.
1056
 */
1057
static int
1058
gen6_bind_bo(struct sna *sna,
1059
         struct kgem_bo *bo,
1060
	     uint32_t width,
1061
	     uint32_t height,
1062
	     uint32_t format,
1063
	     bool is_dst)
1064
{
1065
	uint32_t *ss;
1066
	uint32_t domains;
1067
	uint16_t offset;
1068
	uint32_t is_scanout = is_dst && bo->scanout;
1069
 
1070
	/* After the first bind, we manage the cache domains within the batch */
1071
	offset = kgem_bo_get_binding(bo, format | is_scanout << 31);
1072
	if (offset) {
1073
		DBG(("[%x]  bo(handle=%d), format=%d, reuse %s binding\n",
1074
		     offset, bo->handle, format,
1075
		     is_dst ? "render" : "sampler"));
1076
		if (is_dst)
1077
			kgem_bo_mark_dirty(bo);
1078
		return offset * sizeof(uint32_t);
1079
	}
1080
 
1081
	offset = sna->kgem.surface -=
1082
		sizeof(struct gen6_surface_state_padded) / sizeof(uint32_t);
1083
	ss = sna->kgem.batch + offset;
1084
	ss[0] = (GEN6_SURFACE_2D << GEN6_SURFACE_TYPE_SHIFT |
1085
		 GEN6_SURFACE_BLEND_ENABLED |
1086
		 format << GEN6_SURFACE_FORMAT_SHIFT);
1087
	if (is_dst)
1088
		domains = I915_GEM_DOMAIN_RENDER << 16 |I915_GEM_DOMAIN_RENDER;
1089
	else
1090
		domains = I915_GEM_DOMAIN_SAMPLER << 16;
1091
	ss[1] = kgem_add_reloc(&sna->kgem, offset + 1, bo, domains, 0);
1092
	ss[2] = ((width - 1)  << GEN6_SURFACE_WIDTH_SHIFT |
1093
		 (height - 1) << GEN6_SURFACE_HEIGHT_SHIFT);
1094
	assert(bo->pitch <= (1 << 18));
1095
	ss[3] = (gen6_tiling_bits(bo->tiling) |
1096
		 (bo->pitch - 1) << GEN6_SURFACE_PITCH_SHIFT);
1097
	ss[4] = 0;
1098
	ss[5] = is_scanout ? 0 : 3 << 16;
1099
 
1100
	kgem_bo_set_binding(bo, format | is_scanout << 31, offset);
1101
 
1102
	DBG(("[%x] bind bo(handle=%d, addr=%d), format=%d, width=%d, height=%d, pitch=%d, tiling=%d -> %s\n",
1103
	     offset, bo->handle, ss[1],
1104
	     format, width, height, bo->pitch, bo->tiling,
1105
	     domains & 0xffff ? "render" : "sampler"));
1106
 
1107
	return offset * sizeof(uint32_t);
1108
}
1109
 
1110
static void gen6_emit_vertex_buffer(struct sna *sna,
1111
				    const struct sna_composite_op *op)
1112
{
1113
	int id = GEN6_VERTEX(op->u.gen6.flags);
1114
 
1115
	OUT_BATCH(GEN6_3DSTATE_VERTEX_BUFFERS | 3);
1116
	OUT_BATCH(id << VB0_BUFFER_INDEX_SHIFT | VB0_VERTEXDATA |
1117
		  4*op->floats_per_vertex << VB0_BUFFER_PITCH_SHIFT);
1118
	sna->render.vertex_reloc[sna->render.nvertex_reloc++] = sna->kgem.nbatch;
1119
	OUT_BATCH(0);
1120
	OUT_BATCH(~0); /* max address: disabled */
1121
	OUT_BATCH(0);
1122
 
1123
	sna->render.vb_id |= 1 << id;
1124
}
1125
 
1126
static void gen6_emit_primitive(struct sna *sna)
1127
{
1128
	if (sna->kgem.nbatch == sna->render_state.gen6.last_primitive) {
1129
		DBG(("%s: continuing previous primitive, start=%d, index=%d\n",
1130
		     __FUNCTION__,
1131
		     sna->render.vertex_start,
1132
		     sna->render.vertex_index));
1133
		sna->render.vertex_offset = sna->kgem.nbatch - 5;
1134
		return;
1135
	}
1136
 
1137
	OUT_BATCH(GEN6_3DPRIMITIVE |
1138
		  GEN6_3DPRIMITIVE_VERTEX_SEQUENTIAL |
1139
		  _3DPRIM_RECTLIST << GEN6_3DPRIMITIVE_TOPOLOGY_SHIFT |
1140
 
1141
		  4);
1142
	sna->render.vertex_offset = sna->kgem.nbatch;
1143
	OUT_BATCH(0);	/* vertex count, to be filled in later */
1144
	OUT_BATCH(sna->render.vertex_index);
1145
	OUT_BATCH(1);	/* single instance */
1146
	OUT_BATCH(0);	/* start instance location */
1147
	OUT_BATCH(0);	/* index buffer offset, ignored */
1148
	sna->render.vertex_start = sna->render.vertex_index;
1149
	DBG(("%s: started new primitive: index=%d\n",
1150
	     __FUNCTION__, sna->render.vertex_start));
1151
 
1152
	sna->render_state.gen6.last_primitive = sna->kgem.nbatch;
1153
}
1154
 
1155
static bool gen6_rectangle_begin(struct sna *sna,
1156
				 const struct sna_composite_op *op)
1157
{
1158
	int id = 1 << GEN6_VERTEX(op->u.gen6.flags);
1159
	int ndwords;
1160
 
3263 Serge 1161
	if (sna_vertex_wait__locked(&sna->render) && sna->render.vertex_offset)
1162
		return true;
1163
 
3254 Serge 1164
	ndwords = op->need_magic_ca_pass ? 60 : 6;
1165
	if ((sna->render.vb_id & id) == 0)
1166
		ndwords += 5;
1167
	if (!kgem_check_batch(&sna->kgem, ndwords))
1168
		return false;
1169
 
1170
	if ((sna->render.vb_id & id) == 0)
1171
		gen6_emit_vertex_buffer(sna, op);
1172
 
1173
	gen6_emit_primitive(sna);
1174
	return true;
1175
}
1176
 
1177
static int gen6_get_rectangles__flush(struct sna *sna,
1178
				      const struct sna_composite_op *op)
1179
{
3263 Serge 1180
	/* Preventing discarding new vbo after lock contention */
1181
	if (sna_vertex_wait__locked(&sna->render)) {
1182
		int rem = vertex_space(sna);
1183
		if (rem > op->floats_per_rect)
1184
			return rem;
1185
	}
3254 Serge 1186
 
1187
	if (!kgem_check_batch(&sna->kgem, op->need_magic_ca_pass ? 65 : 5))
1188
		return 0;
1189
	if (!kgem_check_reloc_and_exec(&sna->kgem, 2))
1190
		return 0;
1191
 
1192
	if (sna->render.vertex_offset) {
1193
		gen4_vertex_flush(sna);
1194
		if (gen6_magic_ca_pass(sna, op)) {
1195
			gen6_emit_flush(sna);
1196
			gen6_emit_cc(sna, GEN6_BLEND(op->u.gen6.flags));
1197
			gen6_emit_wm(sna,
1198
				     GEN6_KERNEL(op->u.gen6.flags),
1199
				     GEN6_VERTEX(op->u.gen6.flags) >> 2);
1200
		}
1201
	}
1202
 
1203
	return gen4_vertex_finish(sna);
1204
}
1205
 
1206
inline static int gen6_get_rectangles(struct sna *sna,
1207
				      const struct sna_composite_op *op,
1208
				      int want,
1209
				      void (*emit_state)(struct sna *, const struct sna_composite_op *op))
1210
{
1211
	int rem;
1212
 
1213
start:
1214
	rem = vertex_space(sna);
1215
	if (unlikely(rem < op->floats_per_rect)) {
1216
		DBG(("flushing vbo for %s: %d < %d\n",
1217
		     __FUNCTION__, rem, op->floats_per_rect));
1218
		rem = gen6_get_rectangles__flush(sna, op);
1219
		if (unlikely(rem == 0))
1220
			goto flush;
1221
	}
1222
 
1223
	if (unlikely(sna->render.vertex_offset == 0 &&
1224
		     !gen6_rectangle_begin(sna, op)))
1225
		goto flush;
1226
 
1227
	if (want > 1 && want * op->floats_per_rect > rem)
1228
		want = rem / op->floats_per_rect;
1229
 
1230
	assert(want > 0);
1231
	sna->render.vertex_index += 3*want;
1232
	return want;
1233
 
1234
flush:
1235
	if (sna->render.vertex_offset) {
1236
		gen4_vertex_flush(sna);
1237
		gen6_magic_ca_pass(sna, op);
1238
	}
3263 Serge 1239
	sna_vertex_wait__locked(&sna->render);
3254 Serge 1240
	_kgem_submit(&sna->kgem);
1241
	emit_state(sna, op);
1242
	goto start;
1243
}
1244
 
1245
inline static uint32_t *gen6_composite_get_binding_table(struct sna *sna,
1246
							 uint16_t *offset)
1247
{
1248
	uint32_t *table;
1249
 
1250
	sna->kgem.surface -=
1251
		sizeof(struct gen6_surface_state_padded) / sizeof(uint32_t);
1252
	/* Clear all surplus entries to zero in case of prefetch */
1253
	table = memset(sna->kgem.batch + sna->kgem.surface,
1254
		       0, sizeof(struct gen6_surface_state_padded));
1255
 
1256
	DBG(("%s(%x)\n", __FUNCTION__, 4*sna->kgem.surface));
1257
 
1258
	*offset = sna->kgem.surface;
1259
	return table;
1260
}
1261
 
1262
static bool
1263
gen6_get_batch(struct sna *sna, const struct sna_composite_op *op)
1264
{
1265
	kgem_set_mode(&sna->kgem, KGEM_RENDER, op->dst.bo);
1266
 
1267
	if (!kgem_check_batch_with_surfaces(&sna->kgem, 150, 4)) {
1268
		DBG(("%s: flushing batch: %d < %d+%d\n",
1269
		     __FUNCTION__, sna->kgem.surface - sna->kgem.nbatch,
1270
		     150, 4*8));
1271
		kgem_submit(&sna->kgem);
1272
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
1273
	}
1274
 
1275
	if (sna->render_state.gen6.needs_invariant)
1276
		gen6_emit_invariant(sna);
1277
 
1278
	return kgem_bo_is_dirty(op->dst.bo);
1279
}
1280
 
1281
static void gen6_emit_composite_state(struct sna *sna,
1282
                      const struct sna_composite_op *op)
1283
{
1284
    uint32_t *binding_table;
1285
    uint16_t offset;
1286
    bool dirty;
1287
 
1288
	dirty = gen6_get_batch(sna, op);
1289
 
1290
    binding_table = gen6_composite_get_binding_table(sna, &offset);
1291
 
1292
    binding_table[0] =
1293
        gen6_bind_bo(sna,
1294
                op->dst.bo, op->dst.width, op->dst.height,
1295
			    gen6_get_dest_format(op->dst.format),
1296
			    true);
1297
    binding_table[1] =
1298
        gen6_bind_bo(sna,
1299
                 op->src.bo, op->src.width, op->src.height,
1300
                 op->src.card_format,
1301
			     false);
1302
    if (op->mask.bo) {
1303
        binding_table[2] =
1304
            gen6_bind_bo(sna,
1305
                     op->mask.bo,
1306
                     op->mask.width,
1307
                     op->mask.height,
1308
                     op->mask.card_format,
1309
				     false);
1310
    }
1311
 
1312
    if (sna->kgem.surface == offset &&
1313
        *(uint64_t *)(sna->kgem.batch + sna->render_state.gen6.surface_table) == *(uint64_t*)binding_table &&
1314
        (op->mask.bo == NULL ||
1315
         sna->kgem.batch[sna->render_state.gen6.surface_table+2] == binding_table[2])) {
1316
        sna->kgem.surface += sizeof(struct gen6_surface_state_padded) / sizeof(uint32_t);
1317
        offset = sna->render_state.gen6.surface_table;
1318
    }
1319
 
1320
    gen6_emit_state(sna, op, offset | dirty);
1321
}
1322
 
1323
static void
1324
gen6_align_vertex(struct sna *sna, const struct sna_composite_op *op)
1325
{
1326
	assert (sna->render.vertex_offset == 0);
1327
	if (op->floats_per_vertex != sna->render_state.gen6.floats_per_vertex) {
1328
		if (sna->render.vertex_size - sna->render.vertex_used < 2*op->floats_per_rect)
1329
			gen4_vertex_finish(sna);
1330
 
1331
		DBG(("aligning vertex: was %d, now %d floats per vertex, %d->%d\n",
1332
		     sna->render_state.gen6.floats_per_vertex,
1333
		     op->floats_per_vertex,
1334
		     sna->render.vertex_index,
1335
		     (sna->render.vertex_used + op->floats_per_vertex - 1) / op->floats_per_vertex));
1336
		sna->render.vertex_index = (sna->render.vertex_used + op->floats_per_vertex - 1) / op->floats_per_vertex;
1337
		sna->render.vertex_used = sna->render.vertex_index * op->floats_per_vertex;
1338
		sna->render_state.gen6.floats_per_vertex = op->floats_per_vertex;
1339
	}
1340
	assert((sna->render.vertex_used % op->floats_per_vertex) == 0);
1341
}
1342
 
1343
 
1344
fastcall static void
1345
gen6_render_composite_blt(struct sna *sna,
1346
			  const struct sna_composite_op *op,
1347
			  const struct sna_composite_rectangles *r)
1348
{
1349
	gen6_get_rectangles(sna, op, 1, gen6_emit_composite_state);
1350
	op->prim_emit(sna, op, r);
1351
}
1352
 
3278 Serge 1353
#if 0
1354
 
3254 Serge 1355
fastcall static void
1356
gen6_render_composite_box(struct sna *sna,
1357
			  const struct sna_composite_op *op,
1358
			  const BoxRec *box)
1359
{
1360
	struct sna_composite_rectangles r;
1361
 
1362
	gen6_get_rectangles(sna, op, 1, gen6_emit_composite_state);
1363
 
1364
	DBG(("  %s: (%d, %d), (%d, %d)\n",
1365
	     __FUNCTION__,
1366
	     box->x1, box->y1, box->x2, box->y2));
1367
 
1368
	r.dst.x = box->x1;
1369
	r.dst.y = box->y1;
1370
	r.width  = box->x2 - box->x1;
1371
	r.height = box->y2 - box->y1;
1372
	r.src = r.mask = r.dst;
1373
 
1374
	op->prim_emit(sna, op, &r);
1375
}
1376
 
1377
static void
1378
gen6_render_composite_boxes__blt(struct sna *sna,
1379
				 const struct sna_composite_op *op,
1380
				 const BoxRec *box, int nbox)
1381
{
1382
	DBG(("composite_boxes(%d)\n", nbox));
1383
 
1384
	do {
1385
		int nbox_this_time;
1386
 
1387
		nbox_this_time = gen6_get_rectangles(sna, op, nbox,
1388
						     gen6_emit_composite_state);
1389
		nbox -= nbox_this_time;
1390
 
1391
		do {
1392
			struct sna_composite_rectangles r;
1393
 
1394
			DBG(("  %s: (%d, %d), (%d, %d)\n",
1395
			     __FUNCTION__,
1396
			     box->x1, box->y1, box->x2, box->y2));
1397
 
1398
			r.dst.x = box->x1;
1399
			r.dst.y = box->y1;
1400
			r.width  = box->x2 - box->x1;
1401
			r.height = box->y2 - box->y1;
1402
			r.src = r.mask = r.dst;
1403
 
1404
			op->prim_emit(sna, op, &r);
1405
			box++;
1406
		} while (--nbox_this_time);
1407
	} while (nbox);
1408
}
1409
 
1410
static void
1411
gen6_render_composite_boxes(struct sna *sna,
1412
			    const struct sna_composite_op *op,
1413
			    const BoxRec *box, int nbox)
1414
{
1415
	DBG(("%s: nbox=%d\n", __FUNCTION__, nbox));
1416
 
1417
	do {
1418
		int nbox_this_time;
1419
		float *v;
1420
 
1421
		nbox_this_time = gen6_get_rectangles(sna, op, nbox,
1422
						     gen6_emit_composite_state);
1423
		assert(nbox_this_time);
1424
		nbox -= nbox_this_time;
1425
 
1426
		v = sna->render.vertices + sna->render.vertex_used;
1427
		sna->render.vertex_used += nbox_this_time * op->floats_per_rect;
1428
 
1429
		op->emit_boxes(op, box, nbox_this_time, v);
1430
		box += nbox_this_time;
1431
	} while (nbox);
1432
}
1433
 
1434
static void
1435
gen6_render_composite_boxes__thread(struct sna *sna,
1436
				    const struct sna_composite_op *op,
1437
				    const BoxRec *box, int nbox)
1438
{
1439
	DBG(("%s: nbox=%d\n", __FUNCTION__, nbox));
1440
 
1441
	sna_vertex_lock(&sna->render);
1442
	do {
1443
		int nbox_this_time;
1444
		float *v;
1445
 
1446
		nbox_this_time = gen6_get_rectangles(sna, op, nbox,
1447
						     gen6_emit_composite_state);
1448
		assert(nbox_this_time);
1449
		nbox -= nbox_this_time;
1450
 
1451
		v = sna->render.vertices + sna->render.vertex_used;
1452
		sna->render.vertex_used += nbox_this_time * op->floats_per_rect;
1453
 
1454
		sna_vertex_acquire__locked(&sna->render);
1455
		sna_vertex_unlock(&sna->render);
1456
 
1457
		op->emit_boxes(op, box, nbox_this_time, v);
1458
		box += nbox_this_time;
1459
 
1460
		sna_vertex_lock(&sna->render);
1461
		sna_vertex_release__locked(&sna->render);
1462
	} while (nbox);
1463
	sna_vertex_unlock(&sna->render);
1464
}
1465
 
1466
#endif
1467
 
1468
#ifndef MAX
1469
#define MAX(a,b) ((a) > (b) ? (a) : (b))
1470
#endif
1471
 
1472
static uint32_t
1473
gen6_composite_create_blend_state(struct sna_static_stream *stream)
1474
{
1475
	char *base, *ptr;
1476
	int src, dst;
1477
 
1478
	base = sna_static_stream_map(stream,
1479
				     GEN6_BLENDFACTOR_COUNT * GEN6_BLENDFACTOR_COUNT * GEN6_BLEND_STATE_PADDED_SIZE,
1480
				     64);
1481
 
1482
	ptr = base;
1483
	for (src = 0; src < GEN6_BLENDFACTOR_COUNT; src++) {
1484
		for (dst= 0; dst < GEN6_BLENDFACTOR_COUNT; dst++) {
1485
			struct gen6_blend_state *blend =
1486
				(struct gen6_blend_state *)ptr;
1487
 
1488
			blend->blend0.dest_blend_factor = dst;
1489
			blend->blend0.source_blend_factor = src;
1490
			blend->blend0.blend_func = GEN6_BLENDFUNCTION_ADD;
1491
			blend->blend0.blend_enable =
1492
				!(dst == GEN6_BLENDFACTOR_ZERO && src == GEN6_BLENDFACTOR_ONE);
1493
 
1494
			blend->blend1.post_blend_clamp_enable = 1;
1495
			blend->blend1.pre_blend_clamp_enable = 1;
1496
 
1497
			ptr += GEN6_BLEND_STATE_PADDED_SIZE;
1498
		}
1499
	}
1500
 
1501
	return sna_static_stream_offsetof(stream, base);
1502
}
1503
 
1504
#if 0
1505
 
1506
static uint32_t gen6_bind_video_source(struct sna *sna,
1507
				       struct kgem_bo *src_bo,
1508
				       uint32_t src_offset,
1509
				       int src_width,
1510
				       int src_height,
1511
				       int src_pitch,
1512
				       uint32_t src_surf_format)
1513
{
1514
	struct gen6_surface_state *ss;
1515
 
1516
	sna->kgem.surface -= sizeof(struct gen6_surface_state_padded) / sizeof(uint32_t);
1517
 
1518
	ss = memset(sna->kgem.batch + sna->kgem.surface, 0, sizeof(*ss));
1519
	ss->ss0.surface_type = GEN6_SURFACE_2D;
1520
	ss->ss0.surface_format = src_surf_format;
1521
 
1522
	ss->ss1.base_addr =
1523
		kgem_add_reloc(&sna->kgem,
1524
			       sna->kgem.surface + 1,
1525
			       src_bo,
1526
			       I915_GEM_DOMAIN_SAMPLER << 16,
1527
			       src_offset);
1528
 
1529
	ss->ss2.width  = src_width - 1;
1530
	ss->ss2.height = src_height - 1;
1531
	ss->ss3.pitch  = src_pitch - 1;
1532
 
1533
	return sna->kgem.surface * sizeof(uint32_t);
1534
}
1535
 
1536
static void gen6_emit_video_state(struct sna *sna,
1537
				  const struct sna_composite_op *op)
1538
{
1539
	struct sna_video_frame *frame = op->priv;
1540
	uint32_t src_surf_format;
1541
	uint32_t src_surf_base[6];
1542
	int src_width[6];
1543
	int src_height[6];
1544
	int src_pitch[6];
1545
	uint32_t *binding_table;
1546
	uint16_t offset;
1547
	bool dirty;
1548
	int n_src, n;
1549
 
1550
	dirty = gen6_get_batch(sna, op);
1551
 
1552
	src_surf_base[0] = 0;
1553
	src_surf_base[1] = 0;
1554
	src_surf_base[2] = frame->VBufOffset;
1555
	src_surf_base[3] = frame->VBufOffset;
1556
	src_surf_base[4] = frame->UBufOffset;
1557
	src_surf_base[5] = frame->UBufOffset;
1558
 
1559
	if (is_planar_fourcc(frame->id)) {
1560
		src_surf_format = GEN6_SURFACEFORMAT_R8_UNORM;
1561
		src_width[1]  = src_width[0]  = frame->width;
1562
		src_height[1] = src_height[0] = frame->height;
1563
		src_pitch[1]  = src_pitch[0]  = frame->pitch[1];
1564
		src_width[4]  = src_width[5]  = src_width[2]  = src_width[3] =
1565
			frame->width / 2;
1566
		src_height[4] = src_height[5] = src_height[2] = src_height[3] =
1567
			frame->height / 2;
1568
		src_pitch[4]  = src_pitch[5]  = src_pitch[2]  = src_pitch[3] =
1569
			frame->pitch[0];
1570
		n_src = 6;
1571
	} else {
1572
		if (frame->id == FOURCC_UYVY)
1573
			src_surf_format = GEN6_SURFACEFORMAT_YCRCB_SWAPY;
1574
		else
1575
			src_surf_format = GEN6_SURFACEFORMAT_YCRCB_NORMAL;
1576
 
1577
		src_width[0]  = frame->width;
1578
		src_height[0] = frame->height;
1579
		src_pitch[0]  = frame->pitch[0];
1580
		n_src = 1;
1581
	}
1582
 
1583
	binding_table = gen6_composite_get_binding_table(sna, &offset);
1584
 
1585
	binding_table[0] =
1586
		gen6_bind_bo(sna,
1587
			     op->dst.bo, op->dst.width, op->dst.height,
1588
			     gen6_get_dest_format(op->dst.format),
1589
			     true);
1590
	for (n = 0; n < n_src; n++) {
1591
		binding_table[1+n] =
1592
			gen6_bind_video_source(sna,
1593
					       frame->bo,
1594
					       src_surf_base[n],
1595
					       src_width[n],
1596
					       src_height[n],
1597
					       src_pitch[n],
1598
					       src_surf_format);
1599
	}
1600
 
1601
	gen6_emit_state(sna, op, offset | dirty);
1602
}
1603
 
1604
static bool
1605
gen6_render_video(struct sna *sna,
1606
		  struct sna_video *video,
1607
		  struct sna_video_frame *frame,
1608
		  RegionPtr dstRegion,
1609
		  short src_w, short src_h,
1610
		  short drw_w, short drw_h,
1611
		  short dx, short dy,
1612
		  PixmapPtr pixmap)
1613
{
1614
	struct sna_composite_op tmp;
1615
	int nbox, pix_xoff, pix_yoff;
1616
	float src_scale_x, src_scale_y;
1617
	struct sna_pixmap *priv;
1618
	unsigned filter;
1619
	BoxPtr box;
1620
 
1621
	DBG(("%s: src=(%d, %d), dst=(%d, %d), %dx[(%d, %d), (%d, %d)...]\n",
1622
	     __FUNCTION__, src_w, src_h, drw_w, drw_h,
1623
	     REGION_NUM_RECTS(dstRegion),
1624
	     REGION_EXTENTS(NULL, dstRegion)->x1,
1625
	     REGION_EXTENTS(NULL, dstRegion)->y1,
1626
	     REGION_EXTENTS(NULL, dstRegion)->x2,
1627
	     REGION_EXTENTS(NULL, dstRegion)->y2));
1628
 
1629
	priv = sna_pixmap_force_to_gpu(pixmap, MOVE_READ | MOVE_WRITE);
1630
	if (priv == NULL)
1631
		return false;
1632
 
1633
	memset(&tmp, 0, sizeof(tmp));
1634
 
1635
	tmp.dst.pixmap = pixmap;
1636
	tmp.dst.width  = pixmap->drawable.width;
1637
	tmp.dst.height = pixmap->drawable.height;
1638
	tmp.dst.format = sna_render_format_for_depth(pixmap->drawable.depth);
1639
	tmp.dst.bo = priv->gpu_bo;
1640
 
1641
	tmp.src.bo = frame->bo;
1642
	tmp.mask.bo = NULL;
1643
 
1644
	tmp.floats_per_vertex = 3;
1645
	tmp.floats_per_rect = 9;
1646
 
1647
	if (src_w == drw_w && src_h == drw_h)
1648
		filter = SAMPLER_FILTER_NEAREST;
1649
	else
1650
		filter = SAMPLER_FILTER_BILINEAR;
1651
 
1652
	tmp.u.gen6.flags =
1653
		GEN6_SET_FLAGS(SAMPLER_OFFSET(filter, SAMPLER_EXTEND_PAD,
1654
					       SAMPLER_FILTER_NEAREST, SAMPLER_EXTEND_NONE),
1655
			       NO_BLEND,
1656
			       is_planar_fourcc(frame->id) ?
1657
			       GEN6_WM_KERNEL_VIDEO_PLANAR :
1658
			       GEN6_WM_KERNEL_VIDEO_PACKED,
1659
			       2);
1660
	tmp.priv = frame;
1661
 
1662
	kgem_set_mode(&sna->kgem, KGEM_RENDER, tmp.dst.bo);
1663
	if (!kgem_check_bo(&sna->kgem, tmp.dst.bo, frame->bo, NULL)) {
1664
		kgem_submit(&sna->kgem);
1665
		assert(kgem_check_bo(&sna->kgem, tmp.dst.bo, frame->bo, NULL));
1666
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
1667
	}
1668
 
3258 Serge 1669
	gen6_emit_video_state(sna, &tmp);
3254 Serge 1670
	gen6_align_vertex(sna, &tmp);
1671
 
1672
	/* Set up the offset for translating from the given region (in screen
1673
	 * coordinates) to the backing pixmap.
1674
	 */
1675
#ifdef COMPOSITE
1676
	pix_xoff = -pixmap->screen_x + pixmap->drawable.x;
1677
	pix_yoff = -pixmap->screen_y + pixmap->drawable.y;
1678
#else
1679
	pix_xoff = 0;
1680
	pix_yoff = 0;
1681
#endif
1682
 
1683
	/* Use normalized texture coordinates */
1684
	src_scale_x = ((float)src_w / frame->width) / (float)drw_w;
1685
	src_scale_y = ((float)src_h / frame->height) / (float)drw_h;
1686
 
1687
	box = REGION_RECTS(dstRegion);
1688
	nbox = REGION_NUM_RECTS(dstRegion);
1689
	while (nbox--) {
1690
		BoxRec r;
1691
 
1692
		r.x1 = box->x1 + pix_xoff;
1693
		r.x2 = box->x2 + pix_xoff;
1694
		r.y1 = box->y1 + pix_yoff;
1695
		r.y2 = box->y2 + pix_yoff;
1696
 
1697
		gen6_get_rectangles(sna, &tmp, 1, gen6_emit_video_state);
1698
 
1699
		OUT_VERTEX(r.x2, r.y2);
1700
		OUT_VERTEX_F((box->x2 - dx) * src_scale_x);
1701
		OUT_VERTEX_F((box->y2 - dy) * src_scale_y);
1702
 
1703
		OUT_VERTEX(r.x1, r.y2);
1704
		OUT_VERTEX_F((box->x1 - dx) * src_scale_x);
1705
		OUT_VERTEX_F((box->y2 - dy) * src_scale_y);
1706
 
1707
		OUT_VERTEX(r.x1, r.y1);
1708
		OUT_VERTEX_F((box->x1 - dx) * src_scale_x);
1709
		OUT_VERTEX_F((box->y1 - dy) * src_scale_y);
1710
 
1711
		if (!DAMAGE_IS_ALL(priv->gpu_damage)) {
1712
			sna_damage_add_box(&priv->gpu_damage, &r);
1713
			sna_damage_subtract_box(&priv->cpu_damage, &r);
1714
		}
1715
		box++;
1716
	}
1717
	priv->clear = false;
1718
 
1719
	gen4_vertex_flush(sna);
1720
	return true;
1721
}
1722
 
1723
static int
1724
gen6_composite_picture(struct sna *sna,
1725
		       PicturePtr picture,
1726
		       struct sna_composite_channel *channel,
1727
		       int x, int y,
1728
		       int w, int h,
1729
		       int dst_x, int dst_y,
1730
		       bool precise)
1731
{
1732
	PixmapPtr pixmap;
1733
	uint32_t color;
1734
	int16_t dx, dy;
1735
 
1736
	DBG(("%s: (%d, %d)x(%d, %d), dst=(%d, %d)\n",
1737
	     __FUNCTION__, x, y, w, h, dst_x, dst_y));
1738
 
1739
	channel->is_solid = false;
1740
	channel->card_format = -1;
1741
 
1742
	if (sna_picture_is_solid(picture, &color))
1743
		return gen4_channel_init_solid(sna, channel, color);
1744
 
1745
	if (picture->pDrawable == NULL) {
1746
		int ret;
1747
 
1748
		if (picture->pSourcePict->type == SourcePictTypeLinear)
1749
			return gen4_channel_init_linear(sna, picture, channel,
1750
							x, y,
1751
							w, h,
1752
							dst_x, dst_y);
1753
 
1754
		DBG(("%s -- fixup, gradient\n", __FUNCTION__));
1755
		ret = -1;
1756
		if (!precise)
1757
			ret = sna_render_picture_approximate_gradient(sna, picture, channel,
1758
								      x, y, w, h, dst_x, dst_y);
1759
		if (ret == -1)
1760
			ret = sna_render_picture_fixup(sna, picture, channel,
1761
						       x, y, w, h, dst_x, dst_y);
1762
		return ret;
1763
	}
1764
 
1765
	if (picture->alphaMap) {
1766
		DBG(("%s -- fixup, alphamap\n", __FUNCTION__));
1767
		return sna_render_picture_fixup(sna, picture, channel,
1768
						x, y, w, h, dst_x, dst_y);
1769
	}
1770
 
1771
	if (!gen6_check_repeat(picture))
1772
		return sna_render_picture_fixup(sna, picture, channel,
1773
						x, y, w, h, dst_x, dst_y);
1774
 
1775
	if (!gen6_check_filter(picture))
1776
		return sna_render_picture_fixup(sna, picture, channel,
1777
						x, y, w, h, dst_x, dst_y);
1778
 
1779
	channel->repeat = picture->repeat ? picture->repeatType : RepeatNone;
1780
	channel->filter = picture->filter;
1781
 
1782
	pixmap = get_drawable_pixmap(picture->pDrawable);
1783
	get_drawable_deltas(picture->pDrawable, pixmap, &dx, &dy);
1784
 
1785
	x += dx + picture->pDrawable->x;
1786
	y += dy + picture->pDrawable->y;
1787
 
1788
	channel->is_affine = sna_transform_is_affine(picture->transform);
1789
	if (sna_transform_is_integer_translation(picture->transform, &dx, &dy)) {
1790
		DBG(("%s: integer translation (%d, %d), removing\n",
1791
		     __FUNCTION__, dx, dy));
1792
		x += dx;
1793
		y += dy;
1794
		channel->transform = NULL;
1795
		channel->filter = PictFilterNearest;
1796
	} else
1797
		channel->transform = picture->transform;
1798
 
1799
	channel->pict_format = picture->format;
1800
	channel->card_format = gen6_get_card_format(picture->format);
1801
	if (channel->card_format == (unsigned)-1)
1802
		return sna_render_picture_convert(sna, picture, channel, pixmap,
1803
						  x, y, w, h, dst_x, dst_y,
1804
						  false);
1805
 
1806
	if (too_large(pixmap->drawable.width, pixmap->drawable.height)) {
1807
		DBG(("%s: extracting from pixmap %dx%d\n", __FUNCTION__,
1808
		     pixmap->drawable.width, pixmap->drawable.height));
1809
		return sna_render_picture_extract(sna, picture, channel,
1810
						  x, y, w, h, dst_x, dst_y);
1811
	}
1812
 
1813
	return sna_render_pixmap_bo(sna, channel, pixmap,
1814
				    x, y, w, h, dst_x, dst_y);
1815
}
1816
 
1817
inline static void gen6_composite_channel_convert(struct sna_composite_channel *channel)
1818
{
1819
	channel->repeat = gen6_repeat(channel->repeat);
1820
	channel->filter = gen6_filter(channel->filter);
1821
	if (channel->card_format == (unsigned)-1)
1822
		channel->card_format = gen6_get_card_format(channel->pict_format);
1823
	assert(channel->card_format != (unsigned)-1);
1824
}
1825
 
3278 Serge 1826
#endif
1827
 
3254 Serge 1828
static void gen6_render_composite_done(struct sna *sna,
1829
                       const struct sna_composite_op *op)
1830
{
1831
    DBG(("%s\n", __FUNCTION__));
1832
 
1833
	assert(!sna->render.active);
1834
	if (sna->render.vertex_offset) {
1835
		gen4_vertex_flush(sna);
1836
        gen6_magic_ca_pass(sna, op);
1837
    }
1838
 
3258 Serge 1839
	if (op->mask.bo)
1840
		kgem_bo_destroy(&sna->kgem, op->mask.bo);
1841
	if (op->src.bo)
1842
		kgem_bo_destroy(&sna->kgem, op->src.bo);
3254 Serge 1843
 
1844
//   sna_render_composite_redirect_done(sna, op);
1845
}
1846
 
3278 Serge 1847
#if 0
1848
 
3254 Serge 1849
static bool
1850
gen6_composite_set_target(struct sna *sna,
1851
			  struct sna_composite_op *op,
1852
			  PicturePtr dst,
1853
			  int x, int y, int w, int h)
1854
{
1855
	BoxRec box;
1856
 
1857
	op->dst.pixmap = get_drawable_pixmap(dst->pDrawable);
1858
	op->dst.format = dst->format;
1859
	op->dst.width = op->dst.pixmap->drawable.width;
1860
	op->dst.height = op->dst.pixmap->drawable.height;
1861
 
1862
	if (w && h) {
1863
		box.x1 = x;
1864
		box.y1 = y;
1865
		box.x2 = x + w;
1866
		box.y2 = y + h;
1867
	} else
1868
		sna_render_picture_extents(dst, &box);
1869
 
3278 Serge 1870
//	op->dst.bo = sna_drawable_use_bo (dst->pDrawable,
1871
//					  PREFER_GPU | FORCE_GPU | RENDER_GPU,
1872
//					  &box, &op->damage);
3254 Serge 1873
	if (op->dst.bo == NULL)
1874
		return false;
1875
 
1876
	get_drawable_deltas(dst->pDrawable, op->dst.pixmap,
1877
			    &op->dst.x, &op->dst.y);
1878
 
1879
	DBG(("%s: pixmap=%p, format=%08x, size=%dx%d, pitch=%d, delta=(%d,%d),damage=%p\n",
1880
	     __FUNCTION__,
1881
	     op->dst.pixmap, (int)op->dst.format,
1882
	     op->dst.width, op->dst.height,
1883
	     op->dst.bo->pitch,
1884
	     op->dst.x, op->dst.y,
1885
	     op->damage ? *op->damage : (void *)-1));
1886
 
1887
	assert(op->dst.bo->proxy == NULL);
1888
 
1889
	if (too_large(op->dst.width, op->dst.height) &&
1890
	    !sna_render_composite_redirect(sna, op, x, y, w, h))
1891
		return false;
1892
 
1893
	return true;
1894
}
1895
 
1896
 
1897
static bool
1898
gen6_render_composite(struct sna *sna,
1899
              uint8_t op,
1900
		      PicturePtr src,
1901
		      PicturePtr mask,
1902
		      PicturePtr dst,
1903
              int16_t src_x, int16_t src_y,
1904
              int16_t msk_x, int16_t msk_y,
1905
              int16_t dst_x, int16_t dst_y,
1906
              int16_t width, int16_t height,
1907
              struct sna_composite_op *tmp)
1908
{
1909
	if (op >= ARRAY_SIZE(gen6_blend_op))
1910
		return false;
1911
 
1912
    DBG(("%s: %dx%d, current mode=%d\n", __FUNCTION__,
1913
         width, height, sna->kgem.ring));
1914
 
1915
	if (op == PictOpClear)
1916
		op = PictOpSrc;
1917
	tmp->op = op;
1918
	if (!gen6_composite_set_target(sna, tmp, dst,
1919
				       dst_x, dst_y, width, height))
1920
		return false;
1921
 
1922
	switch (gen6_composite_picture(sna, src, &tmp->src,
1923
				       src_x, src_y,
1924
				       width, height,
1925
				       dst_x, dst_y,
1926
				       dst->polyMode == PolyModePrecise)) {
1927
	case -1:
1928
		goto cleanup_dst;
1929
	case 0:
1930
		if (!gen4_channel_init_solid(sna, &tmp->src, 0))
1931
			goto cleanup_dst;
1932
		/* fall through to fixup */
1933
	case 1:
1934
		/* Did we just switch rings to prepare the source? */
1935
		if (mask == NULL &&
1936
		    prefer_blt_composite(sna, tmp) &&
1937
		    sna_blt_composite__convert(sna,
1938
					       dst_x, dst_y, width, height,
1939
					       tmp))
1940
			return true;
1941
 
1942
		gen6_composite_channel_convert(&tmp->src);
1943
		break;
1944
	}
1945
 
1946
	tmp->is_affine = tmp->src.is_affine;
1947
	tmp->has_component_alpha = false;
1948
	tmp->need_magic_ca_pass = false;
1949
 
1950
	tmp->mask.bo = NULL;
1951
    tmp->mask.filter = SAMPLER_FILTER_NEAREST;
1952
    tmp->mask.repeat = SAMPLER_EXTEND_NONE;
1953
 
1954
	if (mask) {
1955
		if (mask->componentAlpha && PICT_FORMAT_RGB(mask->format)) {
1956
			tmp->has_component_alpha = true;
1957
 
1958
			/* Check if it's component alpha that relies on a source alpha and on
1959
			 * the source value.  We can only get one of those into the single
1960
			 * source value that we get to blend with.
1961
			 */
1962
			if (gen6_blend_op[op].src_alpha &&
1963
			    (gen6_blend_op[op].src_blend != GEN6_BLENDFACTOR_ZERO)) {
1964
				if (op != PictOpOver)
1965
					goto cleanup_src;
1966
 
1967
				tmp->need_magic_ca_pass = true;
1968
				tmp->op = PictOpOutReverse;
1969
			}
1970
		}
1971
 
1972
		if (!reuse_source(sna,
1973
				  src, &tmp->src, src_x, src_y,
1974
				  mask, &tmp->mask, msk_x, msk_y)) {
1975
			switch (gen6_composite_picture(sna, mask, &tmp->mask,
1976
						       msk_x, msk_y,
1977
						       width, height,
1978
						       dst_x, dst_y,
1979
						       dst->polyMode == PolyModePrecise)) {
1980
			case -1:
1981
				goto cleanup_src;
1982
			case 0:
1983
				if (!gen4_channel_init_solid(sna, &tmp->mask, 0))
1984
					goto cleanup_src;
1985
				/* fall through to fixup */
1986
			case 1:
1987
				gen6_composite_channel_convert(&tmp->mask);
1988
				break;
1989
			}
1990
		}
1991
 
1992
		tmp->is_affine &= tmp->mask.is_affine;
1993
	}
1994
 
1995
	tmp->u.gen6.flags =
1996
		GEN6_SET_FLAGS(SAMPLER_OFFSET(tmp->src.filter,
1997
					      tmp->src.repeat,
1998
					      tmp->mask.filter,
1999
					      tmp->mask.repeat),
2000
			       gen6_get_blend(tmp->op,
2001
					      tmp->has_component_alpha,
2002
					      tmp->dst.format),
2003
			       gen6_choose_composite_kernel(tmp->op,
2004
							    tmp->mask.bo != NULL,
2005
							    tmp->has_component_alpha,
2006
							    tmp->is_affine),
2007
			       gen4_choose_composite_emitter(tmp));
2008
 
3278 Serge 2009
//	tmp->blt   = gen6_render_composite_blt;
2010
//    tmp->box   = gen6_render_composite_box;
2011
//	tmp->boxes = gen6_render_composite_boxes__blt;
2012
//	if (tmp->emit_boxes) {
2013
//		tmp->boxes = gen6_render_composite_boxes;
2014
//		tmp->thread_boxes = gen6_render_composite_boxes__thread;
2015
//	}
3254 Serge 2016
	tmp->done  = gen6_render_composite_done;
2017
 
3263 Serge 2018
	kgem_set_mode(&sna->kgem, KGEM_RENDER, tmp->dst.bo);
2019
	if (!kgem_check_bo(&sna->kgem,
2020
			   tmp->dst.bo, tmp->src.bo, tmp->mask.bo,
2021
			   NULL)) {
2022
		kgem_submit(&sna->kgem);
2023
		if (!kgem_check_bo(&sna->kgem,
2024
				   tmp->dst.bo, tmp->src.bo, tmp->mask.bo,
2025
				   NULL))
2026
			goto cleanup_mask;
2027
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
2028
	}
3254 Serge 2029
 
2030
    gen6_emit_composite_state(sna, tmp);
2031
    gen6_align_vertex(sna, tmp);
2032
	return true;
2033
 
2034
cleanup_mask:
2035
	if (tmp->mask.bo)
2036
		kgem_bo_destroy(&sna->kgem, tmp->mask.bo);
2037
cleanup_src:
2038
	if (tmp->src.bo)
2039
		kgem_bo_destroy(&sna->kgem, tmp->src.bo);
2040
cleanup_dst:
2041
	if (tmp->redirect.real_bo)
2042
		kgem_bo_destroy(&sna->kgem, tmp->dst.bo);
2043
	return false;
2044
}
2045
 
3278 Serge 2046
 
3254 Serge 2047
#if !NO_COMPOSITE_SPANS
2048
fastcall static void
2049
gen6_render_composite_spans_box(struct sna *sna,
2050
				const struct sna_composite_spans_op *op,
2051
				const BoxRec *box, float opacity)
2052
{
2053
	DBG(("%s: src=+(%d, %d), opacity=%f, dst=+(%d, %d), box=(%d, %d) x (%d, %d)\n",
2054
	     __FUNCTION__,
2055
	     op->base.src.offset[0], op->base.src.offset[1],
2056
	     opacity,
2057
	     op->base.dst.x, op->base.dst.y,
2058
	     box->x1, box->y1,
2059
	     box->x2 - box->x1,
2060
	     box->y2 - box->y1));
2061
 
2062
	gen6_get_rectangles(sna, &op->base, 1, gen6_emit_composite_state);
2063
	op->prim_emit(sna, op, box, opacity);
2064
}
2065
 
2066
static void
2067
gen6_render_composite_spans_boxes(struct sna *sna,
2068
				  const struct sna_composite_spans_op *op,
2069
				  const BoxRec *box, int nbox,
2070
				  float opacity)
2071
{
2072
	DBG(("%s: nbox=%d, src=+(%d, %d), opacity=%f, dst=+(%d, %d)\n",
2073
	     __FUNCTION__, nbox,
2074
	     op->base.src.offset[0], op->base.src.offset[1],
2075
	     opacity,
2076
	     op->base.dst.x, op->base.dst.y));
2077
 
2078
	do {
2079
		int nbox_this_time;
2080
 
2081
		nbox_this_time = gen6_get_rectangles(sna, &op->base, nbox,
2082
						     gen6_emit_composite_state);
2083
		nbox -= nbox_this_time;
2084
 
2085
		do {
2086
			DBG(("  %s: (%d, %d) x (%d, %d)\n", __FUNCTION__,
2087
			     box->x1, box->y1,
2088
			     box->x2 - box->x1,
2089
			     box->y2 - box->y1));
2090
 
2091
			op->prim_emit(sna, op, box++, opacity);
2092
		} while (--nbox_this_time);
2093
	} while (nbox);
2094
}
2095
 
2096
fastcall static void
2097
gen6_render_composite_spans_boxes__thread(struct sna *sna,
2098
					  const struct sna_composite_spans_op *op,
2099
					  const struct sna_opacity_box *box,
2100
					  int nbox)
2101
{
2102
	DBG(("%s: nbox=%d, src=+(%d, %d), dst=+(%d, %d)\n",
2103
	     __FUNCTION__, nbox,
2104
	     op->base.src.offset[0], op->base.src.offset[1],
2105
	     op->base.dst.x, op->base.dst.y));
2106
 
2107
	sna_vertex_lock(&sna->render);
2108
	do {
2109
		int nbox_this_time;
2110
		float *v;
2111
 
2112
		nbox_this_time = gen6_get_rectangles(sna, &op->base, nbox,
2113
						     gen6_emit_composite_state);
2114
		assert(nbox_this_time);
2115
		nbox -= nbox_this_time;
2116
 
2117
		v = sna->render.vertices + sna->render.vertex_used;
2118
		sna->render.vertex_used += nbox_this_time * op->base.floats_per_rect;
2119
 
2120
		sna_vertex_acquire__locked(&sna->render);
2121
		sna_vertex_unlock(&sna->render);
2122
 
2123
		op->emit_boxes(op, box, nbox_this_time, v);
2124
		box += nbox_this_time;
2125
 
2126
		sna_vertex_lock(&sna->render);
2127
		sna_vertex_release__locked(&sna->render);
2128
	} while (nbox);
2129
	sna_vertex_unlock(&sna->render);
2130
}
2131
 
2132
fastcall static void
2133
gen6_render_composite_spans_done(struct sna *sna,
2134
				 const struct sna_composite_spans_op *op)
2135
{
2136
	DBG(("%s()\n", __FUNCTION__));
2137
	assert(!sna->render.active);
2138
 
2139
	if (sna->render.vertex_offset)
2140
		gen4_vertex_flush(sna);
2141
 
2142
	if (op->base.src.bo)
2143
		kgem_bo_destroy(&sna->kgem, op->base.src.bo);
2144
 
2145
	sna_render_composite_redirect_done(sna, &op->base);
2146
}
2147
 
2148
static bool
2149
gen6_check_composite_spans(struct sna *sna,
2150
			   uint8_t op, PicturePtr src, PicturePtr dst,
2151
			   int16_t width, int16_t height,
2152
			   unsigned flags)
2153
{
2154
	DBG(("%s: op=%d, width=%d, height=%d, flags=%x\n",
2155
	     __FUNCTION__, op, width, height, flags));
2156
 
2157
	if (op >= ARRAY_SIZE(gen6_blend_op))
2158
		return false;
2159
 
2160
	if (gen6_composite_fallback(sna, src, NULL, dst)) {
2161
		DBG(("%s: operation would fallback\n", __FUNCTION__));
2162
		return false;
2163
	}
2164
 
2165
	if (need_tiling(sna, width, height) &&
2166
	    !is_gpu(sna, dst->pDrawable, PREFER_GPU_SPANS)) {
2167
		DBG(("%s: fallback, tiled operation not on GPU\n",
2168
		     __FUNCTION__));
2169
		return false;
2170
	}
2171
 
2172
	if ((flags & COMPOSITE_SPANS_RECTILINEAR) == 0) {
2173
		struct sna_pixmap *priv = sna_pixmap_from_drawable(dst->pDrawable);
2174
		assert(priv);
2175
 
2176
		if (priv->cpu_bo && kgem_bo_is_busy(priv->cpu_bo))
2177
			return true;
2178
 
2179
		if (flags & COMPOSITE_SPANS_INPLACE_HINT)
2180
			return false;
2181
 
2182
		return priv->gpu_bo && kgem_bo_is_busy(priv->gpu_bo);
2183
	}
2184
 
2185
	return true;
2186
}
2187
 
2188
static bool
2189
gen6_render_composite_spans(struct sna *sna,
2190
			    uint8_t op,
2191
			    PicturePtr src,
2192
			    PicturePtr dst,
2193
			    int16_t src_x,  int16_t src_y,
2194
			    int16_t dst_x,  int16_t dst_y,
2195
			    int16_t width,  int16_t height,
2196
			    unsigned flags,
2197
			    struct sna_composite_spans_op *tmp)
2198
{
2199
	DBG(("%s: %dx%d with flags=%x, current mode=%d\n", __FUNCTION__,
2200
	     width, height, flags, sna->kgem.ring));
2201
 
2202
	assert(gen6_check_composite_spans(sna, op, src, dst, width, height, flags));
2203
 
2204
	if (need_tiling(sna, width, height)) {
2205
		DBG(("%s: tiling, operation (%dx%d) too wide for pipeline\n",
2206
		     __FUNCTION__, width, height));
2207
		return sna_tiling_composite_spans(op, src, dst,
2208
						  src_x, src_y, dst_x, dst_y,
2209
						  width, height, flags, tmp);
2210
	}
2211
 
2212
	tmp->base.op = op;
2213
	if (!gen6_composite_set_target(sna, &tmp->base, dst,
2214
				       dst_x, dst_y, width, height))
2215
		return false;
2216
 
2217
	switch (gen6_composite_picture(sna, src, &tmp->base.src,
2218
				       src_x, src_y,
2219
				       width, height,
2220
				       dst_x, dst_y,
2221
				       dst->polyMode == PolyModePrecise)) {
2222
	case -1:
2223
		goto cleanup_dst;
2224
	case 0:
2225
		if (!gen4_channel_init_solid(sna, &tmp->base.src, 0))
2226
			goto cleanup_dst;
2227
		/* fall through to fixup */
2228
	case 1:
2229
		gen6_composite_channel_convert(&tmp->base.src);
2230
		break;
2231
	}
2232
	tmp->base.mask.bo = NULL;
2233
 
2234
	tmp->base.is_affine = tmp->base.src.is_affine;
2235
	tmp->base.need_magic_ca_pass = false;
2236
 
2237
	tmp->base.u.gen6.flags =
2238
		GEN6_SET_FLAGS(SAMPLER_OFFSET(tmp->base.src.filter,
2239
					      tmp->base.src.repeat,
2240
					      SAMPLER_FILTER_NEAREST,
2241
					      SAMPLER_EXTEND_PAD),
2242
			       gen6_get_blend(tmp->base.op, false, tmp->base.dst.format),
2243
			       GEN6_WM_KERNEL_OPACITY | !tmp->base.is_affine,
2244
			       gen4_choose_spans_emitter(tmp));
2245
 
2246
	tmp->box   = gen6_render_composite_spans_box;
2247
	tmp->boxes = gen6_render_composite_spans_boxes;
2248
	if (tmp->emit_boxes)
2249
		tmp->thread_boxes = gen6_render_composite_spans_boxes__thread;
2250
	tmp->done  = gen6_render_composite_spans_done;
2251
 
2252
	kgem_set_mode(&sna->kgem, KGEM_RENDER, tmp->base.dst.bo);
2253
	if (!kgem_check_bo(&sna->kgem,
2254
			   tmp->base.dst.bo, tmp->base.src.bo,
2255
			   NULL)) {
2256
		kgem_submit(&sna->kgem);
2257
		if (!kgem_check_bo(&sna->kgem,
2258
				   tmp->base.dst.bo, tmp->base.src.bo,
2259
				   NULL))
2260
			goto cleanup_src;
2261
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
2262
	}
2263
 
2264
	gen6_emit_composite_state(sna, &tmp->base);
2265
	gen6_align_vertex(sna, &tmp->base);
2266
	return true;
2267
 
2268
cleanup_src:
2269
	if (tmp->base.src.bo)
2270
		kgem_bo_destroy(&sna->kgem, tmp->base.src.bo);
2271
cleanup_dst:
2272
	if (tmp->base.redirect.real_bo)
2273
		kgem_bo_destroy(&sna->kgem, tmp->base.dst.bo);
2274
	return false;
2275
}
2276
#endif
2277
 
2278
#endif
2279
 
2280
static void
2281
gen6_emit_copy_state(struct sna *sna,
2282
		     const struct sna_composite_op *op)
2283
{
2284
	uint32_t *binding_table;
2285
	uint16_t offset;
2286
	bool dirty;
2287
 
2288
	dirty = gen6_get_batch(sna, op);
2289
 
2290
	binding_table = gen6_composite_get_binding_table(sna, &offset);
2291
 
2292
	binding_table[0] =
2293
		gen6_bind_bo(sna,
2294
			     op->dst.bo, op->dst.width, op->dst.height,
2295
			     gen6_get_dest_format(op->dst.format),
2296
			     true);
2297
	binding_table[1] =
2298
		gen6_bind_bo(sna,
2299
			     op->src.bo, op->src.width, op->src.height,
2300
			     op->src.card_format,
2301
			     false);
2302
 
2303
	if (sna->kgem.surface == offset &&
2304
	    *(uint64_t *)(sna->kgem.batch + sna->render_state.gen6.surface_table) == *(uint64_t*)binding_table) {
2305
		sna->kgem.surface += sizeof(struct gen6_surface_state_padded) / sizeof(uint32_t);
2306
		offset = sna->render_state.gen6.surface_table;
2307
	}
2308
 
2309
	gen6_emit_state(sna, op, offset | dirty);
2310
}
2311
 
2312
#if 0
2313
 
2314
static inline bool prefer_blt_copy(struct sna *sna,
2315
				   struct kgem_bo *src_bo,
2316
				   struct kgem_bo *dst_bo,
2317
				   unsigned flags)
2318
{
2319
	if (flags & COPY_SYNC)
2320
		return false;
2321
 
2322
	if (PREFER_RENDER)
2323
		return PREFER_RENDER > 0;
2324
 
2325
	if (sna->kgem.ring == KGEM_BLT)
2326
		return true;
2327
 
2328
	if (src_bo == dst_bo && can_switch_to_blt(sna, dst_bo, flags))
2329
		return true;
2330
 
2331
	if (untiled_tlb_miss(src_bo) ||
2332
	    untiled_tlb_miss(dst_bo))
2333
		return true;
2334
 
2335
	if (!prefer_blt_ring(sna, dst_bo, flags))
2336
		return false;
2337
 
2338
	return (prefer_blt_bo(sna, src_bo) >= 0 &&
2339
		prefer_blt_bo(sna, dst_bo) > 0);
2340
}
2341
 
2342
inline static void boxes_extents(const BoxRec *box, int n, BoxRec *extents)
2343
{
2344
	*extents = box[0];
2345
	while (--n) {
2346
		box++;
2347
 
2348
		if (box->x1 < extents->x1)
2349
			extents->x1 = box->x1;
2350
		if (box->x2 > extents->x2)
2351
			extents->x2 = box->x2;
2352
 
2353
		if (box->y1 < extents->y1)
2354
			extents->y1 = box->y1;
2355
		if (box->y2 > extents->y2)
2356
			extents->y2 = box->y2;
2357
	}
2358
}
2359
 
2360
static inline bool
2361
overlaps(struct sna *sna,
2362
	 struct kgem_bo *src_bo, int16_t src_dx, int16_t src_dy,
2363
	 struct kgem_bo *dst_bo, int16_t dst_dx, int16_t dst_dy,
2364
	 const BoxRec *box, int n, BoxRec *extents)
2365
{
2366
	if (src_bo != dst_bo)
2367
		return false;
2368
 
2369
	boxes_extents(box, n, extents);
2370
	return (extents->x2 + src_dx > extents->x1 + dst_dx &&
2371
		extents->x1 + src_dx < extents->x2 + dst_dx &&
2372
		extents->y2 + src_dy > extents->y1 + dst_dy &&
2373
		extents->y1 + src_dy < extents->y2 + dst_dy);
2374
}
2375
 
2376
static bool
2377
gen6_render_copy_boxes(struct sna *sna, uint8_t alu,
2378
		       PixmapPtr src, struct kgem_bo *src_bo, int16_t src_dx, int16_t src_dy,
2379
		       PixmapPtr dst, struct kgem_bo *dst_bo, int16_t dst_dx, int16_t dst_dy,
2380
		       const BoxRec *box, int n, unsigned flags)
2381
{
2382
	struct sna_composite_op tmp;
2383
	BoxRec extents;
2384
 
2385
	DBG(("%s (%d, %d)->(%d, %d) x %d, alu=%x, self-copy=%d, overlaps? %d\n",
2386
	     __FUNCTION__, src_dx, src_dy, dst_dx, dst_dy, n, alu,
2387
	     src_bo == dst_bo,
2388
	     overlaps(sna,
2389
		      src_bo, src_dx, src_dy,
2390
		      dst_bo, dst_dx, dst_dy,
2391
		      box, n, &extents)));
2392
 
2393
	if (prefer_blt_copy(sna, src_bo, dst_bo, flags) &&
2394
	    sna_blt_compare_depth(&src->drawable, &dst->drawable) &&
2395
	    sna_blt_copy_boxes(sna, alu,
2396
			       src_bo, src_dx, src_dy,
2397
			       dst_bo, dst_dx, dst_dy,
2398
			       dst->drawable.bitsPerPixel,
2399
			       box, n))
2400
		return true;
2401
 
2402
	if (!(alu == GXcopy || alu == GXclear)) {
2403
fallback_blt:
2404
		if (!sna_blt_compare_depth(&src->drawable, &dst->drawable))
2405
			return false;
2406
 
2407
		return sna_blt_copy_boxes_fallback(sna, alu,
2408
						   src, src_bo, src_dx, src_dy,
2409
						   dst, dst_bo, dst_dx, dst_dy,
2410
						   box, n);
2411
	}
2412
 
2413
	if (overlaps(sna,
2414
		     src_bo, src_dx, src_dy,
2415
		     dst_bo, dst_dx, dst_dy,
2416
		     box, n, &extents)) {
2417
		if (too_large(extents.x2-extents.x1, extents.y2-extents.y1))
2418
			goto fallback_blt;
2419
 
2420
		if (can_switch_to_blt(sna, dst_bo, flags) &&
2421
		    sna_blt_compare_depth(&src->drawable, &dst->drawable) &&
2422
		    sna_blt_copy_boxes(sna, alu,
2423
				       src_bo, src_dx, src_dy,
2424
				       dst_bo, dst_dx, dst_dy,
2425
				       dst->drawable.bitsPerPixel,
2426
				       box, n))
2427
			return true;
2428
 
2429
		return sna_render_copy_boxes__overlap(sna, alu,
2430
						      src, src_bo, src_dx, src_dy,
2431
						      dst, dst_bo, dst_dx, dst_dy,
2432
						      box, n, &extents);
2433
	}
2434
 
2435
	if (dst->drawable.depth == src->drawable.depth) {
2436
		tmp.dst.format = sna_render_format_for_depth(dst->drawable.depth);
2437
		tmp.src.pict_format = tmp.dst.format;
2438
	} else {
2439
		tmp.dst.format = sna_format_for_depth(dst->drawable.depth);
2440
		tmp.src.pict_format = sna_format_for_depth(src->drawable.depth);
2441
	}
2442
	if (!gen6_check_format(tmp.src.pict_format))
2443
		goto fallback_blt;
2444
 
2445
	tmp.dst.pixmap = dst;
2446
	tmp.dst.width  = dst->drawable.width;
2447
	tmp.dst.height = dst->drawable.height;
2448
	tmp.dst.bo = dst_bo;
2449
	tmp.dst.x = tmp.dst.y = 0;
2450
	tmp.damage = NULL;
2451
 
2452
	sna_render_composite_redirect_init(&tmp);
2453
	if (too_large(tmp.dst.width, tmp.dst.height)) {
2454
		int i;
2455
 
2456
		extents = box[0];
2457
		for (i = 1; i < n; i++) {
2458
			if (box[i].x1 < extents.x1)
2459
				extents.x1 = box[i].x1;
2460
			if (box[i].y1 < extents.y1)
2461
				extents.y1 = box[i].y1;
2462
 
2463
			if (box[i].x2 > extents.x2)
2464
				extents.x2 = box[i].x2;
2465
			if (box[i].y2 > extents.y2)
2466
				extents.y2 = box[i].y2;
2467
		}
2468
 
2469
		if (!sna_render_composite_redirect(sna, &tmp,
2470
						   extents.x1 + dst_dx,
2471
						   extents.y1 + dst_dy,
2472
						   extents.x2 - extents.x1,
2473
						   extents.y2 - extents.y1))
2474
			goto fallback_tiled;
2475
 
2476
		dst_dx += tmp.dst.x;
2477
		dst_dy += tmp.dst.y;
2478
 
2479
		tmp.dst.x = tmp.dst.y = 0;
2480
	}
2481
 
2482
	tmp.src.card_format = gen6_get_card_format(tmp.src.pict_format);
2483
	if (too_large(src->drawable.width, src->drawable.height)) {
2484
		int i;
2485
 
2486
		extents = box[0];
2487
		for (i = 1; i < n; i++) {
2488
			if (extents.x1 < box[i].x1)
2489
				extents.x1 = box[i].x1;
2490
			if (extents.y1 < box[i].y1)
2491
				extents.y1 = box[i].y1;
2492
 
2493
			if (extents.x2 > box[i].x2)
2494
				extents.x2 = box[i].x2;
2495
			if (extents.y2 > box[i].y2)
2496
				extents.y2 = box[i].y2;
2497
		}
2498
 
2499
		if (!sna_render_pixmap_partial(sna, src, src_bo, &tmp.src,
2500
					       extents.x1 + src_dx,
2501
					       extents.y1 + src_dy,
2502
					       extents.x2 - extents.x1,
2503
					       extents.y2 - extents.y1)) {
2504
			DBG(("%s: unable to extract partial pixmap\n", __FUNCTION__));
2505
			goto fallback_tiled_dst;
2506
		}
2507
 
2508
		src_dx += tmp.src.offset[0];
2509
		src_dy += tmp.src.offset[1];
2510
	} else {
2511
		tmp.src.bo = src_bo;
2512
		tmp.src.width  = src->drawable.width;
2513
		tmp.src.height = src->drawable.height;
2514
	}
2515
 
2516
	tmp.mask.bo = NULL;
2517
 
2518
	tmp.floats_per_vertex = 2;
2519
	tmp.floats_per_rect = 6;
2520
	tmp.need_magic_ca_pass = 0;
2521
 
2522
	tmp.u.gen6.flags = COPY_FLAGS(alu);
2523
	assert(GEN6_KERNEL(tmp.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
2524
	assert(GEN6_SAMPLER(tmp.u.gen6.flags) == COPY_SAMPLER);
2525
	assert(GEN6_VERTEX(tmp.u.gen6.flags) == COPY_VERTEX);
2526
 
2527
	kgem_set_mode(&sna->kgem, KGEM_RENDER, tmp.dst.bo);
2528
	if (!kgem_check_bo(&sna->kgem, tmp.dst.bo, tmp.src.bo, NULL)) {
2529
		kgem_submit(&sna->kgem);
2530
		if (!kgem_check_bo(&sna->kgem, tmp.dst.bo, tmp.src.bo, NULL)) {
2531
			DBG(("%s: too large for a single operation\n",
2532
			     __FUNCTION__));
2533
			goto fallback_tiled_src;
2534
		}
2535
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
2536
	}
2537
 
2538
	gen6_emit_copy_state(sna, &tmp);
2539
	gen6_align_vertex(sna, &tmp);
2540
 
2541
	do {
2542
		int16_t *v;
2543
		int n_this_time;
2544
 
2545
		n_this_time = gen6_get_rectangles(sna, &tmp, n,
2546
						  gen6_emit_copy_state);
2547
		n -= n_this_time;
2548
 
2549
		v = (int16_t *)(sna->render.vertices + sna->render.vertex_used);
2550
		sna->render.vertex_used += 6 * n_this_time;
2551
		assert(sna->render.vertex_used <= sna->render.vertex_size);
2552
		do {
2553
 
2554
			DBG(("	(%d, %d) -> (%d, %d) + (%d, %d)\n",
2555
			     box->x1 + src_dx, box->y1 + src_dy,
2556
			     box->x1 + dst_dx, box->y1 + dst_dy,
2557
			     box->x2 - box->x1, box->y2 - box->y1));
2558
			v[0] = box->x2 + dst_dx;
2559
			v[2] = box->x2 + src_dx;
2560
			v[1]  = v[5] = box->y2 + dst_dy;
2561
			v[3]  = v[7] = box->y2 + src_dy;
2562
			v[8]  = v[4] = box->x1 + dst_dx;
2563
			v[10] = v[6] = box->x1 + src_dx;
2564
			v[9]  = box->y1 + dst_dy;
2565
			v[11] = box->y1 + src_dy;
2566
			v += 12; box++;
2567
		} while (--n_this_time);
2568
	} while (n);
2569
 
2570
	gen4_vertex_flush(sna);
2571
	sna_render_composite_redirect_done(sna, &tmp);
2572
	if (tmp.src.bo != src_bo)
2573
		kgem_bo_destroy(&sna->kgem, tmp.src.bo);
2574
	return true;
2575
 
2576
fallback_tiled_src:
2577
	if (tmp.src.bo != src_bo)
2578
		kgem_bo_destroy(&sna->kgem, tmp.src.bo);
2579
fallback_tiled_dst:
2580
	if (tmp.redirect.real_bo)
2581
		kgem_bo_destroy(&sna->kgem, tmp.dst.bo);
2582
fallback_tiled:
2583
	if (sna_blt_compare_depth(&src->drawable, &dst->drawable) &&
2584
	    sna_blt_copy_boxes(sna, alu,
2585
			       src_bo, src_dx, src_dy,
2586
			       dst_bo, dst_dx, dst_dy,
2587
			       dst->drawable.bitsPerPixel,
2588
			       box, n))
2589
		return true;
2590
 
2591
	return sna_tiling_copy_boxes(sna, alu,
2592
				     src, src_bo, src_dx, src_dy,
2593
				     dst, dst_bo, dst_dx, dst_dy,
2594
				     box, n);
2595
}
2596
 
2597
#endif
2598
 
2599
static void
2600
gen6_render_copy_blt(struct sna *sna,
2601
		     const struct sna_copy_op *op,
2602
		     int16_t sx, int16_t sy,
2603
		     int16_t w,  int16_t h,
2604
		     int16_t dx, int16_t dy)
2605
{
2606
	int16_t *v;
2607
 
2608
	gen6_get_rectangles(sna, &op->base, 1, gen6_emit_copy_state);
2609
 
2610
	v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
2611
	sna->render.vertex_used += 6;
2612
	assert(sna->render.vertex_used <= sna->render.vertex_size);
2613
 
2614
	v[0]  = dx+w; v[1]  = dy+h;
2615
	v[2]  = sx+w; v[3]  = sy+h;
2616
	v[4]  = dx;   v[5]  = dy+h;
2617
	v[6]  = sx;   v[7]  = sy+h;
2618
	v[8]  = dx;   v[9]  = dy;
2619
	v[10] = sx;   v[11] = sy;
2620
}
2621
 
2622
static void
2623
gen6_render_copy_done(struct sna *sna, const struct sna_copy_op *op)
2624
{
2625
	DBG(("%s()\n", __FUNCTION__));
2626
 
2627
	assert(!sna->render.active);
2628
	if (sna->render.vertex_offset)
2629
		gen4_vertex_flush(sna);
2630
}
2631
 
2632
static bool
2633
gen6_render_copy(struct sna *sna, uint8_t alu,
2634
		 PixmapPtr src, struct kgem_bo *src_bo,
2635
		 PixmapPtr dst, struct kgem_bo *dst_bo,
2636
		 struct sna_copy_op *op)
2637
{
2638
	DBG(("%s (alu=%d, src=(%dx%d), dst=(%dx%d))\n",
2639
	     __FUNCTION__, alu,
2640
	     src->drawable.width, src->drawable.height,
2641
	     dst->drawable.width, dst->drawable.height));
2642
 
2643
fallback:
2644
 
2645
    op->base.dst.format = PIXMAN_a8r8g8b8;
2646
	op->base.src.pict_format = op->base.dst.format;
2647
 
2648
	op->base.dst.pixmap = dst;
2649
	op->base.dst.width  = dst->drawable.width;
2650
	op->base.dst.height = dst->drawable.height;
2651
	op->base.dst.bo = dst_bo;
2652
 
2653
	op->base.src.bo = src_bo;
2654
	op->base.src.card_format =
2655
		gen6_get_card_format(op->base.src.pict_format);
2656
	op->base.src.width  = src->drawable.width;
2657
	op->base.src.height = src->drawable.height;
2658
 
2659
	op->base.mask.bo = NULL;
2660
 
2661
	op->base.floats_per_vertex = 2;
2662
	op->base.floats_per_rect = 6;
2663
 
2664
	op->base.u.gen6.flags = COPY_FLAGS(alu);
2665
	assert(GEN6_KERNEL(op->base.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
2666
	assert(GEN6_SAMPLER(op->base.u.gen6.flags) == COPY_SAMPLER);
2667
	assert(GEN6_VERTEX(op->base.u.gen6.flags) == COPY_VERTEX);
2668
 
3263 Serge 2669
	kgem_set_mode(&sna->kgem, KGEM_RENDER, dst_bo);
2670
	if (!kgem_check_bo(&sna->kgem, dst_bo, src_bo, NULL)) {
2671
		kgem_submit(&sna->kgem);
2672
		if (!kgem_check_bo(&sna->kgem, dst_bo, src_bo, NULL))
2673
			goto fallback;
2674
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
2675
	}
3254 Serge 2676
 
2677
	gen6_emit_copy_state(sna, &op->base);
2678
	gen6_align_vertex(sna, &op->base);
2679
 
2680
	op->blt  = gen6_render_copy_blt;
2681
	op->done = gen6_render_copy_done;
2682
	return true;
2683
}
2684
 
3278 Serge 2685
 
3280 Serge 2686
static bool
2687
gen6_blit_tex(struct sna *sna,
3278 Serge 2688
              uint8_t op,
2689
		      PixmapPtr src, struct kgem_bo *src_bo,
2690
		      PixmapPtr mask,struct kgem_bo *mask_bo,
2691
		      PixmapPtr dst, struct kgem_bo *dst_bo,
2692
              int32_t src_x, int32_t src_y,
2693
              int32_t msk_x, int32_t msk_y,
2694
              int32_t dst_x, int32_t dst_y,
2695
              int32_t width, int32_t height,
2696
              struct sna_composite_op *tmp)
2697
{
2698
 
2699
    DBG(("%s: %dx%d, current mode=%d\n", __FUNCTION__,
2700
         width, height, sna->kgem.ring));
2701
 
2702
    tmp->op = PictOpSrc;
2703
 
2704
    tmp->dst.pixmap = dst;
2705
    tmp->dst.bo     = dst_bo;
2706
    tmp->dst.width  = dst->drawable.width;
2707
    tmp->dst.height = dst->drawable.height;
2708
    tmp->dst.format = PICT_x8r8g8b8;
2709
 
2710
 
2711
	tmp->src.repeat = RepeatNone;
2712
	tmp->src.filter = PictFilterNearest;
2713
    tmp->src.is_affine = true;
2714
 
2715
    tmp->src.bo = src_bo;
2716
	tmp->src.pict_format = PICT_x8r8g8b8;
2717
    tmp->src.card_format = gen6_get_card_format(tmp->src.pict_format);
2718
    tmp->src.width  = src->drawable.width;
2719
    tmp->src.height = src->drawable.height;
2720
 
2721
	tmp->is_affine = tmp->src.is_affine;
2722
	tmp->has_component_alpha = false;
2723
	tmp->need_magic_ca_pass = false;
2724
 
2725
	tmp->mask.repeat = SAMPLER_EXTEND_NONE;
2726
	tmp->mask.filter = SAMPLER_FILTER_NEAREST;
2727
    tmp->mask.is_affine = true;
2728
 
2729
    tmp->mask.bo = mask_bo;
2730
    tmp->mask.pict_format = PIXMAN_a8;
2731
    tmp->mask.card_format = gen6_get_card_format(tmp->mask.pict_format);
2732
    tmp->mask.width  = mask->drawable.width;
2733
    tmp->mask.height = mask->drawable.height;
2734
 
2735
 
2736
    tmp->src.scale[0] = 1.f/width;            //src->width;
2737
    tmp->src.scale[1] = 1.f/height;            //src->height;
2738
//    tmp->src.offset[0] = -dst_x;
2739
//    tmp->src.offset[1] = -dst_y;
2740
 
2741
 
2742
    tmp->mask.scale[0] = 1.f/mask->drawable.width;
2743
    tmp->mask.scale[1] = 1.f/mask->drawable.height;
2744
//    tmp->mask.offset[0] = -dst_x;
2745
//    tmp->mask.offset[1] = -dst_y;
2746
 
2747
	tmp->u.gen6.flags =
2748
		GEN6_SET_FLAGS(SAMPLER_OFFSET(tmp->src.filter,
2749
					      tmp->src.repeat,
2750
					      tmp->mask.filter,
2751
					      tmp->mask.repeat),
2752
			       gen6_get_blend(tmp->op,
2753
					      tmp->has_component_alpha,
2754
					      tmp->dst.format),
2755
/*			       gen6_choose_composite_kernel(tmp->op,
2756
							    tmp->mask.bo != NULL,
2757
							    tmp->has_component_alpha,
2758
							    tmp->is_affine),
2759
*/
2760
                   GEN6_WM_KERNEL_MASK,
2761
			       gen4_choose_composite_emitter(tmp));
2762
 
2763
	tmp->blt   = gen6_render_composite_blt;
2764
//    tmp->box   = gen6_render_composite_box;
2765
	tmp->done  = gen6_render_composite_done;
2766
 
2767
	kgem_set_mode(&sna->kgem, KGEM_RENDER, tmp->dst.bo);
2768
	if (!kgem_check_bo(&sna->kgem,
2769
			   tmp->dst.bo, tmp->src.bo, tmp->mask.bo,
2770
			   NULL)) {
2771
		kgem_submit(&sna->kgem);
2772
		_kgem_set_mode(&sna->kgem, KGEM_RENDER);
2773
	}
2774
 
2775
    gen6_emit_composite_state(sna, tmp);
2776
    gen6_align_vertex(sna, tmp);
2777
	return true;
2778
 
2779
}
2780
 
2781
 
2782
 
3254 Serge 2783
#if 0
2784
 
2785
static void
2786
gen6_emit_fill_state(struct sna *sna, const struct sna_composite_op *op)
2787
{
2788
	uint32_t *binding_table;
2789
	uint16_t offset;
2790
	bool dirty;
2791
 
2792
	dirty = gen6_get_batch(sna, op);
2793
 
2794
	binding_table = gen6_composite_get_binding_table(sna, &offset);
2795
 
2796
	binding_table[0] =
2797
		gen6_bind_bo(sna,
2798
			     op->dst.bo, op->dst.width, op->dst.height,
2799
			     gen6_get_dest_format(op->dst.format),
2800
			     true);
2801
	binding_table[1] =
2802
		gen6_bind_bo(sna,
2803
			     op->src.bo, 1, 1,
2804
			     GEN6_SURFACEFORMAT_B8G8R8A8_UNORM,
2805
			     false);
2806
 
2807
	if (sna->kgem.surface == offset &&
2808
	    *(uint64_t *)(sna->kgem.batch + sna->render_state.gen6.surface_table) == *(uint64_t*)binding_table) {
2809
		sna->kgem.surface +=
2810
			sizeof(struct gen6_surface_state_padded)/sizeof(uint32_t);
2811
		offset = sna->render_state.gen6.surface_table;
2812
	}
2813
 
2814
	gen6_emit_state(sna, op, offset | dirty);
2815
}
2816
 
2817
static inline bool prefer_blt_fill(struct sna *sna,
2818
				   struct kgem_bo *bo)
2819
{
2820
	if (PREFER_RENDER)
2821
		return PREFER_RENDER < 0;
2822
 
2823
	if (untiled_tlb_miss(bo))
2824
		return true;
2825
 
2826
	return prefer_blt_ring(sna, bo, 0) || prefer_blt_bo(sna, bo) >= 0;
2827
}
2828
 
2829
static bool
2830
gen6_render_fill_boxes(struct sna *sna,
2831
		       CARD8 op,
2832
		       PictFormat format,
2833
		       const xRenderColor *color,
2834
		       PixmapPtr dst, struct kgem_bo *dst_bo,
2835
		       const BoxRec *box, int n)
2836
{
2837
	struct sna_composite_op tmp;
2838
	uint32_t pixel;
2839
 
2840
	DBG(("%s (op=%d, color=(%04x, %04x, %04x, %04x) [%08x])\n",
2841
	     __FUNCTION__, op,
2842
	     color->red, color->green, color->blue, color->alpha, (int)format));
2843
 
2844
	if (op >= ARRAY_SIZE(gen6_blend_op)) {
2845
		DBG(("%s: fallback due to unhandled blend op: %d\n",
2846
		     __FUNCTION__, op));
2847
		return false;
2848
	}
2849
 
2850
	if (prefer_blt_fill(sna, dst_bo) || !gen6_check_dst_format(format)) {
2851
		uint8_t alu = GXinvalid;
2852
 
2853
		if (op <= PictOpSrc) {
2854
			pixel = 0;
2855
			if (op == PictOpClear)
2856
				alu = GXclear;
2857
			else if (sna_get_pixel_from_rgba(&pixel,
2858
							 color->red,
2859
							 color->green,
2860
							 color->blue,
2861
							 color->alpha,
2862
							 format))
2863
				alu = GXcopy;
2864
		}
2865
 
2866
		if (alu != GXinvalid &&
2867
		    sna_blt_fill_boxes(sna, alu,
2868
				       dst_bo, dst->drawable.bitsPerPixel,
2869
				       pixel, box, n))
2870
			return true;
2871
 
2872
		if (!gen6_check_dst_format(format))
2873
			return false;
2874
	}
2875
 
2876
	if (op == PictOpClear) {
2877
		pixel = 0;
2878
		op = PictOpSrc;
2879
	} else if (!sna_get_pixel_from_rgba(&pixel,
2880
					    color->red,
2881
					    color->green,
2882
					    color->blue,
2883
					    color->alpha,
2884
					    PICT_a8r8g8b8))
2885
		return false;
2886
 
2887
	DBG(("%s(%08x x %d [(%d, %d), (%d, %d) ...])\n",
2888
	     __FUNCTION__, pixel, n,
2889
	     box[0].x1, box[0].y1, box[0].x2, box[0].y2));
2890
 
2891
	tmp.dst.pixmap = dst;
2892
	tmp.dst.width  = dst->drawable.width;
2893
	tmp.dst.height = dst->drawable.height;
2894
	tmp.dst.format = format;
2895
	tmp.dst.bo = dst_bo;
2896
	tmp.dst.x = tmp.dst.y = 0;
2897
	tmp.damage = NULL;
2898
 
2899
	sna_render_composite_redirect_init(&tmp);
2900
	if (too_large(dst->drawable.width, dst->drawable.height)) {
2901
		BoxRec extents;
2902
 
2903
		boxes_extents(box, n, &extents);
2904
		if (!sna_render_composite_redirect(sna, &tmp,
2905
						   extents.x1, extents.y1,
2906
						   extents.x2 - extents.x1,
2907
						   extents.y2 - extents.y1))
2908
			return sna_tiling_fill_boxes(sna, op, format, color,
2909
						     dst, dst_bo, box, n);
2910
	}
2911
 
2912
	tmp.src.bo = sna_render_get_solid(sna, pixel);
2913
	tmp.mask.bo = NULL;
2914
 
2915
	tmp.floats_per_vertex = 2;
2916
	tmp.floats_per_rect = 6;
2917
	tmp.need_magic_ca_pass = false;
2918
 
2919
	tmp.u.gen6.flags = FILL_FLAGS(op, format);
2920
	assert(GEN6_KERNEL(tmp.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
2921
	assert(GEN6_SAMPLER(tmp.u.gen6.flags) == FILL_SAMPLER);
2922
	assert(GEN6_VERTEX(tmp.u.gen6.flags) == FILL_VERTEX);
2923
 
2924
	if (!kgem_check_bo(&sna->kgem, dst_bo, NULL)) {
2925
		kgem_submit(&sna->kgem);
2926
		assert(kgem_check_bo(&sna->kgem, dst_bo, NULL));
2927
	}
2928
 
2929
	gen6_emit_fill_state(sna, &tmp);
2930
	gen6_align_vertex(sna, &tmp);
2931
 
2932
	do {
2933
		int n_this_time;
2934
		int16_t *v;
2935
 
2936
		n_this_time = gen6_get_rectangles(sna, &tmp, n,
2937
						  gen6_emit_fill_state);
2938
		n -= n_this_time;
2939
 
2940
		v = (int16_t *)(sna->render.vertices + sna->render.vertex_used);
2941
		sna->render.vertex_used += 6 * n_this_time;
2942
		assert(sna->render.vertex_used <= sna->render.vertex_size);
2943
		do {
2944
			DBG(("	(%d, %d), (%d, %d)\n",
2945
			     box->x1, box->y1, box->x2, box->y2));
2946
 
2947
			v[0] = box->x2;
2948
			v[5] = v[1] = box->y2;
2949
			v[8] = v[4] = box->x1;
2950
			v[9] = box->y1;
2951
			v[2] = v[3]  = v[7]  = 1;
2952
			v[6] = v[10] = v[11] = 0;
2953
			v += 12; box++;
2954
		} while (--n_this_time);
2955
	} while (n);
2956
 
2957
	gen4_vertex_flush(sna);
2958
	kgem_bo_destroy(&sna->kgem, tmp.src.bo);
2959
	sna_render_composite_redirect_done(sna, &tmp);
2960
	return true;
2961
}
2962
 
2963
static void
2964
gen6_render_op_fill_blt(struct sna *sna,
2965
			const struct sna_fill_op *op,
2966
			int16_t x, int16_t y, int16_t w, int16_t h)
2967
{
2968
	int16_t *v;
2969
 
2970
	DBG(("%s: (%d, %d)x(%d, %d)\n", __FUNCTION__, x, y, w, h));
2971
 
2972
	gen6_get_rectangles(sna, &op->base, 1, gen6_emit_fill_state);
2973
 
2974
	v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
2975
	sna->render.vertex_used += 6;
2976
	assert(sna->render.vertex_used <= sna->render.vertex_size);
2977
 
2978
	v[0] = x+w;
2979
	v[4] = v[8] = x;
2980
	v[1] = v[5] = y+h;
2981
	v[9] = y;
2982
 
2983
	v[2] = v[3]  = v[7]  = 1;
2984
	v[6] = v[10] = v[11] = 0;
2985
}
2986
 
2987
fastcall static void
2988
gen6_render_op_fill_box(struct sna *sna,
2989
			const struct sna_fill_op *op,
2990
			const BoxRec *box)
2991
{
2992
	int16_t *v;
2993
 
2994
	DBG(("%s: (%d, %d),(%d, %d)\n", __FUNCTION__,
2995
	     box->x1, box->y1, box->x2, box->y2));
2996
 
2997
	gen6_get_rectangles(sna, &op->base, 1, gen6_emit_fill_state);
2998
 
2999
	v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
3000
	sna->render.vertex_used += 6;
3001
	assert(sna->render.vertex_used <= sna->render.vertex_size);
3002
 
3003
	v[0] = box->x2;
3004
	v[8] = v[4] = box->x1;
3005
	v[5] = v[1] = box->y2;
3006
	v[9] = box->y1;
3007
 
3008
	v[7] = v[2]  = v[3]  = 1;
3009
	v[6] = v[10] = v[11] = 0;
3010
}
3011
 
3012
fastcall static void
3013
gen6_render_op_fill_boxes(struct sna *sna,
3014
			  const struct sna_fill_op *op,
3015
			  const BoxRec *box,
3016
			  int nbox)
3017
{
3018
	DBG(("%s: (%d, %d),(%d, %d)... x %d\n", __FUNCTION__,
3019
	     box->x1, box->y1, box->x2, box->y2, nbox));
3020
 
3021
	do {
3022
		int nbox_this_time;
3023
		int16_t *v;
3024
 
3025
		nbox_this_time = gen6_get_rectangles(sna, &op->base, nbox,
3026
						     gen6_emit_fill_state);
3027
		nbox -= nbox_this_time;
3028
 
3029
		v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
3030
		sna->render.vertex_used += 6 * nbox_this_time;
3031
		assert(sna->render.vertex_used <= sna->render.vertex_size);
3032
 
3033
		do {
3034
			v[0] = box->x2;
3035
			v[8] = v[4] = box->x1;
3036
			v[5] = v[1] = box->y2;
3037
			v[9] = box->y1;
3038
			v[7] = v[2]  = v[3]  = 1;
3039
			v[6] = v[10] = v[11] = 0;
3040
			box++; v += 12;
3041
		} while (--nbox_this_time);
3042
	} while (nbox);
3043
}
3044
 
3045
static void
3046
gen6_render_op_fill_done(struct sna *sna, const struct sna_fill_op *op)
3047
{
3048
	DBG(("%s()\n", __FUNCTION__));
3049
 
3050
	assert(!sna->render.active);
3051
	if (sna->render.vertex_offset)
3052
		gen4_vertex_flush(sna);
3053
	kgem_bo_destroy(&sna->kgem, op->base.src.bo);
3054
}
3055
 
3056
static bool
3057
gen6_render_fill(struct sna *sna, uint8_t alu,
3058
		 PixmapPtr dst, struct kgem_bo *dst_bo,
3059
		 uint32_t color,
3060
		 struct sna_fill_op *op)
3061
{
3062
	DBG(("%s: (alu=%d, color=%x)\n", __FUNCTION__, alu, color));
3063
 
3064
	if (prefer_blt_fill(sna, dst_bo) &&
3065
	    sna_blt_fill(sna, alu,
3066
			 dst_bo, dst->drawable.bitsPerPixel,
3067
			 color,
3068
			 op))
3069
		return true;
3070
 
3071
	if (!(alu == GXcopy || alu == GXclear) ||
3072
	    too_large(dst->drawable.width, dst->drawable.height))
3073
		return sna_blt_fill(sna, alu,
3074
				    dst_bo, dst->drawable.bitsPerPixel,
3075
				    color,
3076
				    op);
3077
 
3078
	if (alu == GXclear)
3079
		color = 0;
3080
 
3081
	op->base.dst.pixmap = dst;
3082
	op->base.dst.width  = dst->drawable.width;
3083
	op->base.dst.height = dst->drawable.height;
3084
	op->base.dst.format = sna_format_for_depth(dst->drawable.depth);
3085
	op->base.dst.bo = dst_bo;
3086
	op->base.dst.x = op->base.dst.y = 0;
3087
 
3088
	op->base.src.bo =
3089
		sna_render_get_solid(sna,
3090
				     sna_rgba_for_color(color,
3091
							dst->drawable.depth));
3092
	op->base.mask.bo = NULL;
3093
 
3094
	op->base.need_magic_ca_pass = false;
3095
	op->base.floats_per_vertex = 2;
3096
	op->base.floats_per_rect = 6;
3097
 
3098
	op->base.u.gen6.flags = FILL_FLAGS_NOBLEND;
3099
	assert(GEN6_KERNEL(op->base.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
3100
	assert(GEN6_SAMPLER(op->base.u.gen6.flags) == FILL_SAMPLER);
3101
	assert(GEN6_VERTEX(op->base.u.gen6.flags) == FILL_VERTEX);
3102
 
3103
	if (!kgem_check_bo(&sna->kgem, dst_bo, NULL)) {
3104
		kgem_submit(&sna->kgem);
3105
		assert(kgem_check_bo(&sna->kgem, dst_bo, NULL));
3106
	}
3107
 
3108
	gen6_emit_fill_state(sna, &op->base);
3109
	gen6_align_vertex(sna, &op->base);
3110
 
3111
	op->blt  = gen6_render_op_fill_blt;
3112
	op->box  = gen6_render_op_fill_box;
3113
	op->boxes = gen6_render_op_fill_boxes;
3114
	op->done = gen6_render_op_fill_done;
3115
	return true;
3116
}
3117
 
3118
static bool
3119
gen6_render_fill_one_try_blt(struct sna *sna, PixmapPtr dst, struct kgem_bo *bo,
3120
			     uint32_t color,
3121
			     int16_t x1, int16_t y1, int16_t x2, int16_t y2,
3122
			     uint8_t alu)
3123
{
3124
	BoxRec box;
3125
 
3126
	box.x1 = x1;
3127
	box.y1 = y1;
3128
	box.x2 = x2;
3129
	box.y2 = y2;
3130
 
3131
	return sna_blt_fill_boxes(sna, alu,
3132
				  bo, dst->drawable.bitsPerPixel,
3133
				  color, &box, 1);
3134
}
3135
 
3136
static bool
3137
gen6_render_fill_one(struct sna *sna, PixmapPtr dst, struct kgem_bo *bo,
3138
		     uint32_t color,
3139
		     int16_t x1, int16_t y1,
3140
		     int16_t x2, int16_t y2,
3141
		     uint8_t alu)
3142
{
3143
	struct sna_composite_op tmp;
3144
	int16_t *v;
3145
 
3146
	/* Prefer to use the BLT if already engaged */
3147
	if (prefer_blt_fill(sna, bo) &&
3148
	    gen6_render_fill_one_try_blt(sna, dst, bo, color,
3149
					 x1, y1, x2, y2, alu))
3150
		return true;
3151
 
3152
	/* Must use the BLT if we can't RENDER... */
3153
	if (!(alu == GXcopy || alu == GXclear) ||
3154
	    too_large(dst->drawable.width, dst->drawable.height))
3155
		return gen6_render_fill_one_try_blt(sna, dst, bo, color,
3156
						    x1, y1, x2, y2, alu);
3157
 
3158
	if (alu == GXclear)
3159
		color = 0;
3160
 
3161
	tmp.dst.pixmap = dst;
3162
	tmp.dst.width  = dst->drawable.width;
3163
	tmp.dst.height = dst->drawable.height;
3164
	tmp.dst.format = sna_format_for_depth(dst->drawable.depth);
3165
	tmp.dst.bo = bo;
3166
	tmp.dst.x = tmp.dst.y = 0;
3167
 
3168
	tmp.src.bo =
3169
		sna_render_get_solid(sna,
3170
				     sna_rgba_for_color(color,
3171
							dst->drawable.depth));
3172
	tmp.mask.bo = NULL;
3173
 
3174
	tmp.floats_per_vertex = 2;
3175
	tmp.floats_per_rect = 6;
3176
	tmp.need_magic_ca_pass = false;
3177
 
3178
	tmp.u.gen6.flags = FILL_FLAGS_NOBLEND;
3179
	assert(GEN6_KERNEL(tmp.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
3180
	assert(GEN6_SAMPLER(tmp.u.gen6.flags) == FILL_SAMPLER);
3181
	assert(GEN6_VERTEX(tmp.u.gen6.flags) == FILL_VERTEX);
3182
 
3183
	if (!kgem_check_bo(&sna->kgem, bo, NULL)) {
3184
		kgem_submit(&sna->kgem);
3185
		if (!kgem_check_bo(&sna->kgem, bo, NULL)) {
3186
			kgem_bo_destroy(&sna->kgem, tmp.src.bo);
3187
			return false;
3188
		}
3189
	}
3190
 
3191
	gen6_emit_fill_state(sna, &tmp);
3192
	gen6_align_vertex(sna, &tmp);
3193
 
3194
	gen6_get_rectangles(sna, &tmp, 1, gen6_emit_fill_state);
3195
 
3196
	DBG(("	(%d, %d), (%d, %d)\n", x1, y1, x2, y2));
3197
 
3198
	v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
3199
	sna->render.vertex_used += 6;
3200
	assert(sna->render.vertex_used <= sna->render.vertex_size);
3201
 
3202
	v[0] = x2;
3203
	v[8] = v[4] = x1;
3204
	v[5] = v[1] = y2;
3205
	v[9] = y1;
3206
	v[7] = v[2]  = v[3]  = 1;
3207
	v[6] = v[10] = v[11] = 0;
3208
 
3209
	gen4_vertex_flush(sna);
3210
	kgem_bo_destroy(&sna->kgem, tmp.src.bo);
3211
 
3212
	return true;
3213
}
3214
 
3215
static bool
3216
gen6_render_clear_try_blt(struct sna *sna, PixmapPtr dst, struct kgem_bo *bo)
3217
{
3218
	BoxRec box;
3219
 
3220
	box.x1 = 0;
3221
	box.y1 = 0;
3222
	box.x2 = dst->drawable.width;
3223
	box.y2 = dst->drawable.height;
3224
 
3225
	return sna_blt_fill_boxes(sna, GXclear,
3226
				  bo, dst->drawable.bitsPerPixel,
3227
				  0, &box, 1);
3228
}
3229
 
3230
static bool
3231
gen6_render_clear(struct sna *sna, PixmapPtr dst, struct kgem_bo *bo)
3232
{
3233
	struct sna_composite_op tmp;
3234
	int16_t *v;
3235
 
3236
	DBG(("%s: %dx%d\n",
3237
	     __FUNCTION__,
3238
	     dst->drawable.width,
3239
	     dst->drawable.height));
3240
 
3241
	/* Prefer to use the BLT if, and only if, already engaged */
3242
	if (sna->kgem.ring == KGEM_BLT &&
3243
	    gen6_render_clear_try_blt(sna, dst, bo))
3244
		return true;
3245
 
3246
	/* Must use the BLT if we can't RENDER... */
3247
	if (too_large(dst->drawable.width, dst->drawable.height))
3248
		return gen6_render_clear_try_blt(sna, dst, bo);
3249
 
3250
	tmp.dst.pixmap = dst;
3251
	tmp.dst.width  = dst->drawable.width;
3252
	tmp.dst.height = dst->drawable.height;
3253
	tmp.dst.format = sna_format_for_depth(dst->drawable.depth);
3254
	tmp.dst.bo = bo;
3255
	tmp.dst.x = tmp.dst.y = 0;
3256
 
3257
	tmp.src.bo = sna_render_get_solid(sna, 0);
3258
	tmp.mask.bo = NULL;
3259
 
3260
	tmp.floats_per_vertex = 2;
3261
	tmp.floats_per_rect = 6;
3262
	tmp.need_magic_ca_pass = false;
3263
 
3264
	tmp.u.gen6.flags = FILL_FLAGS_NOBLEND;
3265
	assert(GEN6_KERNEL(tmp.u.gen6.flags) == GEN6_WM_KERNEL_NOMASK);
3266
	assert(GEN6_SAMPLER(tmp.u.gen6.flags) == FILL_SAMPLER);
3267
	assert(GEN6_VERTEX(tmp.u.gen6.flags) == FILL_VERTEX);
3268
 
3263 Serge 3269
	if (!kgem_check_bo(&sna->kgem, bo, NULL)) {
3270
		kgem_submit(&sna->kgem);
3271
		if (!kgem_check_bo(&sna->kgem, bo, NULL)) {
3272
			kgem_bo_destroy(&sna->kgem, tmp.src.bo);
3273
			return false;
3274
		}
3275
	}
3254 Serge 3276
 
3277
	gen6_emit_fill_state(sna, &tmp);
3278
	gen6_align_vertex(sna, &tmp);
3279
 
3280
	gen6_get_rectangles(sna, &tmp, 1, gen6_emit_fill_state);
3281
 
3282
	v = (int16_t *)&sna->render.vertices[sna->render.vertex_used];
3283
	sna->render.vertex_used += 6;
3284
	assert(sna->render.vertex_used <= sna->render.vertex_size);
3285
 
3286
	v[0] = dst->drawable.width;
3287
	v[5] = v[1] = dst->drawable.height;
3288
	v[8] = v[4] = 0;
3289
	v[9] = 0;
3290
 
3291
	v[7] = v[2]  = v[3]  = 1;
3292
	v[6] = v[10] = v[11] = 0;
3293
 
3294
	gen4_vertex_flush(sna);
3295
	kgem_bo_destroy(&sna->kgem, tmp.src.bo);
3296
 
3297
	return true;
3298
}
3263 Serge 3299
#endif
3254 Serge 3300
 
3301
static void gen6_render_flush(struct sna *sna)
3302
{
3303
	gen4_vertex_close(sna);
3304
 
3305
	assert(sna->render.vb_id == 0);
3306
	assert(sna->render.vertex_offset == 0);
3307
}
3308
 
3263 Serge 3309
static void
3310
gen6_render_context_switch(struct kgem *kgem,
3311
			   int new_mode)
3312
{
3313
	if (kgem->nbatch) {
3314
		DBG(("%s: from %d to %d\n", __FUNCTION__, kgem->mode, new_mode));
3315
		_kgem_submit(kgem);
3316
	}
3254 Serge 3317
 
3263 Serge 3318
	kgem->ring = new_mode;
3319
}
3320
 
3254 Serge 3321
static void
3322
gen6_render_retire(struct kgem *kgem)
3323
{
3324
	struct sna *sna;
3325
 
3326
	if (kgem->ring && (kgem->has_semaphores || !kgem->need_retire))
3327
		kgem->ring = kgem->mode;
3328
 
3329
	sna = container_of(kgem, struct sna, kgem);
3330
	if (kgem->nbatch == 0 && sna->render.vbo && !kgem_bo_is_busy(sna->render.vbo)) {
3331
		DBG(("%s: resetting idle vbo handle=%d\n", __FUNCTION__, sna->render.vbo->handle));
3332
		sna->render.vertex_used = 0;
3333
		sna->render.vertex_index = 0;
3334
	}
3335
}
3336
 
3263 Serge 3337
static void
3338
gen6_render_expire(struct kgem *kgem)
3339
{
3340
	struct sna *sna;
3254 Serge 3341
 
3263 Serge 3342
	sna = container_of(kgem, struct sna, kgem);
3343
	if (sna->render.vbo && !sna->render.vertex_used) {
3344
		DBG(("%s: discarding vbo handle=%d\n", __FUNCTION__, sna->render.vbo->handle));
3345
		kgem_bo_destroy(kgem, sna->render.vbo);
3346
		assert(!sna->render.active);
3347
		sna->render.vbo = NULL;
3348
		sna->render.vertices = sna->render.vertex_data;
3349
		sna->render.vertex_size = ARRAY_SIZE(sna->render.vertex_data);
3350
		sna->render.vertex_used = 0;
3351
		sna->render.vertex_index = 0;
3352
	}
3353
}
3354
 
3254 Serge 3355
static void gen6_render_reset(struct sna *sna)
3356
{
3357
	sna->render_state.gen6.needs_invariant = true;
3358
	sna->render_state.gen6.first_state_packet = true;
3359
	sna->render_state.gen6.ve_id = 3 << 2;
3360
	sna->render_state.gen6.last_primitive = -1;
3361
 
3362
	sna->render_state.gen6.num_sf_outputs = 0;
3363
	sna->render_state.gen6.samplers = -1;
3364
	sna->render_state.gen6.blend = -1;
3365
	sna->render_state.gen6.kernel = -1;
3366
	sna->render_state.gen6.drawrect_offset = -1;
3367
	sna->render_state.gen6.drawrect_limit = -1;
3368
	sna->render_state.gen6.surface_table = -1;
3369
 
3370
	sna->render.vertex_offset = 0;
3371
	sna->render.nvertex_reloc = 0;
3372
	sna->render.vb_id = 0;
3373
}
3374
 
3375
static void gen6_render_fini(struct sna *sna)
3376
{
3258 Serge 3377
    kgem_bo_destroy(&sna->kgem, sna->render_state.gen6.general_bo);
3254 Serge 3378
}
3379
 
3380
static bool is_gt2(struct sna *sna)
3381
{
3382
	return DEVICE_ID(sna->PciInfo) & 0x30;
3383
}
3384
 
3385
static bool is_mobile(struct sna *sna)
3386
{
3387
	return (DEVICE_ID(sna->PciInfo) & 0xf) == 0x6;
3388
}
3389
 
3390
static bool gen6_render_setup(struct sna *sna)
3391
{
3392
	struct gen6_render_state *state = &sna->render_state.gen6;
3393
	struct sna_static_stream general;
3394
	struct gen6_sampler_state *ss;
3395
	int i, j, k, l, m;
3396
 
3397
	state->info = >1_info;
3398
	if (is_gt2(sna))
3399
		state->info = >2_info; /* XXX requires GT_MODE WiZ disabled */
3400
 
3401
    sna_static_stream_init(&general);
3402
 
3403
	/* Zero pad the start. If you see an offset of 0x0 in the batchbuffer
3404
	 * dumps, you know it points to zero.
3405
	 */
3406
    null_create(&general);
3407
    scratch_create(&general);
3408
 
3409
	for (m = 0; m < GEN6_KERNEL_COUNT; m++) {
3410
		if (wm_kernels[m].size) {
3411
			state->wm_kernel[m][1] =
3412
			sna_static_stream_add(&general,
3413
					       wm_kernels[m].data,
3414
					       wm_kernels[m].size,
3415
					       64);
3416
		} else {
3417
			if (USE_8_PIXEL_DISPATCH) {
3418
				state->wm_kernel[m][0] =
3419
					sna_static_stream_compile_wm(sna, &general,
3420
								     wm_kernels[m].data, 8);
3421
			}
3422
 
3423
			if (USE_16_PIXEL_DISPATCH) {
3424
				state->wm_kernel[m][1] =
3425
					sna_static_stream_compile_wm(sna, &general,
3426
								     wm_kernels[m].data, 16);
3427
			}
3428
 
3429
			if (USE_32_PIXEL_DISPATCH) {
3430
				state->wm_kernel[m][2] =
3431
					sna_static_stream_compile_wm(sna, &general,
3432
								     wm_kernels[m].data, 32);
3433
			}
3434
		}
3435
		if ((state->wm_kernel[m][0]|state->wm_kernel[m][1]|state->wm_kernel[m][2]) == 0) {
3436
			state->wm_kernel[m][1] =
3437
				sna_static_stream_compile_wm(sna, &general,
3438
							     wm_kernels[m].data, 16);
3439
		}
3440
	}
3441
 
3442
	ss = sna_static_stream_map(&general,
3443
				   2 * sizeof(*ss) *
3444
				   (2 +
3445
				   FILTER_COUNT * EXTEND_COUNT *
3446
				    FILTER_COUNT * EXTEND_COUNT),
3447
				   32);
3448
	state->wm_state = sna_static_stream_offsetof(&general, ss);
3449
	sampler_copy_init(ss); ss += 2;
3450
	sampler_fill_init(ss); ss += 2;
3451
	for (i = 0; i < FILTER_COUNT; i++) {
3452
		for (j = 0; j < EXTEND_COUNT; j++) {
3453
			for (k = 0; k < FILTER_COUNT; k++) {
3454
				for (l = 0; l < EXTEND_COUNT; l++) {
3455
					sampler_state_init(ss++, i, j);
3456
					sampler_state_init(ss++, k, l);
3457
				}
3458
			}
3459
		}
3460
	}
3461
 
3462
    state->cc_blend = gen6_composite_create_blend_state(&general);
3463
 
3464
    state->general_bo = sna_static_stream_fini(sna, &general);
3465
    return state->general_bo != NULL;
3466
}
3467
 
3468
bool gen6_render_init(struct sna *sna)
3469
{
3470
    if (!gen6_render_setup(sna))
3471
		return false;
3472
 
3263 Serge 3473
	sna->kgem.context_switch = gen6_render_context_switch;
3254 Serge 3474
      sna->kgem.retire = gen6_render_retire;
3263 Serge 3475
	sna->kgem.expire = gen6_render_expire;
3254 Serge 3476
 
3477
//    sna->render.composite = gen6_render_composite;
3478
//    sna->render.video = gen6_render_video;
3479
 
3480
//    sna->render.copy_boxes = gen6_render_copy_boxes;
3481
 
3280 Serge 3482
    sna->render.blit_tex = gen6_blit_tex;
3483
 
3484
//    sna->render.copy = gen6_render_copy;
3485
 
3254 Serge 3486
//    sna->render.fill_boxes = gen6_render_fill_boxes;
3487
//    sna->render.fill = gen6_render_fill;
3488
//    sna->render.fill_one = gen6_render_fill_one;
3489
//    sna->render.clear = gen6_render_clear;
3490
 
3258 Serge 3491
    sna->render.flush = gen6_render_flush;
3254 Serge 3492
    sna->render.reset = gen6_render_reset;
3493
	sna->render.fini = gen6_render_fini;
3494
 
3495
    sna->render.max_3d_size = GEN6_MAX_SIZE;
3496
    sna->render.max_3d_pitch = 1 << 18;
3497
	return true;
3498
}
3256 Serge 3499